/* ========================================== */
/* base */
/* ========================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: "源ノ角ゴシック Regular","源ノ角ゴシック","Noto Sans JP", sans-serif;
    line-height:1.4;
    color:#7d6455;
    font-size:18px;
    font-weight: bold;
    overflow-x: hidden;
    background: url("../images/bg.png") repeat;
    background-size: contain;
}

ul,p {
    padding:0px;
    margin:0;
    list-style:none;
}

ul.indent li {
    text-indent:-1em;
    padding-left:1em;
}

a {
    text-decoration:none;
    word-wrap:break-word;
    word-break: break-all;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    color: #285096;
}

a:active{
    color: #26B0C2;
}

a:hover {
    color: #285096;
    opacity: 0.8;
    text-decoration:none;
}
 
a:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none!important;
}

.red {
    color: #ff0000;
}


#over{
    position: relative;
}

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  background:#fff;
  text-align:center;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

/* Loading画像中央配置　*/
#splash_logo {
  animation: dropBounce 1.2s cubic-bezier(.22,1,.36,1) forwards;
}

@keyframes dropBounce {

    0% {
        opacity: 0;

        transform:
            translateY(-120px)
            scaleX(.8)
            scaleY(1.2);

        filter: blur(10px);
    }

    55% {
        opacity: 1;

        transform:
            translateY(0)
            scaleX(1.08)
            scaleY(.92);

        filter: blur(0);
    }

    72% {
        transform:
            translateY(-18px)
            scaleX(.96)
            scaleY(1.04);
    }

    88% {
        transform:
            translateY(0)
            scaleX(1.03)
            scaleY(.97);
    }

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

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:80%;
}

@media screen and (min-width: 766px) {
  #splash_logo img {
    width:600px;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp{
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*-----------------------------
  fadein
-----------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(40px) scale(0.85);
  will-change: transform, opacity;
}

.fadein.is-show {
  animation: springIn 1.2s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes springIn {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.85);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px) scale(1.03);
  }

  80% {
    transform: translateY(2px) scale(0.995);
  }

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

.sp-only {
    display: none;
}

@media screen and (max-width: 767px) {
    p {
        font-size: 14px;
    }

    .sp-only {
        display: block;
    }
}

.co_navy {
    color: #4b8750;
}

.bg_pink {
    font-weight: bold;
    background: linear-gradient(transparent 50%, #f58ac9 50%);
}

.bg_green {
    font-weight: bold;
    background: linear-gradient(transparent 50%, #5ae147 50%);
}

.modaal-content-container {
    font-weight: 400;
}

.modal_inner--text {
    font-size: 20px;
    font-weight: bold;
}

@media screen and (max-width: 767px) {

    .modaal-content-container {
        padding: 20px!important;
        font-size: 14px;
    }

    .modal_inner--text {
        font-size: 18px;
    }
}

/* ========================================== */
/* header */
/* ========================================== */
#header {
    position: relative;
    height: 50px;
    padding-top: 30px;
    z-index: 999;
}

#header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 160px;
    top: 0;
    left: 0;
    background: url("../images/header_bg.svg") repeat top/auto 160px;
    z-index: -1;
}

#header .top-nav {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}

#header .top-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#header .top-nav ul li {
    margin-left: 15px;
}

#header .top-nav ul li img {
    height: 15px;
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}

#header .top-nav ul li img:hover {
    animation: fluffyShake .8s ease-in-out;
    transform: scale(1.05);
}

@keyframes fluffyShake {

    0% {
        transform: scale(1.05) rotate(0deg);
    }

    25% {
        transform: scale(1.05) rotate(-2deg);
    }

    50% {
        transform: scale(1.05) rotate(2deg);
    }

    75% {
        transform: scale(1.05) rotate(-1deg);
    }

    100% {
        transform: scale(1.05) rotate(0deg);
    }
}

#header .top-nav ul li a:hover img {
    filter: invert(39%) sepia(27%) saturate(642%) hue-rotate(49deg) brightness(92%) contrast(90%);
}

