@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

/* ==============================================================
*  base
* ============================================================ */
/* media query */
/* font setting */
/* spacer */
/* absolute : position:absolute; */
/* 配置*/
/* clearfix*/
/* btn*/
/* transition*/
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}


h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace,monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace,monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
    z-index: 1;
    position: relative;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */

html {
    font-size: clamp(13px, 1.28vw, 2.1vh);
    height: auto;
}

body {
  width: 100%;
  color: #000000;
  padding: 0;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
	font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
    background: transparent;
}

.wrap {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    z-index: 1;
    background: #fff;
}
section{
    padding: 5vw 0;
}

h1 {
  text-indent: -99999em;
}

a {
  text-decoration: none;
  color: #000000;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
}

.delighter {
  opacity: 0;
}

.delighter.started {
  opacity: 1;
}
.loading{
    background: #FABD00;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    transition: 0.4s;
    pointer-events: none;
}
.loaded .loading{
opacity: 0;
    z-index: -999;
}


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

header.header {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 10000;
    width: auto;
    display: flex;
    align-items: center;
}
.tab_list {
    display: flex;
    color: #fff;
    width: 320px;
    margin-right: 20px;
}
.tab_list li {
    width: 50%;
}
.tab_list li:last-child {
    border-left: 4px solid #000;
}

.tab_list li a {
    background: #474747;
    display: block;
    text-align: center;
    padding: 8px 18px;
    border-radius: 30px 0 0 30px;
    transition: 0.3s;
    line-height: 0;
}

.tab_list li:last-child a {
    border-radius: 0 30px 30px 0;
}

.tab_list li a.current {
    background: #edc730;
}

#gNav {
    position: fixed;
    right: 40px;
    box-sizing: border-box;
    top: 100px;
    padding: 0;
    z-index: 999;
    width: auto;
    transform: scale(0);
    transform-origin: right top;
    transition: 0.4s;
    background: #000000;
    padding: 55px 40px;
    border-radius: 25px;
    box-shadow: 3px 3px 0 #00000030;
}

#gNav.open {
    transform: none;
}

#gNav .gnavMenu {
}
#gNav .gnavMenu.menu_hide {
    display: none;
}

#gNav .gnavMenu li.hide {
    opacity: 0.6;
    pointer-events: none;
}

#gNav a {
color: #ffffff;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    margin: 0 auto 12px auto;
    font-size: 18px;
    font-weight: bold;
    width: auto;
    letter-spacing: 0.02em;
    line-height: 1;
    font-weight: 400;
    font-family: "Helvetica Neue",  "arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

#gNav a .menu_ico {
    width: 22px;
    display: inline-block;
    margin-right: 6px;
}


.nav_mainlogo {
    width: 230px;
    margin: 0 auto 45px;
    line-height: 0;
    max-width: 55%;
}

#gNav li:last-child a{
    margin: 0 auto 0;
}

.gNavInr{
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}

#gNav .menu {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: auto;
}
#gNav .menu li a {
    display: block;
    color: #fff;
    font-size: 1.3vw;
    letter-spacing: 0.05em;
}
#gNav .menu li a.off {
    opacity: 0.5;
    pointer-events: none;    
}

	
#menuButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 30px;
    border: none;
    text-decoration: none;
    opacity: 1;
}

.menu_btn_wrap {
    position: relative;
    width: 100%;
}


#menuButton span:first-child {
    top: calc(50% - 8px);
}

#menuButton span:nth-child(2) {
    top: calc(50% + -1px);
	display:none;
}

#menuButton span:nth-child(3) {
    top: calc(50% + 6px);
}


#menuButton.active span {
}
#menuButton.active span:first-child { 
	transform: translateY(7px) rotate(45deg); 
} 
#menuButton.active span:nth-child(2) { 
	opacity: 0; 
} 

#menuButton.active span:nth-child(3) { 
	transform: translateY(-7px) rotate(-45deg); 
} 

#gNav .menu {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 40%;
    margin: 40px auto;
}

#menuButton span {
    display: block;
    background: #000;
    width: 45px;
    height: 2px;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}



.frame {
    position: fixed;
    width: 100%;
    height: 100dvh;
    border: 20px solid;
    z-index: 9999;
    pointer-events: none;
}
.frame.frame02 {
    border-radius: 50px;
}




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

html {
    font-size: clamp(10px, 3.5vw, 2.5vh);
}

.frame {
    border-width: 12px;
}
.frame.frame02 {
    border-radius: 30px;
}
header.header {
    padding: 12px;
}

.tab_list {
    width: 230px;
    max-width: 90%;
    margin-right: 10px;
}

.tab_list li a {
    padding: 8px 13px;
}

.header::before, .header::after {
    width: 18px;
}
.header::before {
    left: -17.5px;
    top: 12px;
}
.header::after {
    right: 11.5px;
    bottom: -23.5px;
}

#gNav {
    right: 25px;
    top: 68px;
    padding: 40px 35px;
    border-radius: 15px;
}

#gNav a {
    font-size: 17px;
    margin-bottom: 12px;
}

#gNav a .menu_ico {
    width: 18px;
}

#menuButton {
    width: 23px;
    height: 23px;
}

#menuButton span {
    width: 23px;
}

}


/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background: #0000008f;}
#colorbox{outline:0;}
    #cboxTopLeft{width:25px; height:25px; background: no-repeat 0 0;}
    #cboxTopCenter{height:25px; background: repeat-x 0 -50px;}
    #cboxTopRight{width:25px; height:25px; background: no-repeat -25px 0;}
    #cboxBottomLeft{width:25px; height:25px; background: no-repeat 0 -25px;}
    #cboxBottomCenter{height:25px; background: repeat-x 0 -75px;}
    #cboxBottomRight{width:25px; height:25px; background: no-repeat -25px -25px;}
    #cboxMiddleLeft{width:25px; background: repeat-y 0 0;}
    #cboxMiddleRight{width:25px; background: repeat-y -25px 0;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:20px;}
        #cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #cboxLoadingOverlay{background:#fff url(../images/feature/fes2014/loading.gif) no-repeat 5px 5px;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #cboxClose{position:absolute; bottom:0; right:0; display:block; color:#444;}


.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

#cboxContent {
    background: #ffffff;
    border-radius: 15px;
}

#cboxLoadedContent {
    margin-bottom: 0;
}
#cboxCurrent, #cboxTitle{ display:none !important; }
#cboxNext,
#cboxPrevious{
    position: absolute;
    top: 50%;
    margin-top: -32px;
    width: 48px;
    height: 65px;
    text-indent: -9999px;
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
    filter: grayscale(1);
}
#cboxNext {
    background: url(/static/funkymonkeybabys/official/feature/we_are_fmb2023/img/goods/next.png) no-repeat center right;
    background-size: 51px 99px;
    -webkit-background-size: 51px 99px;
    right: 10px;
    left: auto;
}
#cboxPrevious{
    background: url(/static/funkymonkeybabys/official/feature/we_are_fmb2023/img/goods/prev.png) no-repeat center left;
    background-size: 51px 99px;
    -webkit-background-size: 51px 99px;
    left: 10px;
}
#cboxClose:hover {
    background-position: center;
}
#cboxClose {
	display: block;
	position: absolute;
	top: 30px;
	right: 30px;
	background: url(/static/funkymonkeybabys/official/feature/we_are_fmb2023/img/goods/modal_close.png) no-repeat center center;
	background-size: 100%;
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	filter: grayscale(1);
}
#cboxClose:focus { outline: none;}
#cboxLoadedContent {
    margin-bottom: 0;
    overflow-x: hidden !important;
}





.btn {
  text-align: center;
}

.btn.btn_archive {
    margin-bottom: 50px;
    margin-top: 50px;
}

.btn_other a {
    position: relative;
    background: #e52e17;
    color: #fff;
    padding: 25px 30px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 2px 2px 0 #000;
    margin-bottom: 35px;
    border: 1px solid #000;
    border-radius: 20px;
}

.btn_other a:hover {
    box-shadow: 5px 5px 0 #000;
}