@media screen and (max-width: 991px) {
    #header {
        height: 30px;
        padding: 0;
    }

    #header::before {
        height: 65px;
        background-size: auto 65px;
    }

    #header .hamburger {
        position: fixed;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        border-radius: 5px 0 0 5px;
        transition: all .4s;
        z-index: 99999;
    }

    #header .hamburger.color {
        top: 20px;
        background-color: #7D6455;
    }

    #header .hamburger span {
        position: absolute;
        display: block;
        width: 35px;
        height: 3px;
        left: 0;
        right: 0;
        margin: auto;
        background-color: #fff;
    }

    #header .hamburger.color span {
        background-color: #fff;;
        animation: none;
    }

    #header .hamburger span:nth-of-type(1) {
        top: 17px;
    }
    #header .hamburger span:nth-of-type(2) {
        top: 0;
        bottom: 0;
    }
    #header .hamburger span:nth-of-type(3) {
        bottom: 17px;
    }

    #header .hamburger.active span:nth-of-type(1) {
        top: 15px;
        -webkit-animation: active-menu-ber01 .75s forwards;
        animation: active-menu-ber01 .75s forwards;
        background-color: #fff;
    }
    #header .hamburger.active span:nth-of-type(2) {
        opacity: 0;
    }
    #header .hamburger.active span:nth-of-type(3) {
        bottom: 15px;
        -webkit-animation: active-menu-ber03 .75s forwards;
        animation: active-menu-ber03 .75s forwards;
        background-color: #fff;
    }

    @-webkit-keyframes menu-ber01 {
        0% {
            -webkit-transform: translateY(8px) rotate(45deg);
        }
        50% {
            -webkit-transform: translateY(8px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes menu-ber01 {
        0% {
            transform: translateY(13px) rotate(45deg);
        }
        50% {
            transform: translateY(13px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    @-webkit-keyframes menu-ber02 {
        0% {
            -webkit-transform: translateY(-15px) rotate(-45deg);
        }
        50% {
            -webkit-transform: translateY(-15px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(0) rotate(0);
        }
    }
    @keyframes menu-ber02 {
        0% {
            transform: translateY(-15px) rotate(-45deg);
        }
        50% {
            transform: translateY(-15px) rotate(0);
        }
        100% {
            transform: translateY(0) rotate(0);
        }
    }
    @-webkit-keyframes active-menu-ber01 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(13px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(13px) rotate(45deg);
        }
    }
    @keyframes active-menu-ber01 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(13px) rotate(0);
        }
        100% {
            transform: translateY(13px) rotate(45deg);
        }
    }
    @-webkit-keyframes active-menu-ber03 {
        0% {
            -webkit-transform: translateY(0) rotate(0);
        }
        50% {
            -webkit-transform: translateY(-15px) rotate(0);
        }
        100% {
            -webkit-transform: translateY(-15px) rotate(-45deg);
        }
    }
    @keyframes active-menu-ber03 {
        0% {
            transform: translateY(0) rotate(0);
        }
        50% {
            transform: translateY(-15px) rotate(0);
        }
        100% {
            transform: translateY(-15px) rotate(-45deg);
        }
    }

    #header .top-nav2 {
        position: fixed;
        display: none;
        width: 100%;
        height: 100dvh;
        top: 0;
        left: 0;
        z-index: 99998;
        background-color: #7D6455;
    }
    #header .top-nav2 .nav-bgarea {
        width: 100%;
        height: 100dvh;
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center bottom;
        background-blend-mode: color;
    }
    #header .top-nav2 nav {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translateY(-50%) translateX(-50%);
        width: 100%;
        padding: 0 12%;
        box-sizing: border-box;
        overflow: hidden;
        clear: both;
        line-height: 1;
    }
    #header .top-nav2 nav ul {
        list-style-type: none;
    }
    #header .top-nav2 nav ul li {
        padding: 1rem;
        font-size: 1.3rem;
        text-align: center;
    }
    #header .top-nav2 nav ul li img {
        height: 20px;
    }
}


/* ========================================== */
/* main */
/* ========================================== */

/* mv */
.mainvisual {
    position: relative;
    width: 100%;
    margin: -1px auto -2px;
    padding: 106px 100px 0;
    text-align: center;
    overflow: hidden;
    background-color: #fff;
}

.mainvisual::after {
    position: absolute;
    content: "";
    bottom: -300px;
    width: 100vw;
    height: 510px;
    right: 0;
    margin: auto;
}