.btn_other a .fa {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.btn a {
    -webkit-appearance: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn a {
    width: auto;
    min-width: 320px;
    padding: 1.3em 2em;
    font-size: 17px;
    font-weight: bold;
    border: 2px solid #000;
    color: #000000;
    border-radius: 60px;
    line-height: 1.5;
    position: relative;
    top: 0;
}

.btn a:hover {
    top: 3px;
}

.btn.hide a{
    background: #9e9e9e;
    pointer-events: none;
    color: #dcdcdc;
}

.btn span {
  font-size: 16px;
  text-align: center;
}

.btn.out a {
  background: #999;
  pointer-events: none;
  color: #FFFFFF;
}

.btn a.sub {
    padding: 15px;
    font-size: 15px;
    background: #000;
    box-shadow: none;
}
.btn a.sub:hover {
    background: #006dd1;
}


.btn--main {
  background: #011688;
  color: #FFFFFF;
}

.txt--sub {
  margin-top: 15px;
  text-align: center;
}

.section-tit {
    font-size: 39px;
    position: relative;
    z-index: 1;
    line-height: 1;
    margin-bottom: 60px;
    font-weight: 100;
    font-family: "Helvetica Neue",  "arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}


.section-tit .tit_txt {
    letter-spacing: 0;
    transition: 0.4s 0.1s;
}
.section-tit.started .tit_txt {
    opacity: 1;
}

.lead {
  margin-bottom: 30px;
}

.txt {
  margin: 0 0 1em;
}

.txt--sub {
  font-size: 13px;
  line-height: 1.4em;
}

.txt_fin {
    padding: 20px 0;
}

.copyright {
  letter-spacing: 0.02em;
  font-family: ronnia-condensed, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
        text-align: center;
}

.detail__btn, .list__more {
  letter-spacing: 0.02em;
}

.section--list {
  padding-bottom: 70px;
}

.date, .category {
  letter-spacing: 0.02em;
  line-height: 1;
}



body:not(.page--home) .footer .link--fc, body:not(.page--home) .footer .list--sub-bnr {
}

footer {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 100px 0;
    width: 100%;
    z-index: 1;
    background: #fff;
}

footer .inner {
  padding: 0 10%;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items:center;
}
.copyright {
    width: 100%;
  padding: 5px 0;
}
footer .link--fc {
    width: 200px;
    padding: 0 10px;
}
footer .link--tour{
    width: 100px;
    padding: 0 10px;
}

footer .link--fc a {
  display: block;
  padding: 5px 0;
}
footer .link--official{
    width: 200px;
    padding: 0 10px;
}

footer .list--sub-bnr {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 25px;
}

footer .list--sub-bnr li {
  margin-right: 10px;
  border: 1px solid;
  -webkit-transition: border .2s;
  transition: border .2s;
}

footer .list--sub-bnr li a {
  display: block;
}

footer .list--sub-bnr li a img {
  display: block;
}

footer .list--sub-bnr li:last-child {
  margin-right: 0;
}

.detail__btn {
  font-size: 15px;
  margin-left: calc(4% + 15px);
}

.detail__btn a {
  padding: 10px 0;
  display: inline-block;
}

.list__more, .detail__btn {
  display: block;
}

.list__more a, .detail__btn a {
    font-size: 12px;
    position: relative;
    line-height: 1;
    width: 140px;
    min-width: auto;
    margin: 0 auto;
    padding: 13px;
    font-weight: bold;
    letter-spacing: 0.02em;
    font-family:"Helvetica Neue",  "arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}


.no-data {
  text-align: center;
  letter-spacing: 0.1em;
  margin: 30px auto;
}

.ph {
  position: relative;
  margin: 1.5em 0;
  line-height: 0;
}

.ph .dummy {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ph img, .thumb img {
  width: 100%;
}



body:not(.page--home) main {
}

.section--top {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FABD00;
  overflow: hidden;
}

body:not(.page--home) .section--top {
  position: fixed;
}
.mainLogo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.mainLogo .logo_top{
    line-height: 0;
    margin: 0 auto 25px;
}
.mainLogo .logo_bottom{

}

.mask-wrapper {
	width: 47vw;
    height: 23vw;
  overflow: hidden;
  -webkit-mask-image: url("/static/funkymonkeybabys/official/feature/20th_anniversary/images/logo_mask_v5ZimPrY.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("/static/funkymonkeybabys/official/feature/20th_anniversary/images/logo_mask_v5ZimPrY.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
    line-height: 0;
    margin: 0 auto 25px;
}

.rows {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flow {
  display: flex;
  animation: marquee 200s linear infinite;
  will-change: transform;
}

.flow-inner {
  display: flex;
}

.flow-inner img {
  display: block;
  width: 143px;
  height: 110px;
  object-fit: cover;
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* 横スクロールアニメーション */
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--scroll-width))); }
}


.section--box {
    padding: 120px 0 120px;
    position: relative;
    transition: 0.05s;
}


.section--bnr.section--box {
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
    background-image: none;
}

.page--home .section--box {
    background: #fffffff5;
}


.page--home section#news {
    background: #fff;
    border-top: 3px solid;
    border-bottom: 3px solid;
}

.section--box_inner {
    position: relative;
    margin: 0 10%;
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.25, 0.1, 0.48, 1.34);
}
section.delighter.started .section--box_inner {
    transform: translateY(0px);
    opacity: 1;
}

.txtbnr {
    width: 500px;
    margin: 0 auto;
    text-align: center;
    background: #04286f;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid;
    box-shadow: 0 0 12px #00000061;
    transform: scale(0);
    transition: 0.5s cubic-bezier(0.25, 0.1, 0.48, 1.34);
    position: relative;
}

.txtbnr a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.txtbnr .large {
    font-size: 1.4em;
    display: inline-block;
    background: linear-gradient(transparent 64%, #e72071 66%);
    line-height: 1.2;
    padding: 0 5px;
    margin: 5px 0;
}


.txtbnr_qr {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.txtbnr_qr .txtbnr_txt {
    width: 60%;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
}

.txtbnr_qr .txtbnr_txt::before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    top: calc(50% - 7px);
    right: -11px;
    border-top: 4px solid;
    border-right: 4px solid;
    transform: rotate(45deg);
}

.txtbnr_qr .txtbnr_img {
    width: 31%;
    line-height: 0;
}

.bnr_tit_img {
    width: 85%;
}

.section--box.delighter.started .txtbnr {
    transform: scale(1);
}


.txtbnr_qr.txtbnr_end .txtbnr_txt {
    width: 100%;
}

.txtbnr_qr.txtbnr_end .bnr_tit_img {
    max-width: 260px;
}

.txtbnr_qr.txtbnr_end .txtbnr_txt .sml {
    font-size: 0.75em;
}

.txtbnr_qr.txtbnr_end .txtbnr_txt::before {
     display: none;
}


.bnr_list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 50px;
}

.bnr_list li {
    margin: 0 auto 0px;
    text-align: center;
    background: #e52e17;
    color: #fff;
    border: 2px solid #000000;
    box-shadow: 0 3px 0px #000000;
    font-size: 17px;
    transform: translateY(50px);
    transition: 0.5s cubic-bezier(0.25, 0.1, 0.48, 1.34);
    width: 50%;
    border-radius: 10px;
    background-image: url(/static/funkymonkeybabys/official/feature/zenpachi/img/patrun_dot_min.png);
    background-size: 16px;
}

.loaded .bnr_list li.started {
    transform: translateY(0px);
    opacity: 1;
}

.bnr_list li:last-child {
    margin-bottom: 0;
}

.bnr_list li a {
    display: block;
    color: #fff;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.07em;
    cursor: pointer;
    padding: 25px;
    transition: 0.3s;
    font-weight: bold;
}

.bnr_list li a:hover {
    opacity: 0.7;
}



/* TOPICS */

.section--topics{

}

.section--topics .section--box_inner .list__more {
    position: absolute;
    bottom: 3px;
    left: 0;
}
.section--topics .section--box_inner {
    display: flex;
    flex-wrap: wrap;
}

.section--topics .section--box_inner .section-tit {
    width: 30%;
height: 100px;
}

.section--topics .section--box_inner .list--information {
    width: 70%;
}

.section--topics .list--information {
}

.section--topics .list--information li {
    margin-bottom: 60px;
}
.section--topics .list--information li:last-child {
    margin: 0;
}

.section--topics .list--information li > a,
.section--topics .list--information li > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 0 100px;
    position: relative;
}
.list--information li > a:before,
.section--topics .list--information li > div:before {
    content: '';
    display: inline-block;
    width: 70px;
    height: 70px;
    background-image: url(/static/funkymonkeybabys/official/feature/20th_anniversary/images/icon_topics_v5ZimPrY.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}
.section--topics .list--information li a .date,
.section--topics .list--information li > div .date  {
    font-size: 14px;
    display: inline-block;
    letter-spacing: 0.04em;
    line-height: 1.45;
    font-weight: bold;
}

.section--topics .list--information li a .tit,
.section--topics .list--information li > div .tit {
    font-size: 15px;
    font-weight: 500;
    position: relative;
    width: calc(100% - 80px);
}
.section--topics .list--information li > div .tit{
    width: 100%;
}
.section--topics .list--information li > div .txt{
    width: 100%;
    font-size: 13px;
}

.section--topics .list--information li.new .tit::after {
    content: "NEW";
    font-size: 11px;
    font-weight: bold;
    font-style: normal;
    font-weight: 700;
    display: inline-block;
    padding: 4px 6px;
    border: 1px solid;
    position: relative;
    right: -7px;
    top: -3px;
    line-height: 1;
    color: #fb3319;
}
.newsListPage{

}
.newsListPage .section--topics{
min-height: 65vh;
    padding: 10vw 0 5vw;
}
.page--news .section--topics .list--information li > div:before{
	display:none;
}
.page--news .section--topics .list--information li > div{
    display: block;
    padding: 0;
    position: relative;
}


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

.page--news .section--topics .news_wrap {
    width: 70%;
}
.page--news .section--topics .section--box_inner .list--information {
    width: 100%;
}

}

@media screen and (min-width: 1px) and (max-width: 960px) {

.newsListPage .section--topics {
    padding: 100px 0 80px;
}

}

/* JUKEBOX */
.section--jukebox {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.songBox {
    width: 100%;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.swiper {
  width: 100%;
  height: auto;
  position: relative;
  overflow: visible;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s, filter 0.4s;
  z-index: 1;
}

/* 画像：縦横比そのまま縮小 */
.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* 中央スライド */
.swiper-slide-active {
	filter: brightness(1);
    transform: translateY(10px);
    z-index: 3 !important;
}

/* 左右スライド */
.swiper-slide-prev,
.swiper-slide-next {
  filter: brightness(0.5);
  transform: translateY(0);
  z-index: 2;
}

/* 矢印ナビゲーション */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}




#btnArea {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 400px;
  margin: 15px auto;
}

#btnArea button {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  background: #444;
  color: #fff;
  cursor: pointer;
  width: 100%; 
}
#btnArea button:hover {
  background: #666;
}

    
/* BIOGRAPHY */

.section--biography {
    margin: 0;
    font-family: sans-serif;
    background: #FABD00;
    padding: 5vw 0 0 10%;
  overflow-x: auto; 
  overflow-y: hidden;
  cursor: grab;
}
.section--biography::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}
.section--biography::-webkit-scrollbar-track{
  background-color: #fff;
}
.section--biography::-webkit-scrollbar-thumb{
  background-color: #fa7800;
}
.section--biography * {
  pointer-events: auto; 
}
.section--biography.dragging {
  cursor: grabbing;
  user-select: none;
}

.section--biography .section-tit{
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.25, 0.1, 0.48, 1.34);
}
.section--biography .section-tit .scroll{
    width: 80px;
    position: absolute;
    right: 10%;
	top:0;
}
.section--biography .section-tit .scroll img{
    width: 100%;
}

.section--biography .logo{
    width: 6000px;
    padding: 0 0 10px;
    margin: 0 0 20px 0;
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.25, 0.1, 0.48, 1.34);
}
.section--biography .logo:before {
    content: '';
    height: 1px;
    width: 100%;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 0;
}
.section--biography .logo img{
    width: 400px;
    padding: 0 0 0 20px;
}
.section--biography.started .section-tit,
.section--biography.started .logo{
    transform: translateY(0px);
    opacity: 1;
}


.timeline-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  display: block;
}

.timeline {
    display: flex;
    align-items: center;
    position: relative;
    padding:400px 50px 300px;
    width: 6000px;
}

.year-block {
    position: relative;
    text-align: center;
    width: 50%;
    height: 205px;
}
.year-label {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffbd30;
    padding: 0 10px;
}

.point {
    position: absolute;
    width: 300px;
    height: 150px;
    left: 80%;
}
.point.top{
    top: -10%;
}
.point.bottom{
    bottom:-76%;
}

.balloon {
    position: absolute;
    background: #fff;
    padding: 5px 20px;
    font-size: 11px;
    line-height: 1.2;
    border-radius: 999px;
    font-weight: bold;
}
.balloon:before {
	content: '';
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translate(-50%, 0);
    height: 110px;
    background: #000;
    width: 1px;
    opacity: 1;
}
.balloon:after {
    content: '';
    position: absolute;
    bottom: -115px;
    left: 50%;
    transform: translate(-50%, 0);
    height: 10px;
    background: #fff;
    width: 10px;
    opacity: 1;
    border-radius: 999px;
    border: 1px solid;
}
.point.bottom .balloon:before {
    top: -110px;
    bottom: auto;
}
.point.bottom .balloon:after {
    top: -110px;
}
.balloon span{
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 12px;
    background: #ffbd30;
}
.jktList{

}
.jktList li{
    z-index: 5;
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    background: #ffdb67;
    border-radius: 50%;
    box-sizing: border-box;
    top: 22px;
}
.jktList li span{
line-height: 1;
    font-size: 10px;
    color: #000;
    position: absolute;
    transform: translate(-50%, 0);
    left: 50%;
    top: -5%;
    width: 100%;
    max-width: 120px;
}
.jktList li:nth-child(even) span{
    bottom: -5%;
    top: auto;
}
.jktList li:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 30px solid #ffdb67;
    z-index: 0;
}
.jktList li:nth-child(even){
    top: auto;
    bottom: 26px;
}
.jktList li:nth-child(even):before {
    bottom: auto;
    top: -30px;
    border: 15px solid transparent;
    border-bottom: 30px solid #ffdb67;
}
.jktList li img{
    width: 60%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
pointer-events: none;
}

.phList{

}
.phList li{
	position: absolute;
	width: 200px;
	top: -135%;
	-webkit-mask-image: url("/static/funkymonkeybabys/official/feature/20th_anniversary/images/ph_timeline_mask_v5ZimPrY.png");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: 100%;
	mask-image: url("/static/funkymonkeybabys/official/feature/20th_anniversary/images/ph_timeline_mask_v5ZimPrY.png");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 100%;
}
.phList li img{
pointer-events: none;
}
.phList li:nth-of-type(even){
    top: auto;
    bottom: -100%;
}

.liveList{

}
.liveList li {
    position: absolute;
    width: 100%;
    max-width: 150px;
}
.liveList li a{
	background: #000;
    display: block;
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
    padding: 8px;
}
.liveList li a:before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(/static/funkymonkeybabys/official/feature/20th_anniversary/images/icon_search_v5ZimPrY.png);
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    right: -5px;
    bottom: -5px;
}
.popInBox{
    padding: 40px;
}
.popInBox .tit{
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px 0;
}
.schedule{
    max-width: 500px;
    margin: auto;
}
.schedule li{
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    font-weight: bold;
}
.schedule li:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

.year-block.y2006 .liveList li:nth-child(1){
top: -55%;
    left: 45%;
    max-width: 165px;
}
.year-block.y2006 .liveList li:nth-child(2){
    top: -86%;
    left: 120%;
    max-width: 187px;
}

.year-block.y2007 .liveList li:nth-child(1){
    top: 68%;
    left: 51%;
}
.year-block.y2007 .liveList li:nth-child(2){
    top: -8%;
    left: 129%;
    max-width: 100px;
}

.year-block.y2008 .liveList li:nth-child(1){
    top: 96%;
    left: 46%;
}
.year-block.y2008 .liveList li:nth-child(2){
    top: 115%;
    left: 71%;
    max-width: 211px;
}
.year-block.y2008 .liveList li:nth-child(3){
    top: 77%;
    left: 107%;
}


.year-block.y2009 .liveList li:nth-child(1){
	top: 10%;
    left: 37%;
    max-width: 100px;
}
.year-block.y2009 .liveList li:nth-child(2){
top: -48%;
    left: 73%;
    width: 139px;
}
.year-block.y2009 .liveList li:nth-child(3){
    top: 177%;
    left: 68%;
}
.year-block.y2009 .liveList li:nth-child(4){
    top: -20%;
    left: 84%;
}
.year-block.y2009 .liveList li:nth-child(5){
    top: 10%;
    left: 129%;
    max-width: 139px;
}

.year-block.y2010 .liveList li:nth-child(1){
    top: 64%;
    left: 48%;
}
.year-block.y2010 .liveList li:nth-child(2){
    top: -45%;
    left: 62%;
}
.year-block.y2010 .liveList li:nth-child(3){
    top: 177%;
    left: 56%;
}
.year-block.y2010 .liveList li:nth-child(4){
    top: 206%;
    left: 75%;
}
.year-block.y2010 .liveList li:nth-child(5){
top: 166%;
    left: 91%;
}


.year-block.y2011 .liveList li:nth-child(1){
    top: 7%;
    left: 26%;
}
.year-block.y2011 .liveList li:nth-child(2){
    top: -72%;
    left: 47%;
    max-width: 250px;
}
.year-block.y2011 .liveList li:nth-child(3){
    top: 187%;
    left: 56%;
    max-width: 250px;
}

.year-block.y2012 .liveList li:nth-child(1){
top: 147%;
    left: 22%;
    max-width: 200px;
}
.year-block.y2012 .liveList li:nth-child(2){
    top: -66%;
    left: 62%;
}
.year-block.y2012 .liveList li:nth-child(3){
    top: 141%;
    left: 68%;
}
.year-block.y2012 .liveList li:nth-child(4){
    top: 181%;
    left: 75%;
}
.year-block.y2012 .liveList li:nth-child(5){
    top: 126%;
    left: 104%;
}

.year-block.y2013 .liveList li:nth-child(1){
    top: 74%;
    left: 37%;
}
.year-block.y2013 .liveList li:nth-child(2){
    top: -33%;
    left: 75%;
}
.year-block.y2013 .liveList li:nth-child(3){
    top: -2%;
    left: 89%;
}

.year-block.y2021 .liveList li:nth-child(1){
    top: 135%;
    left: 83%;
    max-width: 223px;
}
.year-block.y2021 .newlogo{
position: absolute;
    top: -186%;
    left: 36%;
    width: 400px;
}

.year-block.y2022 .liveList li:nth-child(1){
    top: 46%;
    left: 83%;
    max-width: 200px;
}

.year-block.y2023 .liveList li:nth-child(1){
    top: 66%;
    left: 43%;
    max-width: 130px;
}
.year-block.y2023 .liveList li:nth-child(2){
    top: 100%;
    left: 97%;
max-width: 177px;
}
.year-block.y2023 .liveList li:nth-child(3){
    top: 46%;
    left: 108%;
    max-width: 218px;
}
.year-block.y2023 .liveList li:nth-child(4){
top: 41%;
    left: 86%;
    max-width: 85px;
}

.year-block.y2025 .liveList li:nth-child(1){
top: 67%;
    left: 46%;
}
.year-block.y2025 .liveList li:nth-child(2){
    top: -39%;
    left: 51%;
    max-width: 299px;
}


.year-block:nth-of-type(odd) .jktList li:nth-child(1){
    left: 65%;
    top: 2%;
}
.year-block:nth-of-type(odd) .jktList li:nth-child(2){
    left: 83%;
    bottom: -28%;
}
.year-block:nth-of-type(odd) .jktList li:nth-child(3){
    left: 105%;
    top: 26%;
}
.year-block:nth-of-type(odd) .jktList li:nth-child(4){
    left: 122%;
    bottom: -52%;
}
.year-block:nth-of-type(odd) .jktList li:nth-child(4) span{
    bottom: -15%
}
.year-block:nth-of-type(even) .jktList li:nth-child(1){
    left: 60%;
    top: -15%;
}
.year-block:nth-of-type(even) .jktList li:nth-child(2){
    left: 82%;
    bottom: 12%;
}
.year-block:nth-of-type(even) .jktList li:nth-child(3){
    left: 98%;
    top: -38%;
}
.year-block:nth-of-type(even) .jktList li:nth-child(4){
    left: 118%;
    bottom: 37%;
}