.mainvisual-bg {
    position: relative;
    background-image: url("../images/mainvisual_bg.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    max-width: 1920px;
    height: 500px;
    margin: 0 auto;
}

.mainvisual h1 {
    position: relative;
    top: 25px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
}

.mainvisual img {
    width: 250px;
    transform: translateX(-300px);
}

.tatami {
    position: relative;
    background-image: url("../images/tatami.svg");
    background-repeat: repeat-x;
    background-size: cover;
    background-position: center;
    height: 320px;
}

.tatami .character1 {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -100%);
    max-width: 650px;
    width: 40%;
    transform-origin: center center;
    animation: boxShake 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

.tatami .main-logo {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 800px;
    width: 70%;
filter: drop-shadow(-2px -2px 0px #fff) drop-shadow(2px -2px 0px #fff) drop-shadow(-2px 2px 0px #fff) drop-shadow(2px 2px 0px #fff);
animation: boxShake 10s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes boxShake {

  0% {
    transform:
      translate(-50%, 0)
      rotate(0deg)
      translateX(0);
  }

  12.5% {
    transform:
      translate(-50%, 0)
      rotate(-4deg)
      translateX(-10px);
  }

  25% {
    transform:
      translate(-50%, 0)
      rotate(4deg)
      translateX(10px);
  }

  37.5% {
    transform:
      translate(-50%, 0)
      rotate(-3deg)
      translateX(-7px);
  }

  50% {
    transform:
      translate(-50%, 0)
      rotate(3deg)
      translateX(7px);
  }

  62.5% {
    transform:
      translate(-50%, 0)
      rotate(-2deg)
      translateX(-5px);
  }

  75% {
    transform:
      translate(-50%, 0)
      rotate(2deg)
      translateX(5px);
  }

  87.5% {
    transform:
      translate(-50%, 0)
      rotate(-1deg)
      translateX(-2px);
  }

  100% {
    transform:
      translate(-50%, 0)
      rotate(0deg)
      translateX(0);
  }
}

@media screen and (max-width: 1450px) {
    .mainvisual-bg {
        height: 360px;
    }

    .tatami .character1 {
        width: 47%;
    }

    .tatami .character1 {
        max-width: 500px;
    }

    .mainvisual img {
        transform: translateX(-175px);
    }

.tatami .main-logo {
    top: -50%;
}

}

@media screen and (max-width: 1250px) {

    .mainvisual::after {
        bottom: -300px;
        height: 450px;
    }

}

@media screen and (max-width: 1150px) {
    .tatami {
        background-size: cover;
    }
}

@media screen and (max-width: 991px) {

    .mainvisual {
        padding: 30px 30px 0;
    }

    .mainvisual::after {
        display: none;
    }

    .mainvisual img {
        width: 30%;
        top: 24px;
        transform: translateX(-180px);
    }

    .mainvisual-bg {
        aspect-ratio: 6012 / 2929;
        height: auto;
    }

    .mainvisual-bg h1 {
        aspect-ratio: 6012 / 2929;
        width: 100%;
    }

    .tatami {
        aspect-ratio: 3997 / 702;
        height: auto;
    }

.tatami .main-logo {
    top: -100%;
    filter: drop-shadow(-1px -1px 0px #fff) drop-shadow(1px -1px 0px #fff) drop-shadow(-1px 1px 0px #fff) drop-shadow(1px 1px 0px #fff);
}

}

@media screen and (max-width: 767px) {
    .mainvisual img {
        transform: translate(-85%, -15px);
    }

    .tatami .character1 {
        top: 90%;
        width: clamp(135px, 60vw, 300px);
        z-index: 1001;
    }

    .tatami .character1.active {
        z-index: 0;
    }
}

@media screen and (max-width: 590px) {
    .tatami .character1 {
        width: clamp(135px, 60vw, 232px);
    }
}

@media screen and (max-width: 480px) {
    .tatami .character1  {
        top: 110%;
        width: clamp(135px, 70vw, 300px);
    }

    .mainvisual img {
        display: none !important;
        transform: translate(-85%, -25px);
    }
}

/* nav */
.contents-nav {
    max-width: 1040px;
    margin: 60px auto 180px;
}

.contents-nav .list {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.contents-nav .list li a:hover {
    opacity: 1;
}

.contents-nav .list li img {
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    transform: translate(-2px, -3px);
    filter: drop-shadow(4px 5px 0px rgba(90, 75, 60, 1));
}

.contents-nav .list li img:hover {
    transform: translate(1px, 1px) scale(0.97);
    filter: drop-shadow(0 0 0 rgba(0,0,0,0.2));
}

.contents-nav .list li img:active {
    transform: translate(2px, 2px) scale(0.95);
}

@media screen and (max-width: 1250px) {

    .contents-nav .list {
        justify-content: center;
    }

    .contents-nav .list li + li {
        margin-left: 15px;
    }

    .contents-nav .list li img {
        height: 40px;
    }
}

@media screen and (max-width: 991px) {

    .contents-nav {
        display: none;
    }
}

/* contents */
.contents-wrap {
    background-image: url("../images/body_bg.svg");
    background-size: 65%;
    background-repeat: repeat;
    background-color: #c8d2a0;
    padding: 0 30px;
}

.contents-wrap li {
    overflow: visible;
}

.contents-wrap a,
.contents-wrap img {
    display: block;
}

.bg-paper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 64px;
    z-index: 1;
}

.goods-section .paper-inner {
    padding: 40px 30px 20px 20px;
}

.paper-orange .paper-inner {
    border-image-source: url("../images/bg-orange.svg");
}

.paper-blue .paper-inner {
    border-image-source: url("../images/bg-blue.svg");
}

.paper-inner {
    padding: 40px 20px 20px;
    margin-bottom: 120px;
    position: relative;
    border-image-slice: 66 30 12 12 fill;
    border-image-width: 40px 30px 12px 12px;
    border-image-outset: 10px 0px 10px 0px;
    border-image-repeat: round stretch;
    border-style:solid;
}
@media (min-width: 768px) {
    .paper-inner {
        border-image-width: 64px 30px 12px 12px;
    }
}
.paper-container {
    max-width: 820px;
    margin: 0 auto 80px;
}

.bg-paper h3.title {
    max-width: 400px;
    margin: 48px auto;
    margin-bottom: 0;
}

.bg-paper h3.title img {
    width: 100%;
}

p.subtitle {
    margin: 48px 0;
    text-align: center;
    font-size: 26px;
}

.bg-paper h3 {
    margin-bottom: 80px;
    text-align: center;
}

.event-detail {
    max-width: 700px;
    margin: 0 auto;
}

.event-detail-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
}

.event-detail img {
    display: inline-block;
    width: 156px;
}

.tel {
    text-align: center;
    margin-top: 64px;
    margin-bottom: 40px;
    font-size: 29px;
}

a.btn {
    display: block;
    width: 380px;
    padding: 11px 0;
    border: 2px solid #4b8750;
    border-radius: 9999px;
    margin: 0 auto;
    color: #4b8750;
    background-color: #fafab4;
    text-align: center;
    font-weight: bold;
}

.ticket-info p,
.goods-info {
    font-size: 24px;
    text-align: center;
}

.goods-info {
    margin-bottom: 16px;
}

@media screen and (max-width: 991px) {

    .contents-wrap {
        padding: 0 15px;
    }

    .event-detail img {
        width: 110px;
    }

    .paper-container {
        margin-bottom: 10px;
    }
}

.contents {
    position: relative;
    width: 1100px;
    max-width: 90%;
    margin: 0 auto 100px;
    padding: 20px 0;
    border-radius: 20px;
}

@media screen and (max-width: 767px) {

    .contents {
        max-width: calc(100% - 30px);
        margin: 0 auto 50px 10px;
        padding: 30px 0;
        background-size: 50px!important;
    }

    .ticket-info p {
        font-size: 14px;
    }

    a.btn {
        width: 100%;
        font-size: 14px;
    }

    .normal-box .head + p,
    .normal-box ul li,
    .special-wrapper ul li {
        font-size: 14px;
    }

    p.subtitle {
        font-size: 15px;
    }

    .contents-wrap {
        background-size: cover;
    }

    .event-detail-row {
        gap: 16px;
    }

    .bg-paper h3.title {
        max-width: 250px;
        margin-top: 10px;
    }
}

.contents.pink {
    background-color: #fff;
}

.contents.purple {
    font-size: 18px;
    background-color: #fff;
}

.contents::after {
    position: absolute;
    content: "";
    border-radius: 20px;
    width: 100%;
    height: 100%;
    bottom: -10px;
    right: -10px;
    z-index: -1;
}

.contents.pink::after {
    background-color: #f09bc3;
}

.contents.purple::after {
    background-color: #c3aad2;
}

.contents .border-dashed {
    background-image: repeating-linear-gradient(90deg, #f09bc3, #f09bc3 12px, transparent 12px, transparent 20px), repeating-linear-gradient(180deg, #f09bc3, #f09bc3 12px, transparent 12px, transparent 20px), repeating-linear-gradient(90deg, #f09bc3, #f09bc3 12px, transparent 12px, transparent 20px), repeating-linear-gradient(180deg, #f09bc3, #f09bc3 12px, transparent 12px, transparent 20px);
    background-position: left top, right top, left bottom, left top;
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 100% 4px, 4px 100%, 100% 4px, 4px 100%;
    margin: 0 20px;
    padding: 50px 20px 20px;
    border-radius: 5px;
}

.contents.purple .border-dashed {
    background-image: repeating-linear-gradient(90deg, #c3aad2, #c3aad2 12px, transparent 12px, transparent 20px), repeating-linear-gradient(180deg, #c3aad2, #c3aad2 12px, transparent 12px, transparent 20px), repeating-linear-gradient(90deg, #c3aad2, #c3aad2 12px, transparent 12px, transparent 20px), repeating-linear-gradient(180deg, #c3aad2, #c3aad2 12px, transparent 12px, transparent 20px);

}

.contents .border1 {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 4px;
    height: calc(100% - 85px);
    background: url("../images/border_pink.png") repeat-y top/4px;
}

.contents.purple .border1 {
    background: url("../images/border_purple.png") repeat-y top/4px;
}

.contents .border2 {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 4px;
    height: calc(100% - 85px);
    background: url("../images/border_pink.png") repeat-y top/4px;
}

.contents.purple .border2 {
    background: url("../images/border_purple.png") repeat-y top/4px;
}

.contents .border3 {
    position: absolute;
    top: -480px;
    left: 538px;
    width: 4px;
    height: calc(100% - 323px);
    transform: rotate(90deg);
    background: url("../images/border_pink.png") repeat-y top/4px;
}

.contents .border4 {
    display: none;
    position: absolute;
    bottom: -468px;
    left: 538px;
    width: 4px;
    height: calc(100% - 323px);
    transform: rotate(90deg);
    background: url("../images/border_pink.png") repeat-y top/4px;
}

.contents.green .border1::before,
.contents.green .border2::before,
.contents.green .border1::after,
.contents.green .border2::after {
    border: 10px solid transparent;
    border-left: 20px solid #64b914;
}

.contents.green .border1::after,
.contents.green .border2::after {
    bottom: -15px;
}

@media screen and (max-width: 991px) {

    .contents .border1 {
        left: 20px;
    }

    .contents .border2 {
        right: 20px;
    }
}

@media screen and (max-width: 767px) {

    .contents .border-dashed {
        padding: 50px 0 20px;
    }

    .contents .border1,
    .contents .border2 {
        display: none;
    }
}

.contents .in-contents {
    width: 820px;
    max-width: 90%;
    margin: 0 auto;
}

.contents .ttl {
    margin-bottom: 50px;
}

.contents .ttl img {
    height: 140px;
}

.contents.ticket .ttl img,
.contents.special .ttl img {
    height: 165px;
}

.contents .lead-txt {
    margin-bottom: 60px;
    text-align: center;
    font-size: 25px;
}

.contents .info-txt {
    line-height: 1.6;
    font-size: 25px;
}

.contents .info-txt span {
    font-size: 18px;
}

@media screen and (max-width: 991px) {

    .contents .ttl img {
        height: 100px;
    }

    .contents.ticket .ttl img,
    .contents.special .ttl img {
        height: 120px;
    }
}

@media screen and (max-width: 767px) {

    .contents .ttl {
        margin-bottom: 30px;
    }

    .contents .ttl img {
        height: auto;
        width: 100%;
    }

    .contents.ticket .ttl img,
    .contents.special .ttl img {
        height: auto;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {

    .contents .in-contents {
        max-width: calc(100% - 30px);
    }

    .contents .lead-txt,
    .contents .info-txt {
        font-size: 18px;
    }

    .contents .info-txt span {
        font-size: 16px;
    }
}

.contents .btn {
    line-height: 1;
    display: inline-block;
    min-width: 300px;
    height: 50px;
    margin: 30px auto 0;
    padding: 10px 35px;
    font-size: 25px;
    font-weight: bold;
}

.contents .btn.btn-orange {
    color: #cdbe46;
    border: 2px #cdbe46 solid;
}

.contents .btn.btn-green {
    color: #64b914;
    border: 2px #64b914 solid;
    background-color: #ffe600;
}

.contents .btn.btn-red {
    color: #fff;
    background-color: #ff0000;
}

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

    .contents .btn.btn-orange:hover {
        color: #fff;
        background-color: #cdbe46;
    }

    .contents .btn.btn-green:hover {
        color: #ffe600;
        background-color: #64b914;
    }
}

@media screen and (max-width: 767px) {

    .contents .btn {
        min-width: auto;
        height: 44px;
        font-size: 16px;
        padding: 10px;
    }

    .contents .btn.ts {
        line-height: 1.4;
        height: auto;
        border-radius: 50px;
    }
}

.normal-box {
    margin: 50px 0 80px;
}

.normal-box > .head {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-size: 25px;
}

.normal-box p.note {
    color: red;
    font-size: 14px;
}

.normal-box > .head .note-txt {
    font-size: 18px;
    color: #000!important;
}

.normal-box.orange > .head {
    border-bottom: 2px #cdbe46 solid;
}

.normal-box.green > .head {
    border-bottom: 2px #64b914 solid;
}

.normal-box > .head span {
    display: inline-block;
    margin-right: 5px;
}

.normal-box.orange > .head span {
    color: #4b8750;
}

.normal-box.green > .head span {
    color: #64b914;
}

.normal-box .head + p,
.normal-box ul li {
    line-height: 1.6;
    font-size: 18px;
}

.normal-box a.btn {
    margin-top: 50px;
}

.note-box {
    margin-top: 30px;
    border: 2px #ff0000 solid;
    background-color: #fff;
}

.note-box .head {
    line-height: 1;
    height: 50px;
    padding-top: 12px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    background-color: #ff0000;
}

.note-box ul {
    line-height: 1.6;
}

.modaal-content-container {
    border: 8px solid #7D6455!important;
}

@media screen and (max-width: 767px) {

    .contents .normal-box {
        margin-bottom: 50px;
    }

    .contents .normal-box .head {
        font-size: 18px;
    }

    .contents .normal-box > .head .note-txt {
        font-size: 14px;
    }

    .normal-box .head + p,
    .normal-box ul li,
    .special-wrapper ul li {
        font-size: 14px;
    }

    .normal-box > .head {
        font-size: 20px;
    }
}

.contents .comingsoon {
    margin-bottom: 50px;
    font-size: 25px!important;
}

/* illust */
.contents .illust {
    position: absolute;
    z-index: -2;
}

.contents .event_illust01 {
    top: -550px;
    right: -891px;
    transform: scale(0.45);
}

.contents .event_illust02 {
    top: 150px;
    left: -561px;
    transform: scale(0.4);
}

.contents .event_illust03 {
    top: -397px;
    right: -442px;
    transform: scale(0.4);
}

.contents .event_illust04 {
    bottom: -359px;
    left: -484px;
    transform: scale(0.4);
}

.contents .event_illust05 {
    bottom: 100px;
    right: -413px;
    transform: scale(0.4);
}

.contents .event_illust06 {
    bottom: -518px;
    left: -712px;
    transform: scale(0.4);
    z-index: -3;
}

.contents .ticket_illust01 {
    top: -400px;
    right: -714px;
    transform: scale(0.47);
}

.contents .goods_illust01 {
    top: -485px;
    left: -688px;
    transform: scale(0.33);
}

.contents .goods_illust02 {
    top: -410px;
    left: -600px;
    transform: scale(0.4);
}

.contents .goods_illust03 {
    top: 330px;
    left: -767px;
    transform: scale(0.4);
}

.contents .goods_illust04 {
    top: -1200px;
    left: -462px;
    transform: scale(0.4);
}

.contents .goods_illust05 {
    bottom: 489px;
    right: -668px;
    transform: scale(0.5);
}

.contents .goods_illust06 {
    right: -572px;
    transform: scale(0.37);
    bottom: -100px;
}

.contents .goods_illust07 {
    right: -779px;
    bottom: -491px;
    transform: scale(0.37);
}

.contents .special_illust01 {
    top: 320px;
    left: -600px;
    transform: scale(0.5);
}

.contents .special_illust02 {
    bottom: 112px;
    left: -1041px;
    transform: scale(0.37);
}

.contents .special_illust03 {
    top: -328px;
    left: -731px;
    transform: scale(0.44);
}

.contents .attention_illust01 {
    top: -306px;
    left: -394px;
    transform: scale(0.4);
}

.contents .attention_illust02{
    top: -670px;
    right: -432px;
    transform: scale(0.5);
}

.contents .attention_illust03 {
    top: 267px;
    right: -668px;
    transform: scale(0.43);
}


.contents .attention_illust04 {
    top: -273px;
    right: -583px;
    transform: scale(0.34);
    z-index: -1;
}

.contents .attention_illust05 {
    bottom: -436px;
    right: -499px;
    transform: scale(0.4);
}

@media screen and (max-width: 1800px) {
    .contents .goods_illust07 {
        right: -724px;
    }
}

@media screen and (max-width: 1700px) {

    .contents .illust {
        transform: scale(0.4);
    }

    .contents .illust.event_illust01 {
        right: -837px;
        top: -570px;
        transform: scale(0.36);
    }

    .contents .event_illust02 {
        top: 159px;
        left: -519px;
        transform: scale(0.25);        
    }

    .contents .event_illust03 {
        right: -416px;
    }

    .contents .event_illust04 {
        bottom: -345px;
        left: -411px;
    }

    .contents .illust.event_illust05 {
        transform: scale(0.33);   
    }

    .contents .event_illust06 {
        bottom: -518px;
        left: -551px;
        transform: scale(0.3);
    }

    .contents .ticket_illust01 {
        top: -400px;
        right: -664px;
        transform: scale(0.3);
    }

    .contents .goods_illust01 {
        top: -455px;
        left: -661px;
        transform: scale(0.32);
    }

    .contents .goods_illust02 {
        left: -556px;
        transform: scale(0.3);
    }

    .contents .goods_illust03 {
        left: -637px;
        transform: scale(0.35);
    }

    .contents .goods_illust04 {
        left: -343px;
    }

    .contents .goods_illust05 {
        right: -609px;
    }

    .contents .goods_illust06 {
        right: -572px;
        bottom: -166px;
    }

    .contents .goods_illust07 {
        right: -649px;
        bottom: -550px;
        transform: scale(0.3);
    }

    .contents .special_illust01 {
        top: 276px;
        left: -553px;
        transform: scale(0.3);
    }
    
    .contents .special_illust02 {
        bottom: 388px;
        left: -974px;
        transform: scale(0.28);
    }
    
    .contents .special_illust03 {
        left: -660px;
        transform: scale(0.3);
    }

    .contents .attention_illust02{
        top: -670px;
        right: -347px;
        transform: scale(0.34);
    }
    
    .contents .attention_illust03 {
        top: 213px;
        right: -540px;
        transform: scale(0.28);
    }
    
    
    .contents .attention_illust04 {
        top: -291px;
        right: -564px;
        transform: scale(0.27);
    }
    
    .contents .attention_illust05 {
        bottom: -437px;
        right: -499px;
        transform: scale(0.4);
    }
    
}

@media screen and (max-width: 1400px) {

    .contents .illust {
        display: none;
    }
}


/* event */
.event {
    margin-top: -80px;
}

.contents.event .event-table {
    width: 700px;
    max-width: 100%;
    margin: 0 auto 50px;
}

.contents.event .event-table dl {
    display: flex;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contents.event .event-table dt {
    width: 160px;
    margin-top: 2px;
}

.contents.event .event-table dd {
    width: calc(100% - 160px);
    margin-top: 5px;
    padding-left: 20px;
    font-size: 24px;
}

@media screen and (max-width: 991px) {
    .event {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {

    .contents.event .event-table dl {
        display: block;
    }

    .contents.event .event-table dt,
    .contents.event .event-table dd {
        width: 100%;
        padding-left: 0;
        text-align: center;
        font-size: 16px;
    }

    .contents.event .event-table dt img {
        display: block;
        width: 160px;
        margin: 0 auto 10px;
    }

    .contents .lead-txt.lead-txt-event {
        font-size: 16px;
    }
}

/* goods */
.goods-nav {
    display: flex;
    justify-content: space-between;
}

.goods-nav a {
    display: block;
    width: calc((100% - 10px) / 3);
    padding: 10px;
    text-align: center;
    font-size: 18px;
    color: #fff;
    background-color: #fa8200;
}

.goods-nav.column4 a {
    width: calc((100% - 10px) / 4);
}

#goods02 .text {
    line-height: 1.7;
    text-align: center;
    font-size: 20px;
}

.goods-headline {
    line-height: 1;
    display: block;
    width: 500px;
    max-width: 100%;
    height: 60px;
    margin: 50px auto 30px;
    padding: 14px;
    color: #fa8200;
    background-color: #ffe600;
}

.goods-lineup {
    display: flex;
    flex-wrap: wrap;
}

.goods-item {
    background-color: #fdcb80;
    padding: 30px 20px;
}

.goods-item .goods-slide-area {
    position: relative;
}

.goods-item .goods-slide-area .slide-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.cashless-img > img {
    width: 100%;
}

.goods-item .limited {
    letter-spacing: 1px;
    position: absolute;
    display: inline-block;
    width: 150px;
    padding: 8px 0 10px;
    top: -10px;
    right: -10px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    background-color: #5677A1;
}

.goods-item:nth-of-type(2n) {
    margin-left: 30px;
}

.goods-item > p {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.goods-item.item1 h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 67px;
}

.goods-item .caption {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: bold;
}

.goods-item .caption dt {
    width: 65px;
    font-weight: bold;
}

.goods-item .caption dd {
    width: calc(100% - 65px);
    margin-bottom: 0;
}

.size-box .headline {
    font-size: 20px;
}

.size-box tbody {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

.size-box th {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    background-color: #efefef;
}

.size-box td {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    font-weight: initial;
    background-color: #fff;
}

@media screen and (max-width: 991px) {

    .goods-nav {
        display: block;
    }

    .goods-nav a,
    .goods-nav.column4 a {
        width: 100%;
        margin-bottom: 5px;
        font-size: 16px;
    }

    #goods02 .text {
        text-align: left;
        font-size: 14px;
    }

    .goods-item {
        width: calc((100% - 15px)/2);
        margin-bottom: 20px;
        padding: 40px 20px;
    }

    .goods-item:nth-of-type(2n) {
        margin-left: 15px;
    }

    .goods-item h4 {
        height: auto;
        font-size: 22px;
    }

    .goods-item:nth-of-type(1) h4 {
        height: auto;
    }

    .goods-item h4 span {
        display: inline;
        font-size: 22px;
        font-weight: inherit;
    }

    .goods-item .price {
        font-size: 22px;
    }

    .goods-item .price span {
        font-size: 20px;
    }

    .size-box {
        padding: 0 15px;
    }

}

@media screen and (max-width: 767px) {

    .goods-headline {
        height: 50px;
        font-size: 18px;
    }

    .goods-item {
        width: 100%;
        margin-left: 0!important;
    }

    .goods-item .limited {
        left: 0;
        right: 0;
        margin: auto;
    }

    .goods-item img {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    .goods-item .caption {
        max-width: 400px;
        margin: 0 auto;
    }

    .goods-lineup {
        margin: 0 15px;
    }

}

@media screen and (max-width: 480px) {
    .size-box th,
    .size-box td {
            padding: .25rem;
    }
}

/* special */
.contents.special {
    line-height: 1.6;
    font-size: 18px;
}

.contents.special .special-box {
    margin-bottom: 70px;
}

.contents.special .special-box .head {
    margin: 10px 0 15px;
    font-size: 25px;
    font-weight: bold;
}

.contents.special .special-box .btn {
    margin-top: 30px;
}

.contents.special h3 > img {
    width: 35px;
    margin-right: 10px;
    transform: translateY(-2px);
}

.contents.special .num img {
    width: 90px;
}

.contents.special .special-wrapper {
    position: relative;
    z-index: 100;
}

.special-wrapper dt {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 18px;
    cursor: pointer;
}

.special-wrapper dt.select::after {
    transform: rotate(-90deg);
    top: 12px;
}

.special-wrapper dd {
    padding: 20px 20px 0;
}

.special-content h3 {
    font-weight: 900;
}

.join-image-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.join-image-area .join-image {
    margin: 0 auto 30px;
}

.join-image-area .join-image-a {
    width: 55%;
}

.join-image-area .join-image-b {
    width: 40%;
}

.join-image-area .join-image img {
    width: 100%;
}

.special-text-content {
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {

    .contents.special,
    .contents.attention {
        font-size: 14px;
    }

    .special-wrapper dd {
        padding: 20px 0;
    }

    .contents.special h3 {
        font-size: 22px;
    }

    .special-wrapper dt {
        font-size: 14px;
    }

    .special-wrapper dt::after {
        top: 20px;
    }

    .special-wrapper dt.select::after {
        top: 10px;
    }

    .contents.special .num img {
        width: 70px;
    }

    .contents .special-content .btn,
    .btn,
    .contents .btn.btn-short {
        padding: 10px 30px;
    }

    .join-image-area {
        display: block;
    }

    .join-image-area .join-image {
        width: 100%;
    }

    .special-text-content {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 480px) {
    .contents.special .balloon-title {
        font-size: 18px;
    }

    .contents.special .balloon-title > img {
        width: 25px;
        margin-right: 5px;
    }
}

/* attention */
.contents.attention .faq-box dt {
    position: relative;
    line-height: 1;
    height: 55px;
    padding: 14px 20px;
    color: #fff;
    font-size: 20px;
    border: 5px #000 solid;
    border-radius: 20px;
    background-color: #555;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

.contents.attention .faq-box dt::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 5px;
    left: 5px;
    border-radius: 15px;
    background-color: #000;
    z-index: -1;
}

.contents.attention .faq-box dt::after {
    position: absolute;
    content: "";
    width: 42px;
    height: 24px;
    top: 5px;
    bottom: 0;
    right: 20px;
    margin: auto;
    background: url(../../fcevent2024/images/icn_faq_arrow01.png) no-repeat center right/42px;
}

.contents.attention .faq-box dt.open::after {
    background: url(../../fcevent2024/images/icn_faq_arrow02.png) no-repeat center right/42px;
}

.contents.attention .faq-box dd {
    line-height: 1.8;
    display: none;
    padding: 25px 20px;
}

.contents.attention .special-wrapper.black dt {
    color: #fff;
    background-color: #000000;
    border: none;
}

.special-wrapper dt {
    position: relative;
    color: #fff;
    background-color: #648255;
    border: none;
}

.special-wrapper dt.active {
    background-color: #fa9600;
}

.special-wrapper dt img {
    position: absolute;
    right: 15px;
    top: 12px;
    width: 36px;
    height: 23px;
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    transform: rotate(0deg);
}

.special-wrapper dt.select img {
    transform: rotate(180deg);
    animation: arrowBounce .5s ease;
}

@keyframes arrowBounce {
    0%   { transform: rotate(0deg); }
    60%  { transform: rotate(200deg); }
    100% { transform: rotate(180deg); }
}


@media screen and (max-width: 767px) {
    .special-wrapper dt img {
        position: absolute;
        right: 10px;
        top: 10px;
        width: 19px;
        height: 19px
    }
}

/* ========================================== */
/* footer */
/* ========================================== */
#footer {
    position: relative;
    padding: 50px 0;
    text-align: center;
    z-index: 100;
}

#footer #page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    opacity: 0;
    cursor: pointer;
    width: 225px;
    transform: translateX(120px) rotate(-360deg) scale(0.7);
}

#footer #page-top.active {
    animation: spinFadeIn 1s cubic-bezier(.22, 1, .36, 1) forwards;
}

#footer #page-top:not(.active) {
  animation: spinOut 0.8s cubic-bezier(.55, 0, .1, 1) forwards;
}

@keyframes spinFadeIn {
  0% {
    opacity: 0;
    transform:
      translateX(120px)
      rotate(-360deg)
      scale(0.7);
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform:
      translateX(0)
      rotate(0deg)
      scale(1);
  }
}

@keyframes spinOut {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translateX(120px) rotate(360deg) scale(0.7);
  }
}

#footer #page-top img {
    width: 100%;
    animation: float 3s ease-in-out 1s infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

#footer #page-top a:hover {
    opacity: 1;
}

#footer .fclogo {
    display: block;
    width: 500px;
    margin: 0 auto 50px;
}

#footer .copyright {
    color: #fff;
    font-weight: 500;
}

@media screen and (max-width: 991px) {

    #footer .fclogo {
        width: 150px;
        margin-bottom: 20px;
    }

    #footer .copyright {
        font-size: 12px;
    }
}

@media screen and (max-width: 767px) {

    #footer {
        padding: 0px 0 185px;
    }

    #footer #page-top {
        width: 95px;
        bottom: 20px;
        right: 5px;
    }

    #footer #page-top.active {
        width: 130px;
    }
}