.year-block .phList li:nth-child(1){
	left: 10%;
}
.year-block .phList li:nth-child(2){
    left: 29%;
}
.year-block .phList li:nth-child(3){
    left: 60%;
}

.year-block .phList li:nth-child(4){
	left: 88%;
}



.year-block.y2004{
    width: 20%;
    top: 0;
}
/*
.year-block.y2004:before{
	display:none;
}
.year-block.y2004:after{
    transform: translate(0, -50%) rotate(0deg);
    top: 50%;
    left: 31%;
    width: 68%;
}
*/
.year-block.y2004 .year-label{
    left: 0;
    transform: translate(0, -50%);
}

.year-block.y2004 .point:nth-of-type(2){
    left: 20%;
    top: -16%;
}

.year-block.y2006{
    width: 25%;
    top: 0;
}
.year-block.y2006 .year-label{
    left: 0;
    transform: translate(0, -50%);
}
.year-block.y2006 .point:nth-of-type(2){
    bottom: -72%;
    left: 20%;
}
.year-block.y2006 .jktList li:nth-child(1){
    left: 44%;
    top: -17%;
}
.year-block.y2006 .jktList li:nth-child(2){
    left: 88%;
    bottom: 16%;
}
.year-block.y2006 .jktList li:nth-child(3){
    left: 112%;
    top: -41%;
}
.year-block.y2006 .jktList li:nth-child(4){
    left: 154%;
    bottom: 39%;
}
.year-block.y2006 .jktList li:nth-child(4) span{
    bottom: -15%;
}
.year-block.y2006 .phList li:nth-child(1){
    left: -90%;
}
.year-block.y2006 .phList li:nth-child(2){
    left: -75%;
}
.year-block.y2006 .phList li:nth-child(2) img{
    position: relative;
    top: 15px;
}
.year-block.y2006 .phList li:nth-child(3){
    left: 26%;
}

.year-block.y2006 .phList li:nth-child(4){
    left: 26%;
}

.year-block.y2007 .point:nth-of-type(2){
    left: 54%;
    top: -40%;
}
.year-block.y2007 .point:nth-of-type(2) .balloon:before {
    bottom: -155px;
    height: 155px;
}
.year-block.y2007 .point:nth-of-type(2) .balloon:after {
    bottom: -159px;
}

.year-block.y2007 .phList li:nth-child(2) img{
    position: relative;
    top: 26px;
}
.year-block.y2007 .phList li:nth-child(3) img{
    position: relative;
    top: 15px;
}
.year-block.y2007 .phList li:nth-child(4){
    bottom: -114%;
    left: 79%;
}


.year-block.y2008 .jktList li:nth-child(2) span{
    bottom: -38%;
}
.year-block.y2008 .phList li:nth-child(1){
    top: -165%;
}
.year-block.y2008 .phList li:nth-child(1) img{
    position: relative;
    top: 26px;
}
.year-block.y2008 .phList li:nth-child(2) img{
    position: relative;
    top: 26px;
}

.year-block.y2009 .point:nth-of-type(2){
    left: 57%;
    bottom: -121%;
    max-width: 241px;
}
.year-block.y2009 .point:nth-of-type(2) .balloon:before {
top: -170px;
    bottom: auto;
    height: 170px;
}
.year-block.y2009 .point:nth-of-type(2) .balloon:after {
    top: -173px;
}
.year-block.y2009 .point:nth-of-type(3){
    left: 122%;
    top: -25%;
    max-width: 150px;
}
.year-block.y2009 .point:nth-of-type(3) .balloon:before {
    bottom: -200px;
    height: 200px;
}
.year-block.y2009 .point:nth-of-type(3) .balloon:after {
bottom: -206px;
}

.year-block.y2009 .jktList li:nth-child(1){
    left: 60%;
    top: -2%;
}

.year-block.y2009 .jktList li:nth-child(2){
	left: 61%;
    bottom: -14%;
}
.year-block.y2009 .jktList li:nth-child(3){
    left: 81%;
    top: 16%;
}
.year-block.y2009 .jktList li:nth-child(3) span{
    top: -15%;
}
.year-block.y2009 .jktList li:nth-child(4){
    left: 90%;
    bottom: -31%;
}
.year-block.y2009 .jktList li:nth-child(4) span{
    bottom: -26%;
}
.year-block.y2009 .jktList li:nth-child(5){
    left: 107%;
    bottom: 22%;
    top: auto;
}
.year-block.y2009 .jktList li:nth-child(5) img{
    width: 83%;
}
.year-block.y2009 .jktList li:nth-child(6){
    left: 125%;
    top: 102%;
	width: 60px;
    height: 60px;
}
.year-block.y2009 .jktList li:nth-child(6) span{
	bottom: 30%;
}
.year-block.y2009 .jktList li:nth-child(6):before {
    bottom: auto;
    top: -25px;
    border: 15px solid transparent;
    border-bottom: 40px solid #ffdb67;
    z-index: 0;
}
.year-block.y2009 .phList li:nth-child(1){
    left: 20%;
    top: -71%;
}
.year-block.y2009 .phList li:nth-child(1) img{
    left: 0%;
    bottom: -26px;
    position: relative;
}
.year-block.y2009 .phList li:nth-child(2){
    left: 19%;
    bottom: -134%;
}
.year-block.y2009 .phList li:nth-child(2) img{
    position: relative;
    top: 29px;
}
.year-block.y2009 .phList li:nth-child(3){
    left: 45%;
}
.year-block.y2009 .phList li:nth-child(3) img{
    position: relative;
    top: 29px;
}
.year-block.y2009 .phList li:nth-child(4){
    left: 56%;
    bottom: -179%;
}
.year-block.y2009 .phList li:nth-child(4) img{
    position: relative;
    top: 25px;
}

.year-block.y2009 .phList li:nth-child(5){
    left: 26%;
    top: -74%;
}

.year-block.y2010 .point:nth-of-type(2){
bottom: -92%;
    left: 37%;
}
.year-block.y2010 .point:nth-of-type(2) .balloon:before {
    top: -140px;
    height: 140px;
}
.year-block.y2010 .point:nth-of-type(2) .balloon:after  {
    top: -145px;
}
.year-block.y2010 .point:nth-of-type(2) .ph{
    left: -187px;
    bottom: -300px;
}
.year-block.y2010 .point:nth-of-type(3){
    top: -124%;
    left: 40%;
    width: 314px;
}
.year-block.y2010 .point:nth-of-type(3) .balloon:before {
	bottom: -290px;
    height: 290px;
}
.year-block.y2010 .point:nth-of-type(3) .balloon:after  {
    bottom: -292px;
}
.year-block.y2010 .point:nth-of-type(4){
    bottom: -117%;
    left: 52%;
}
.year-block.y2010 .point:nth-of-type(4) .balloon:before {
    top: -220px;
    height: 220px;
}
.year-block.y2010 .point:nth-of-type(4) .balloon:after {
    top: -227px;
}
.year-block.y2010 .point:nth-of-type(5){
    left: 67%;
    top: -74%;
}
.year-block.y2010 .point:nth-of-type(5) .balloon:before {
bottom: -170px;
    height: 170px;
}
.year-block.y2010 .point:nth-of-type(5) .balloon:after {
    bottom: -172px;
}
.year-block.y2010 .point:nth-of-type(6){
    bottom: -72%;
    left: 71%;
}
.year-block.y2010 .point:nth-of-type(6) .balloon:before {
    top: -155px;
    height: 155px;
}
.year-block.y2010 .point:nth-of-type(6) .balloon:after {
	top: -160px;
}
.year-block.y2010 .point:nth-of-type(7){
    left: 106%;
    top: -94%;
}
.year-block.y2010 .point:nth-of-type(7) .balloon:before {
    bottom: -160px;
    height: 160px;
}
.year-block.y2010 .point:nth-of-type(7) .balloon:after {
    bottom: -165px;
}
.year-block.y2010 .jktList li:nth-child(2) span{
    bottom: -13%;
}
.year-block.y2010 .phList li:nth-child(1) {
    left: -6%;
    top: -200%;
}
.year-block.y2010 .phList li:nth-child(2) {
    left: 9%;
    bottom: -155%;
}
.year-block.y2010 .phList li:nth-child(2) img{
    position: relative;
    top: 17px;
}

.year-block.y2010 .phList li:nth-child(3) {
    left: 40%;
    top: -218%;
}
.year-block.y2010 .phList li:nth-child(3) img{
    position: relative;
    top: 17px;
}


.year-block.y2011 .point:nth-of-type(2){
    left: 37%;
    bottom: -100%;
    width: 229px;
}
.year-block.y2011 .point:nth-of-type(2) .balloon:before {
    top: -155px;
    height: 155px;
}
.year-block.y2011 .point:nth-of-type(2) .balloon:after {
    top: -157px;
}
.year-block.y2011 .point:nth-of-type(3){
left: 104%;
    top: -44%;
    max-width: 200px;
}
.year-block.y2011 .point:nth-of-type(3) .balloon:before {
    bottom: -195px;
    height: 195px;
}
.year-block.y2011 .point:nth-of-type(3) .balloon:after {
    bottom: -203px;
}
.year-block.y2011 .point:nth-of-type(4){
    left: 113%;
    bottom: -134%;
    max-width: 200px;
}
.year-block.y2011 .point:nth-of-type(4) .balloon:before {
    height: 130px;
    top: -130px;
}
.year-block.y2011 .point:nth-of-type(4) .balloon:after {
    top: -137px;
}
.year-block.y2011 .point:nth-of-type(5){
    left: 117%;
    top: 5%;
}
.year-block.y2011 .point:nth-of-type(5) .balloon:before {
    bottom: -140px;
    height: 140px;
}
.year-block.y2011 .point:nth-of-type(5) .balloon:after {
    bottom: -146px;
}
.year-block.y2011 .phList li:nth-child(2) {
    bottom: -196%;
}

.year-block.y2011 .phList li:nth-child(1){
    left: -12%;
    top: -174%;
}
.year-block.y2011 .phList li:nth-child(3){
    left: 36%;
    top: -160%;
}
.year-block.y2011 .phList li:nth-child(4) {
    left: 75%;
    bottom: -201%;
}
.year-block.y2011 .phList li:nth-child(5){
    left: 86%;
    top: -168%;
}
.year-block.y2011 .phList li:nth-child(5) img{
    position: relative;
    top: 20px;
}


.year-block.y2011 .jktList li:nth-child(1){
	left: 60%;
    top: -1%;
}
.year-block.y2011 .jktList li:nth-child(2){
    left: 64%;
    bottom: -16%;
}
.year-block.y2011 .jktList li:nth-child(2) img{
    width: 83%;
}
.year-block.y2011 .jktList li:nth-child(3){
    left: 82%;
    top: 13%;
}
.year-block.y2011 .jktList li:nth-child(3) span{
top: -50%;
}
.year-block.y2011 .jktList li:nth-child(4){
    left: 90%;
    bottom: -29%;
}
.year-block.y2011 .jktList li:nth-child(5){
    top: auto;
    left: 113%;
bottom: -43%;
}
.year-block.y2011 .jktList li:nth-child(5):before {
    bottom: auto;
    top: -30px;
    border: 15px solid transparent;
    border-bottom: 30px solid #ffdb67;
}
.year-block.y2011 .jktList li:nth-child(5) span {
    bottom: -14%;
    top: auto;
}


.year-block.y2012 .point:nth-of-type(2){
	left: 99%;
    bottom: -69%;
}
.year-block.y2012 .point:nth-of-type(2) .balloon:before {
    top: -180px;
    height: 180px;
}
.year-block.y2012 .point:nth-of-type(2) .balloon:after {
    top: -184px;
}
.year-block.y2012 .point:nth-of-type(3){
    top: -66%;
    left: 103%;
}
.year-block.y2012 .jktList li:nth-child(1){
    left: 53%;
    top: -8%;
}
.year-block.y2012 .jktList li:nth-child(1) span{
width: 150px;
    max-width: 200px;
}
.year-block.y2012 .jktList li:nth-child(2){
    left: 66%;
    bottom: 3%;
}
.year-block.y2012 .jktList li:nth-child(2) span{
    bottom: -45%;
    width: 190px;
    max-width: 300px;
}
.year-block.y2012 .jktList li:nth-child(3){
left: 82%;
    top: -28%;
}
.year-block.y2012 .jktList li:nth-child(4){
    left: 97%;
    bottom: 20%;
}
.year-block.y2012 .jktList li:nth-child(5){
left: 105%;
    top: -39%;
}
.year-block.y2012 .jktList li:nth-child(5) span{
    top: -15%;
}

.year-block.y2012 .phList li:nth-child(1){
    left: 34%;
    top: -196%;
}
.year-block.y2012 .phList li:nth-child(2){
    left: 22%;
    bottom: -142%;
}
.year-block.y2012 .phList li:nth-child(2) img{
    position: relative;
    top: 18px;
}
.year-block.y2012 .phList li:nth-child(3) img{

}
.year-block.y2012 .phList li:nth-child(4){
    left: 109%;
    bottom: -116%;
}
.year-block.y2012 .phList li:nth-child(3) img{
    position: relative;
    top: 18px;
}
.year-block.y2013 .point:nth-of-type(2){
    bottom: -111%;
    left: 106%;
}
.year-block.y2013 .phList li:nth-child(1){
    left: 60%;
    top: -107%;
}
.year-block.y2013 .phList li:nth-child(1) img{
    position: relative;
    top: 18px;
}
.year-block.y2013 .jktList li:nth-child(1){

}
.year-block.y2013 .jktList li:nth-child(2){
    left: 72%;
    bottom: -22%;
}
.year-block.y2013 .jktList li:nth-child(2) span{
    bottom: -15%;
    width: 150px;
    max-width: 200px;
}
.year-block.y2013 .jktList li:nth-child(3){
    left: 124%;
    top: 39%;
}
.year-block.y2013 .jktList li:nth-child(3) span{
    top: -40%;
}

.year-block.y2016 .jktList li:nth-child(1) span{
    top: -36%;
}
.year-block.y2016 .jktList li:nth-child(2) span{
    bottom: -37%;
}
.year-block.y2016 .jktList li:nth-child(3) span{
    top: -36%;
}

.year-block.y2021 .point:nth-of-type(2){
left: 43%;
    top: -9%;
}
.year-block.y2021 .point:nth-of-type(3){
    bottom: -86%;
    left: 50%;
}
.year-block.y2021 .jktList li:nth-child(1){
    left: 90%;
    top: 17%;
}
.year-block.y2021 .phList li:nth-child(1){
    left: 36%;
    top: -101%;
}

.year-block.y2022 .phList li:nth-child(1){
    left: 36%;
    top: -101%;
}

.year-block.y2023{
    z-index: 1;
}
.year-block.y2023 .phList li:nth-child(1){
    left: 36%;
    top: -73%;
}
.year-block.y2023 .jktList li:nth-child(2) span{
    bottom: -15%;
}
.year-block.y2023 .jktList li:nth-child(2) {
    left: 73%;
    bottom: -21%;
}

.year-block.y2025 .jktList li:nth-child(1){
    top: -7%;
}
.year-block.y2025 .jktList li:nth-child(2){
    bottom: -7%;
}
.year-block.y2025 .phList li:nth-child(1){
left: 3%;
    top: -81%;
}


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

.liveList li a:hover{
    transform: translateY(3px);
}

}

/* MOVIE */

.section--movie{
    overflow: hidden;
    background-color: #000;
    background-image: url(/static/funkymonkeybabys/official/feature/20th_anniversary/images/bg_movie_v5ZimPrY.png);
    background-position: top;
    background-size: 100%;
    color: #fff;
}
.section--movie .section--box_inner{
    margin: 0 auto;
}
.section--movie .section-tit{
    margin: 0 10% 90vh;
    position: relative;
}
.section--movie .section-tit .list__more{
    display: inline-block;
    position: absolute;
    right: 0;
}
.section--movie .section-tit .list__more a{
    color: #fff;
    border: 2px solid #fff;
}
.section--movie .content_area{
    padding: 0 40px;
    margin: 0 auto;
}

.section--movie .slick-list{
  overflow: visible;
}
.section--movie .slick-list .slick-item{
    padding: 0 10px;
}

.section--movie .slick-item .tit {
    font-size: 13px;
    text-align: center;
    margin: 20px auto 0;
    color: #fff;
}

.section--movie .slick-prev, .slick-next{
  z-index:100;.section--movie 
}
.section--movie .slick-prev:before, .section--movie .slick-next:before{
  color:#75E1D6;
}
.section--movie .mov {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.section--movie .mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* GOODS */

.section--goods .section-tit .list__more{
    display: inline-block;
    position: absolute;
    right: 0;
}
.section--goods .goodsList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 30px;
}
.section--goods .goodsList li{
    width: 30%;
}
.section--goods .goodsList li a{
    display: block;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
}
.section--goods .goodsList li a img{
  height: auto;
  transition: transform .6s ease; 
}
.section--goods .goodsList:nth-of-type(even) li:nth-child(1){
    width: 60%;
}
.section--goods .goodsList:nth-of-type(even) li:nth-child(2){
    width: 27%;
}
.section--goods .goodsList:nth-of-type(even) li:nth-child(2) a{

}

.section--discography{
  background: #efefef;
}
.section--discography .section-tit{
    margin: 0 10% 50px;
}
.section--discography .section--box_inner{
  margin: 0 auto;
  overflow: hidden;
}
.section--discography .linkArea li .songBtn a{
font-size: 12px;
    position: relative;
    line-height: 1.2;
    min-width: auto;
    margin: 0 auto;
    padding: 12px 12px 12px 30px;
    font-weight: bold;
    letter-spacing: 0.02em;
    font-family: "Helvetica Neue", "arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    display: block;
    background: #000;
    width: 100%;
    color: #fff;
    text-align: center;
    border: 2px solid #000;
    border-radius: 999px;
}
.section--discography .linkArea li .songBtn a .icon{
    display: block;
    width: 10px;
    height: 15px;
    position: absolute;
    left: 12px;
    top: 11px;
}
.imgArea{
  display: flex;
  animation: scroll 60s linear infinite;
  will-change: transform;
width: max-content;
}
.section--discography .section-tit .linkArea .list__more a{
    background: transparent;
    color: #000;
}
.column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 600px;
}
.column img {
  pointer-events: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* 1列目は画像2枚（大きめ） */
.column.big img {
  width: 304px;
  object-fit: cover;
}

/* 2列目・3列目は画像3枚（小さめ） */
.column.small img {
  width: 202.8px;
  object-fit: cover;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--scroll-width))); }
}

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

.section--discography .linkArea{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    width:540px;
    position: absolute;
    right: 0;
    top: 5px;
}
.section--discography .section-tit .linkArea .list__more {
	display: inline-block;
    position: relative;
    width: 100%;
    top: -5px;
}