/* アニメーション用class */
.inview {
    animation-name: fade-in;
    animation-duration: .5s;
    animation-timing-function: ease-in-out;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.inview1 {
    animation-name: fade-in1;
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.inview2 {
    animation-name: fade-in2;
    animation-duration: 1.2s;
    animation-timing-function: ease;
    animation-delay: .4s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

.cloud-pic {
    transition: .5s ease;
    cursor: pointer;
    animation: cloud 1.0s ease-in-out infinite alternate;
}

.cloud-pic2 {
    transition: .5s ease;
    cursor: pointer;
    animation: cloud 1.3s ease-in-out infinite alternate;
}

.fade-in,
.fade-in1,
.fade-in2 {
    opacity: 0;
}

@keyframes fade-in1 {
    0% {
        transform: translateY(40px) scale(0.4);
    }
    100% {
        transform: translateY(0px) scale(0.4);
        opacity: 1;
    }
}

@keyframes fade-in2 {
    0% {
        transform: translateY(40px) scale(0.34);
    }
    100% {
        transform: translateY(0px) scale(0.34);
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        transform: translateY(40px);
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes cloud {
    0% {translate: 0;}
    100% {translate: 20px 0;}
}

.anker-point {
    transform: translateY(-20px);
}

.character {
    position: absolute;
    z-index: 0;
}

.character3 {
    top: 200px;
    right: -259px;
    width: 400px;
}

.character4 {
    bottom: 200px;
    left: -202px;
    width: 201px;
}

.character5 {
    bottom: 300px;
    right: -249px;
    width: 245px;
}

.character6 {
    bottom: -80px;
    left: -285px;
    width: 296px;
}

@media screen and (max-width: 1450px) {
    .character {
        display: none;
    }
}

/*-----------------------------
  fadein
-----------------------------*/
/* .fadein {
    opacity: 0;
    visibility: hidden;
    transform-origin: center center;
}

.fadein.is-show {
    visibility: visible;
    animation: customCombineFade 1s ease-out forwards;
} */

@keyframes customCombineFade {
    0% {
        opacity: 0;
        transform:
            translateY(50px)
            scale(0.9);
        
        filter: blur(10px);
    }

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

        filter: blur(0);
    }
}

.fade-depth {
  opacity: 0;
  transform: translate(-18px, 35px) scale(0.6);
}

/* 出現 */
.fade-depth.is-show {
  animation: popCute 1.2s cubic-bezier(.22, 1, .36, 1) forwards;
}

/* 浮遊はそのまま */
.fade-depth img {
  animation: floatSoft 4s ease-in-out infinite;
  will-change: transform;
}

/* ポップ出現 */
@keyframes popCute {

  0% {
    opacity: 0;
    transform: translate(-18px, 35px) scale(0.6) rotate(-6deg);
  }

  45% {
    opacity: 1;
    transform: translate(6px, -8px) scale(1.08) rotate(2deg);
  }

  65% {
    transform: translate(-2px, 4px) scale(0.96) rotate(-1deg);
  }

  82% {
    transform: translate(1px, -2px) scale(1.02) rotate(0.5deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

/* 浮遊 */
@keyframes floatSoft {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-24px);
  }
}

.section-fade {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  filter: blur(18px) brightness(1.1);
  transition: opacity 1.2s cubic-bezier(.19, 1, .22, 1),
              transform 1.2s cubic-bezier(.19, 1, .22, 1),
              filter 1.2s cubic-bezier(.19, 1, .22, 1);
  will-change: opacity, transform, filter;
}

.section-fade.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0) brightness(1);
}

.goods-lineup {
    display: flex;
    flex-wrap: wrap;
}

.goods-item {
    position: relative;
    width: calc((100% - 30px)/2);
    margin-bottom: 30px;
    background-repeat: repeat;
}


.goods-item .goods-slide-area {
    position: relative;
}

.goods-item .goods-slide-area .slide-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.cashless-img > img {
    width: 100%;
}

.goods-item.bg-purple {
    background-image: url("../images/goods_bg_purple.png");
    background-repeat: repeat;
    background-size: 20%;
}

.goods-item .limited {
    letter-spacing: 1px;
    position: absolute;
    display: inline-block;
    width: 150px;
    padding: 8px 0 10px;
    top: -10px;
    right: -10px;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    background-color: #5677A1;
}

.goods-item:nth-of-type(2n) {
    margin-left: 30px;
}

.goods-item > p {
    margin-bottom: 10px;
    text-align: center;
    font-weight: 500;
}

.goods-item h4 {
    font-size: 23px;
    color: #7d6455;
    font-weight: 900;
}

.goods-item h4 span {
    display: block;
    font-size: 21px;
    font-weight: 900;
}

.goods-item .price {
    margin: 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.goods-item .price span {
    display: inline-block;
    margin-left: 3px;
    font-size: 20px;
}

.goods-item .caption dd {
    width: calc(100% - 65px);
    margin-bottom: 0;
}

.size-box .headline {
    font-size: 20px;
}

.size-box tbody {
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
}

.size-box th {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    background-color: #efefef;
}

.size-box td {
    border-top: 1px solid #000;
    border-left: 1px solid #000;
    font-weight: initial;
    background-color: #fff;
}

@media screen and (max-width: 991px) {

    .goods-nav {
        display: block;
    }

    .goods-nav a,
    .goods-nav.column4 a {
        width: 100%;
        margin-bottom: 5px;
        font-size: 16px;
    }

    #goods02 .text {
        text-align: left;
        font-size: 14px;
    }

    .goods-item {
        width: calc((100% - 15px)/2);
        margin-bottom: 20px;
        padding: 40px 20px;
    }

    .goods-item:nth-of-type(2n) {
        margin-left: 15px;
    }

    .goods-item h4 {
        height: auto;
        font-size: 22px;
    }

    .goods-item:nth-of-type(1) h4 {
        height: auto;
    }

    .goods-item h4 span {
        display: inline;
        font-size: 22px;
        font-weight: inherit;
    }

    .goods-item .price {
        font-size: 22px;
    }

    .goods-item .price span {
        font-size: 20px;
    }

    .size-box {
        padding: 0 15px;
    }

}

@media screen and (max-width: 767px) {

    .goods-headline {
        height: 50px;
        font-size: 18px;
    }

    .goods-item {
        width: 100%;
        margin-left: 0!important;
    }

    .goods-item .limited {
        left: 0;
        right: 0;
        margin: auto;
    }

    .goods-item img {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }

    .goods-item .caption {
        max-width: 400px;
        margin: 0 auto;
    }

    .goods-lineup {
        margin: 0;
    }

}

@media screen and (max-width: 480px) {
    .size-box th,
    .size-box td {
            padding: .25rem;
    }
}

.goods-item .slick-slide {
    margin: 0;
}