.section--discography .linkArea li{
 
}
.section--discography .linkArea li:nth-child(1){

}
.section--discography .linkArea li:nth-child(2){

}
.section--discography .linkArea li:nth-child(3){

}
.section--discography .linkArea li .songBtn a:hover{
    background: none;
    border: 2px solid;
    color: #000;
}
.section--discography .linkArea li .songBtn a:hover .icon img{
    filter: invert(1);
}
.section--discography .section-tit .linkArea .list__more a:hover{

}

}


@media screen and (min-width: 1px) and (max-width: 960px) {
.list--schedule .btn a {
    max-width: 100%;
    width: 350px;
    min-width: auto;
    font-size: 14px;
    margin: 0 auto;
    display: block;
}
.general_release_wrap {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #dedede;
}
.sold_badge {
    max-width: 210px;
}

.list--schedule {
    margin-bottom: 30px;
}
.list--schedule li .schedule_mid .contact {
    width: 100%;
    margin-bottom: 6px;
}

.general_release {
    padding: 0;
    text-align: center;
    font-size: 14px;
    margin-bottom: 8px;
}
.section--discography .section-tit .linkArea {
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
    position: absolute;
    right: 11%;
    top: 45px;
}
.section--discography .section-tit .linkArea .list__more a {
    background: none;
    color: #000;
    width: 100px;
    font-size: 13px;
    padding: 12px;
}
.section--discography .section-tit .linkArea li:nth-child(1){
}
.section--discography .section-tit .linkArea li:nth-child(2){
    display: inline-block;
        margin: 0 0 0 5px;
}
.section--discography .section-tit .linkArea li:nth-child(1) a,
.section--discography .section-tit .linkArea li:nth-child(2) a{
        width: 175px;
        font-size: 10px;
        padding: 8px 8px 8px 20px;
}
.section--discography .section-tit .linkArea li:nth-child(3){
display: inline-block;
    position: absolute;
    right: 0;
    top: -48px;
}
.section--discography .linkArea li .songBtn a .icon {
    display: block;
    width: 8px;
    height: 13px;
    position: absolute;
    left: 12px;
    top: 7px;
}

}




@media screen and (min-width: 961px) {
.section--goods .goodsList li a:hover img{
  transform: scale(1.1); 
}
.resale_list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.resale_list li {
    width: 49%;
    padding: 15px;
    background: #f2f3f3;
    display: flex;
    margin-bottom: 16px;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 13px;
}

.resale_list li.btn_box .ticket_btn_wrap {
    width: 100%;
}

.resale_list .ticket_btn_wrap {
width: 28%;
}

.resale_list .ticket_btn_wrap.pc_btn {
    width: 100%;
}

.resale_list .ticket_btn_wrap .qr {
    line-height: 0;
}

.resale_list .resale_tit {
width: 72%;
}

.resale_list .schedule_tit_ticket {
font-size: 13px;
text-align: left;
margin: 0;
}

.ticket_box .resale_list .qr_txt {
    font-size: 12px;
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
}

.resale_list li.btn_box {
    display: block;
}

.resale_list li.btn_box .resale_tit {
    width: 100%;
    margin-bottom: 8px;
}

.resale_list li.btn_box .btn a {
    padding: 15px;
    font-size: 14px;
}

}


@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
.wrap {
    min-height: 100vh;
    min-height: 100dvh;
}
.mask-wrapper {
        width: 100vw;
        height: 45vw;
}
.flow-inner img {
        width: 180px;
        height: 128px;
}
section {
    padding: 80px 0;
}


.btn a {
    width: 100%;
    min-width: auto;
    padding: 15px 10px;
    font-size: 14px;
    letter-spacing: 0.02em;
}

  footer {
    padding: 40px 0;
    opacity: 1 !important;;
  }
  footer .inner {
  }
  footer .inner .link--fc {
    width: 70%;
    margin-bottom: 20px;
  }
  footer .inner .link--tour{
    margin-bottom: 20px;
  }
  footer .link--official {
    width: 70%;
    padding: 0 10px;
    margin-bottom: 20px;
}
  footer .inner .list--sub-bnr {
    width: 100%;
  }
  footer .copyright {
    font-size: 10px;
    color: #000000;
  }
  


.switch_bg.start {
    animation: switch 0.75s linear forwards ;
}
.foot_list {
    display: flex;
    width: 100%;
    transform: rotate(21deg) scale(1.15);
}
.tour_tit_sub {
    font-size: 17px;
}
.tour_tit {
    font-size: 26px;
}
.tour_tit_wrap::before {
    width: 28px;
    top: 27px;
    transform: translateX(115px) rotate(173deg);
}


.section-tit {
    font-size: 28px;
    margin-bottom: 25px;
    width: 100%;
}

  .block-tit {
    font-size: 5vw;
    line-height: 1.4;
  }
  .section--list, .section--detail {
  }
  .section--detail {
    width: 100%;
  }
  .detail__btn {
    margin-left: 0;
    margin-top: 4em;
    text-align: center;
  }
  .detail__btn a {
    font-size: 4.5vw;
  }
  table tr {
    display: block;
  }
  table tr th {
    font-size: 14px;
    padding: 10px 5% 10px 5%;
    width: 100%;
    border-right: none;
    text-align: left;
    display: block;
    background: rgba(0, 0, 0, 0.1);
  }
  table tr td {
    font-size: 14px;
    display: block;
    padding: 10px 5% 10px 5%;
    line-height: 1.4;
  }
  table tr td span {
    font-size: 10px;
    padding: 0 0 0 1.0em;
    text-indent: -1.0em;
    font-weight: normal;
  }
  table tr td span.size_icon {
    width: 27px;
    letter-spacing: 0;
    margin-right: 2px;
  }
  


  .txtbnr {
      width: 80%;
      border-radius: 8px;
      padding: 20px;
  }

  .txtbnr::before {
      content: '';
      display: block;
      width: 10px;
      height: 10px;
      position: absolute;
      top: calc(50% - 5px);
      right: 14px;
      border-top: 3px solid;
      border-right: 3px solid;
      transform: rotate(45deg);
  }

  .txtbnr .sp .sml {
      font-size: 13px;
      display: inline-block;
      margin-top: 5px;
  }

  .block--attention .inner .block-tit {
    font-size: 5.2vw;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .block--attention .inner .block-tit span {
    font-size: 15px;
    text-align: left;
    margin-top: 15px;
    line-height: 1.7;
  }
  .block--attention .inner .txt {
    font-size: 13px;
  }
  .block--attention .inner .tit {
    font-size: 15px;
    margin: 20px 0 10px;
    padding-top: 20px;
  }
  .block--attention .inner .txt.pop_center {
      text-align: left;
      font-size: 1em;
  }
  .block--attention .inner .txt--sub {
      line-height: 1.6;
      text-align: left;
      font-size: 13px;
  }

  .block--attention .inner .list--app {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .block--attention .inner .list--app li {
    width: 79%;
  }
  .block--attention .inner .list--app li:last-child {
    width: 80%;
  }

  body:not(.page--home) main {
      padding-top: 0px;
  }

  .section--top {
  }
.section--top .logo {
    width: 40vh;
    max-width: 62vw;
}
  
  .section--top .logo_main {
      margin: 0;
  }
  .section--bnr.section--box {
    padding-top: 85px;
    padding-bottom: 65px;
  }

  .section--top .block--bnr {
    top: 110vh;
  }
  .section--top .block--bnr .list--bnr li {
    -webkit-transform: translateX(20%);
            transform: translateX(20%);
  }
  .section--top .block--bnr .list--bnr li a {
    font-size: 4vw;
    padding: 10px 20px;
  }

  .section--top .block--bnr .list--bnr li:first-child.delighter.started {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: .4s;
    transition: .4s;
  }
  .section--top .block--bnr .list--bnr li:nth-child(2).delighter.started {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: .4s;
    transition: .4s;
  }
.section--box {
    margin: 0 auto 0px auto;
    padding: 55px 0;
}

.section--box_inner {
    position: relative;
    margin: 0 8%;
}
.section--topics .section--box_inner {
    display: block;
    flex-wrap: wrap;
}
.section--topics .section--box_inner .section-tit {
        width: 100%;
        margin: 0 auto 50px;
height: auto;
}
.section--topics .list--information li {
    margin-bottom: 45px;
}
.section--topics .section--box_inner .list__more {
    position: absolute;
    bottom: auto;
    left: auto;
    right: 0;
    top: 0;
}

.list__more a, .detail__btn a {
        width: 100px;
        font-size: 13px;
        padding: 12px;
}

.section--topics .section--box_inner .list--information {
    width: 100%;
}
  .list--information li {
    margin-bottom: 7px;
  }

.list--information li a {
    padding: 15px 15px;
}

.list--information li a .date {
    font-size: 12px;
    margin-bottom: 2px;
}
.list--information li a .tit {
    font-size: 13px;
    width: 100%;
}

  .section--info.page--detail .txt {
      font-size: 13px;
      font-weight: 500;
  }

  .section--info.page--detail .news_wrap {
      padding: 25px 15px;
      border-radius: 13px;
      box-shadow: 1px 1px 0px #000000;
      width: 100%;
  }

  .page--home .wrap {
    padding-top: 0;
  }


.section--info.page--detail .date {
    font-size: 13px;
    margin-bottom: 1px;
}
.section--info.page--detail .tit {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.section--biography {
    padding: 80px 0;
}
.section--biography .section-tit{
    padding: 0 0 0 8%;
}
.section--biography .logo{
        padding: 0 0 10px 20px;
}
.section--biography .logo img {
    width: 300px;
}

.timeline {
    padding: 400px 0 300px 0;
}
.year-block.y2006 .phList li:nth-child(1) {
    left: -94%;
    top: -105%;
}

.popInBox {
    padding: 20px;
}
.popInBox .tit {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    margin: 0 0 20px 0;
}
.schedule li {
    border-bottom: 1px solid #ddd;
    font-size: 11px;
    margin: 0 0 9px 0;
    padding: 0 0 5px 0;
    font-weight: bold;
}
.section--movie .section-tit {
    margin: 0 0 20vh 8%;
    position: relative;
}
.section--movie .section-tit .list__more {
    display: inline-block;
    position: absolute;
    right: 13%;
}
.section--goods .section-tit .list__more {
    display: inline-block;
    position: absolute;
    right: 0;
    top: -5px;
}
.section--discography .section--box_inner {
    padding: 5px 0 0 0;
}
.section--discography .section-tit {
    margin: 0 0 80px 8%;
}
.section--discography .section-tit .list__more {
    display: inline-block;
}




}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  .list__more {
    -webkit-transition: .2s;
    transition: .2s;
  }

  .detail__btn {
    -webkit-transition: .2s;
    transition: .2s;
  }
  .detail__btn a:hover {
    color: #ffd100;
  }
  .detail__btn a:hover::after {
    background-color: #ffd100;
    right: 6px;
    -webkit-transition: .2s;
    transition: .2s;
  }
  a {
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }
  a:hover {
  }



  /* common
------------------------------ */

  .section--list {
    width: 90%;
  }
  .section--detail {
  }
  .btn--main {
    position: relative;
    overflow: hidden;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .btn--main::before {
    content: "";
    display: block;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: -100%;
    background: #ffd100;
    -webkit-transition: .2s;
    transition: .2s;
    z-index: 1;
  }
  .btn--main:hover {
    color: #011688;
  }
  .btn--main span {
    position: relative;
    z-index: 2;
  }
  .btn--main:hover::before {
    left: 0;
  }


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



  /* footer
------------------------------ */
  .footer .copyright {
    font-size: 10px;
    color: #000000;
  }
  .footer .list--sub-bnr li:hover {
    border: 1px solid #ffd100;
  }
  .footer .list--sub-bnr li a:hover {
    opacity: 1;
  }
  footer a:hover {
    opacity: 0.5;
  }
  /* list
------------------------------ */

  .list--information li a:hover {
       opacity: 0.8;
  }
  /* page--home
------------------------------ */

  .block--attention .inner {
    max-width: 990px;
  }
  .block--attention .close:hover {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: .2s;
    transition: .2s;
  }
  .section--top .logo {

  }
  .section--top .block--bnr .list--bnr li a {
    position: relative;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .section--top .block--bnr .list--bnr li a:hover::before {
    right: 0;
  }
  .section--top .block--bnr .list--bnr li a::before {
    content: "";
    display: block;
    background: #ffd100;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    -webkit-transition: .2s;
    transition: .2s;
  }
  .section--top .block--bnr .list--bnr li a span {
    position: relative;
    z-index: 2;
  }
  .section--box {
    margin: 0 auto;
  }
  /* section--info
------------------------------ */
  .section--detail.section--info.page--detail {
  }
  /* .page--live
------------------------------ */
  .page--live .block-tit {
    margin: 0 0 20px;
  }
  .page--live .detail__btn {
    margin-left: calc(8% + 30px);
  }
  .block--information {
    max-width: 1100px;
    padding: 0 0 0 calc(8% + 30px);
  }
  .page--live .section-tit {
    left: -6px;
  }
  /* page--ticket
------------------------------ */
  .page--ticket .section-tit {
    left: -1px;
  }
  .page--ticket .detail__btn {
    margin-left: calc(8% + 30px);
  }
  .page--ticket.section--detail .block--ticket .ticket-application .link--funky .flex .link--funky__fc .btn a {
    min-width: 365px;
  }
  .block--ticket {
    max-width: 1100px;
    padding: 0 0 0 calc(8% + 30px);
  }
  .impossible.btn a {
    background: #999;
    pointer-events: none;
    color: #FFFFFF;
  }



  .list--schedule.pre {
      border-top: 1px solid #8190e2;
      margin-bottom: 60px;
      max-width: 1000px;
  }

  .list--schedule.pre li .schedule_left {
      width: 200px;
      border-right: 1px solid;
      padding-right: 4%;
  }

  .list--schedule.pre li .date {
      text-align: center;
      font-size: 16px;
      letter-spacing: 1px;
      margin-bottom: 8px;
  }

  .list--schedule.pre li .schedule_mid {
      width: auto;
      padding-left: 4%;
  }

  .list--schedule.pre li .place {
      font-size: 21px;
  }


}


@media screen and (max-width: 700px){
  .goodsList {
    padding: 0 0 0px;
  }
.goodsList > a {
    width: 100%;
    margin: 0 0 20px;
}

  .goodsList > a.goods_red {
      box-shadow: 2px 2px 0px #fe5538;
  }


  .goodsList > a .goodsName .goods_limited {
      position: relative;
      margin-right: 5px;
      padding: 1px 4px;
      vertical-align: -2px;
  }

.goodsList > a.goods_new::before {
    top: -10px;
    left: 5px;
    width: 60px;
    height: 26px;
    line-height: 24px;
    font-size: 14px;
}

.goodsList > a.goods_new::after {
    top: -9px;
}

  .goodsDetailspopup {
    padding: 5%;
    font-size: 13px;
  }
  #cboxClose {
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
 }
 .goodsDetailspopup .popTit {
    font-size: 15px;
    padding: 0 30px 5px 0;
    margin-bottom: 20px;
    border-width: 2px;
  }
  .goodsDetailspopup .goodsImage {
    margin: 0 auto 20px;
  }
  .goodsDetailspopup .detailCell{
    width: 100%;
    border: 1px solid;
    border-bottom: none;
  }
  .goodsDetailspopup .detailCell th {
    width: 100%;
    font-size: 13px;
    text-align: center;
    padding: 0;
    border-right: none;
    vertical-align: middle;
    background: transparent;
    text-align: left;
  }
  .goodsDetailspopup .detailCell td {
    padding: 0;
    font-size: 12px;
  }
  .goodsDetailspopup .detailCell table {
    margin-bottom: 0;
  }
  #cboxNext, #cboxPrevious {
    margin-top: -20px;
    width: 18px;
    height: 40px;
    right: 5px;
  }
  #cboxPrevious {
      left: 5px;
  }

  .page--goods .online_shop .ticket_contact_inner {
      margin-bottom: 13px;
  }

  .section--goods .ticket_contact .contact_txt {
      margin-bottom: 12px;
  }
 
 .contact_box {
    font-size: 1em;
    padding: 12px;
    margin-bottom: 12px;
}
.ticket_contact .contact_box .ticket_type {
    font-size: 0.78em;
}
 
    .subtit {
      font-size: 18px;
      font-weight: bold;
      margin-bottom:20px;
  }

  .btn.btn_archive {
    margin-bottom: 30px;
    margin-top: 30px;
  }

.btn_other a {
    font-size: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 2px 2px 0 #000;
    border-radius: 30px;
    text-align: center;
}

}



/* tablet
============================== */
@media screen and (min-width: 600px) and (max-width: 960px) {
  html, body {
    font-size: 16px;
  }
  /* common
  ------------------------------ */
  .btn a {
    max-width: 50%;
  }


  /* typography
  ------------------------------ */
  .block-tit {
    font-size: 4vw;
  }
  /* footer
  ------------------------------ */
  footer .inner .link--fc {
    width: 40%;
    margin-bottom: 40px;
  }
  footer .inner .list--sub-bnr {
    width: 50%;
  }
  footer .inner .copyright {
    font-size: 14px;
  }
  /* page--home
  ------------------------------ */
  .page--home .wrap {
    padding-bottom: 300px;
  }

  .block--attention .inner .block-tit {
    font-size: 4vw;
  }
  .block--attention .inner .block-tit span {
    font-size: 2.5vw;
  }
  .block--attention .inner .txt {
    font-size: 16px;
  }
  .block--attention .inner .tit {
    font-size: 3vw;
  }
  .block--attention .inner .list--app {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .block--attention .inner .list--app li {
    width: 46%;
  }
  .block--attention .inner .list--app li:last-child {
    margin-right: 0;
    width: 40%;
  }

  .list__more a::after, .detail__btn a::after {
    width: 15px;
    height: 15px;
    top: 14px;
    right: 10px;
  }
  .section--top {
  }
  .section--top .logo {

  }


  .section--top .block--bnr .list--bnr li a {
    font-size: 14px;
  }

  .schedule_tit_ticket {
  font-size: 16px;
  margin-bottom: 10px;
  }

  .ticket_contact .contact_txt {
  margin-bottom: 20px;
  }

  .resale .schedule_tit_ticket {
  font-size: 13px;
  }

  .ticket_btn_wrap {
  margin-bottom: 30px;
  }

  .resale_list li:not(:last-child) {
  margin-bottom: 30px;
  }


}





.special--box {
    margin-bottom: 60px;
    max-width: 1200px;
}

.special--box:last-child {
    margin-bottom: 0;
}

.special_tit {
    font-size: 23px;
    font-weight: bold;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    border-bottom: 2px solid #e52e17;
    padding-bottom: 10px;
}

.special_tit span {
    background: #e52e17;
    color: #fff;
    font-size: 0.85em;
    padding: 4px 10px;
    border-radius: 7px;
    margin-right: 15px;
    letter-spacing: 0.05em;
    box-shadow: 2px 2px 0 #000;
    border: 1px solid #000;
    vertical-align: 3px;
}

.special_box_tit {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
    text-align: center;
    text-shadow: 2px 2px 0 #00000059;
    color: #fff;
}

.special_box_tit span {
    display: block;
    font-size: 20px;
    letter-spacing: 0.01em;
}

.special_box_tit_sub {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 20px;
}

.special_tit_img {
    width: 80%;
    margin: 0 auto 25px;
    line-height: 0;
}

#special .ticket_contact .contact_txt {
    margin-bottom: 20px;
}
#special .ticket_contact .contact_txt:last-child {
    margin-bottom: 0;
}

.fc_logo {
    line-height: 0;
    width: 70%;
    margin: 0 auto 5px;
}

.special_box_tit .fc_logo_solo {
    display: inline-block;
    width: 275px;
    line-height: 0;
    margin: 0 20px 0 0;
    vertical-align: -6px;
}

.special_box_inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.special_box_inner:last-child {
    margin-bottom: 0;
}

.special_box_inner .special_box_inner_txt {
    width: 64%;
    line-height: 1.7;
    font-size: 14px;
}
.special_box_inner_txt.special_box_inner_txt_w {
    width: 100%;
    border-top: 2px dotted;
    padding-top: 22px;
}
.special_box_inner .special_box_inner_img {
    width: 32%;
    line-height: 0;
    height: 100%;
    position: relative;
}

.special_box_inner .special_box_inner_img > img {
    border-radius: 10px;
}
.special_box_inner .special_box_inner_img.ph_shadow > img {
    box-shadow: 0 0 10px #00000024;
}

.kuji_span {
    border: 2px solid #000;
    padding: 10px 20px;
    width: 90%;
    text-align: center;
}

.special_box_inner_img.ph_shadow {
}

.special_dl {
    padding: 17px;
    border: 1px solid;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    font-size: 15px;
    letter-spacing: 0.1em;
}

.special_dl:last-child {
    margin-bottom: 0;
}

.special_dl dt {
    width: 88px;
    border-right: 1px solid;
    font-size: 14px;
    font-weight: bold;
}

.special_dl dd {
    width: calc(100% - 88px);
    padding-left: 20px;
}

.notice li {
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 5px;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.notice li .fa {
    text-indent: 0;
    color: #e52e17;
}

.notice li:last-child {
    margin-bottom: 0;
}

.special_qr.pc {
    text-align: center;
    border-top: 1px dashed;
    padding-top: 20px;
}

.special_qr .qr_txt {
    font-size: 15px;
    margin-bottom: 15px;
}

.special_qr img {
    width: 180px;
}

.sp_fclist .qr_txt.pc {
    font-size: 12px;
    text-align: left;
    text-indent: -1em;
    padding-left: 1em;
}

.sp_fclist .schedule_tit_ticket {
    border-left: 5px solid #e52e17;
    padding-left: 8px;
    line-height: 1.4;
    margin-bottom: 5px;
}

.btn_desc {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1em;
}

.prize_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 10px;
}

.prize_list > li {
    width: 49%;
    line-height: 0;
    margin-bottom: 15px;
    position: relative;
}

.prize_limit {
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 90px;
    background: #fe5538;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    letter-spacing: 0;
    color: #fff;
    border-radius: 50%;
    top: -12px;
    right: -12px;
    font-weight: 900;
    box-shadow: 1px 1px 0 #000;
    border: 1px solid #000;
}

.prize_limit .sml {
    font-size: 0.7em;
    display: inline-block;
    margin-left: 2px;
    padding-top: 3px;
}

.entry_kuji {
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    border: 3px solid;
    border-radius: 50px;
    padding: 15px;
}

.sticker_desc {
    line-height: 1.4;
    background: #fff;
    display: block;
    position: absolute;
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 9px;
    top: -60px;
    right: -58px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.03em;
    box-shadow: 2px 2px 0 #000;
}

.sticker_desc::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    bottom: -4px;
    transform: skew(-46deg, 44deg);
    box-shadow: 2px 1px 0 #000;
    z-index: 0;
    left: 33px;
}

.iframe_wrap {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    margin-bottom: 20px;
}

.iframe_wrap iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

.txt_desc {
    background: #000000;
    color: #fff;
    display: inline-block;
    padding: 0.05em 1em;
    font-size: 0.85em;
    border-radius: 3em;
    margin-right: 0.5em;
}



@media screen and (min-width: 961px) {
  .resale_list.sp_fclist li:nth-last-child(-n + 2) {
      margin-bottom: 0;
  }
}

@media screen and (min-width: 1px) and (max-width: 960px) {

.special_tit {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    line-height: 1.5;
}

.special_tit span {
    border-radius: 5px;
    margin-bottom: 5px;
    display: inline-block;
    padding: 2px 10px;
    box-shadow: 1px 1px 0 #000;
}

.special--box {
    margin-bottom: 30px;
}


.special_box_tit {
    font-size: 21px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    text-shadow: 1px 1px 0 #0000001c;
}

.special_box_tit span {
    display: block;
    font-size: 18px;
}

.special_box_tit_sub {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1.5;
}

.special_tit_img {
    width: 100%;
    margin-bottom: 15px;
    max-width: 400px;
}

.special_dl dt {
    width: 100%;
    border: none;
    margin-bottom: 10px;
    border-left: 5px solid;
    padding-left: 7px;
    line-height: 1.2;
    font-size: 13px;
}

.special_dl dd {
    width: 100%;
    padding-left: 0;
}

.special_dl {
    padding: 12px;
}

.notice li {
    margin-bottom: 5px;
    font-size: 12px;
}

#special .ticket_contact .contact_txt {
    margin-bottom: 13px;
}

.special_box_inner .special_box_inner_txt {
    width: 100%;
    margin-bottom: 20px;
    line-height: 1.6;
}

.special_box_inner .special_box_inner_img {
    width: 100%;
    line-height: 0;
}

.special_box_inner_txt.special_box_inner_txt_w {
    padding-top: 15px;
}

.special_box_inner {
    margin-bottom: 20px;
}

.sp_fclist .schedule_tit_ticket {
    border: none;
}

.fc_logo {
    width: 100%;
    max-width: 340px;
}

.special_box_inner .special_box_inner_txt:last-child {
    margin-bottom: 0;
}

.special_box_inner .special_box_inner_img.ph_shadow {
    width: 75%;
    margin: 0 auto;
}

#special .btn {
    margin-bottom: 20px;
}

.kuji_span {
    width: 100%;
    font-size: 13px;
    padding: 12px;
}

.prize_list > li {
    width: 100%;
}

.prize_limit {
    width: 65px;
    height: 65px;
    font-size: 17px;
}

.prize_list > li:last-child {
    margin-bottom: 0;
}

.prize_list {
    margin-bottom: 20px;
}

.entry_kuji {
    font-size: 14px;
    padding: 13px;
    margin-bottom: 20px;
    border-width: 2px;
}

.special_box_tit .fc_logo_solo {
    width: 200px;
    display: block;
    margin: 0 auto 7px;
    padding-top: 12px;
}

.sticker_desc {
    position: relative;
    top: 0;
    left: 0;
    width: 240px;
    text-align: center;
    margin: 0 auto 13px;
    box-shadow: 1px 1px 0 #000;
    padding: 8px 10px;
}

.sticker_desc::before {
    left: 116px;
}

.iframe_wrap {
    padding-bottom: 100%;
}



}


{# 20230606 #}

.bnr_list {
    display: block;
}

.bnr_list li {
    margin-bottom: 20px;
}

.bnr_list li:last-child {
    margin-bottom: 0;
}

.bnr_list li a.bnr_half {
    padding: 22px 25px;
}

.bnr_list li.bnr_bus {
    background: #fff6e4;
}

.bnr_list li.bnr_bus a {
    color: #000000;
}


.list--schedule li {
    position: relative;
}

.ticket_box > dt .schedule_tit .add_ticket {
    background: #fff;
    color: #e52e17;
    font-size: 0.8em;
    letter-spacing: 0.02em;
    padding: 3px 13px;
    border-radius: 30px;
    margin-right: 10px;
}


.qr_box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e52e17;
    padding: 20px;
    color: #fff;
    margin-bottom: 25px;
}

.qr_box .qr_txt {
    font-size: 16px;
    width: 100%;
    text-align: center;
    font-weight: 600;
}

.qr_box .qr_img {
    width: 150px;
}

.btn.anker a {
    border-radius: 15px;
}

.btn.anker a .add_ticket {
    background: #fff;
    color: #e52e17;
    font-size: 0.95em;
    letter-spacing: 0.02em;
    padding: 4px 13px;
    border-radius: 30px;
    margin-right: 5px;
}

.btn.anker a:hover .add_ticket {
    color: #00a2df;
}

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

.list--schedule li.sch_add::before {
    content: '追加公演';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    left: -15px;
    top: 7px;
    z-index: 10;
    font-weight: bold;
    background: #00a2df;
    color: #fff;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 0 #000;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 5px 10px;
}

}

@media screen and (min-width: 1px) and (max-width: 960px) {

.bnr_list {
    max-width: 350px;
}

.bnr_list li {
    margin-bottom: 15px;
}

.bnr_list li a.bnr_half {
    padding: 16px 18px;
}

.section--bnr.section--box {
    padding-bottom: 20px;
}

.ticket_box > dt .schedule_tit .add_ticket {
    font-size: 0.85em;
    padding: 1px 12px;
    margin: 0 0 5px 0;
    display: inline-block;
    letter-spacing: 0.08em;
}

.sch_add_icon {
    font-weight: bold;
    background: #00a2df;
    color: #fff;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 0 #000;
    border: 1px solid #000;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 13px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    margin-top: -18px;
}

}



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

.p_ticket {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
}

}

@media screen and (min-width: 1px) and (max-width: 960px) {
.p_ticket {
    margin-top: 15px;
    font-size: 11px;
    font-weight: bold;
}
}



