@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;
    width: 100%;
}

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;
    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;
}
section{
    padding: 5vw 0;
}
.bgBox {
    width: 100%;
    height: 100%;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.6s;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}
.bg {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 40px;
    box-sizing: border-box;
    opacity: 1;
}
.bg01 {
    opacity: 1;
    background:linear-gradient(to bottom, #e1def1, #9E97D0);
}


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;
    transform: translateY(0);
}
.loading{
    background:linear-gradient(to bottom, #e1def1, #9E97D0);
    width:100%;
    height:100vh;
    position:fixed;
    left:0;
    top:0;
    z-index:999;
    pointer-events:none;
    transition:
        opacity 1s ease,
        visibility 1s ease;
    visibility: visible;
}


.loaded .loading{
    opacity: 0;
    visibility: hidden;
    transition-delay: .8s;
}

.loading img{
    width: 150px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    opacity: 0;
    will-change: transform, opacity, filter;
    animation: logoBlurIn 4s ease forwards;
}



@keyframes logoBlurIn{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

  /* 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 {
    outline-offset: 4px;
    position: fixed;
    right: 30px;
    box-sizing: border-box;
    top: 70px;
    z-index: 999;
    width: auto;
    transform: scale(0);
    transform-origin: right top;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 15px;
    -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
}

#gNav.open {
    transform: none;
}
#gNav .gnavMenu {
    margin: 0 auto 20px;
}
#gNav .gnavMenu.menu_hide {
    display: none;
}

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

#gNav a {
    color:#463c8d;
    text-align: center;
    text-decoration: none;
    margin: 0 auto 10px;
    font-size: 18px;
    width: auto;
    letter-spacing: 0.02em;
    line-height: 1;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
    text-align: center;
    display: block;
}

#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%;
    text-align: center;
}

#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% + 5px);
}

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


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

#menuButton.active span:nth-child(3) { 
	transform: translateY(-12px) 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: #fff;
    width: 40px;
    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);
}
.loading {
    height: 100dvh;
}
.loading img {
    width: 100px;
}
.frame {
    border-width: 12px;
}
.frame.frame02 {
    border-radius: 30px;
}
header.header {
        top: 5px;
        right: 5px;
}
#gNav .nav--sns{
    position: initial;
    width: auto;
    transform: none;
    margin: 10px 0 0 0;
}
#gNav .nav--sns li{
    margin: 0 2px;
}


.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;
}
.nav--sns li {

}
#gNav .gnavMenu li a{
        font-size: 17px;
        background: none;
        height: auto;
        margin: 0;
        text-align: center;
        display: block;
        margin: 0 0 10px 0;
}
#gNav a {
        font-size: 17px;
        background: none;
        height: auto;
        margin: 0;
}

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

#menuButton {

}

#menuButton span {

}

}



.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;
    max-width: 200px;
    padding: 10px;
    font-size: 13px;
    border-radius: 60px;
    line-height: 1.5;
    position: relative;
    top: 0;
    border: none;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, .2));
    background: #474078;
    color: #fff;
    margin: auto;
    display: block;
}

.btn a:hover {
    top: 3px;
}
.btn.sub {
    text-align: center;
    margin: 0 auto 10px;
}
.btn.sub a{
    background: #fff;
    color: #474078;
}

.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: 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1;
    margin-bottom: 2rem;
    font-style: normal;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 300;
}
#history .section-tit{

}

.section-tit .tit_txt {

}
.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;
}
.detail__btn, .list__more {
  letter-spacing: 0.02em;
}

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

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


footer {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.3;
    width: 100%;
    padding:60px 40px 40px;
}
footer .logo{
    width: 300px;
    margin: 0 auto 30px;
    line-height: 0;
}
footer .logo img{

}
footer .copyright {
    font-size: 12px;
    text-align: center;
    color: #fff;
    font-family: 'Times New Roman', 'Playfair Display', serif;
    font-style: italic;
}
footer .nav--support {
  margin-bottom: 30px;
}
footer .nav--support li {
  display: inline-block;
}
footer .nav--support li a {
  padding: 0 15px;
  color: #999;
}
footer .nav--support li a:hover {
  opacity: 0.5;
}
footer .nav--sns {
  margin: 0 0 30px;
}
footer .nav--sns li {
  display: inline-block;
}
footer .nav--sns li a {
  padding: 0 15px;
  color: #999;
  font-size: 20px;
}
footer .nav--sns li a:hover {
  opacity: 0.5;
}

.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%;
}

.section--top {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100vh;
}
/*
.section--top:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #fff;
    position: fixed;
    right: 100px;
    z-index: 0;
    top: 0;
    pointer-events: none;
}
*/
.logo10th{
    position: absolute;
    left: 1%;
    top: 2%;
    width: 80px;
    line-height: 0;
    z-index: 6;
}
.mainimg{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 45vw;
    -webkit-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(3px 3px 15px rgba(0, 0, 0, 0.2));
	z-index: 5;
}

.slider{
  margin: 0 auto;
    width: 100%;
    z-index: 4;
    opacity: 0.4;
}

.slider .slick-slide{
  margin: 0 10px;
}

.slider img{
    width: 100%;
    display: block;
    padding: 9px;
    overflow: hidden;
    background: rgba(126, 104, 165, 0.1);
}

.botto_area{
    width: 100%;
    z-index: 3;
    position: fixed;
    bottom: 0;
    background: #abaaaa;
    border-top: 1px solid #000;
    height: 70px;
}
.logo10th_txt{
    width: 150px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 0;
}

#gNav .nav--sns{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
#gNav .nav--sns li{
    margin: 0 5px;
}
#gNav .nav--sns li a{
    display: block;
    font-size: 15px;
    text-align: center;
    margin: 0;
}
#gNav .nav--sns li a svg{
    width: 15px;
    fill: #463c8d;
}

.slick-list{
  margin: 0 -10px;
}

.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;
}

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

	.logo10th {
	        left: 4%;
	        top: 2%;
	        width: 65px;
	        -webkit-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
	        -moz-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
	        -ms-filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
	        filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
	}
	.mainimg {
	    width:90%;
	}
	.section--top:before {
	    right: 65px;
	}
	.slider {
	    position: absolute;
	    top: 0;
	}
	.slider_02 {
	    position: absolute;
	    bottom: 0;
	    top:auto;
	}
	footer .logo {
	    width: 150px;
	    margin: 0 auto 30px;
	    line-height: 0;
	}



}





/* comment */

.section--comment{

}
.section--comment .comment{
    margin: 0 auto 80px;
    max-width: 600px;
    padding: 3vw;
    background: rgba(119, 146, 199, 0.5);
    border-radius: 15px;
    -webkit-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
    -moz-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
    -ms-filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
}
.section--comment .comment img{
    width: 100%;
}
.section--comment .info{
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: auto;
}
.section--comment .info .tit{
letter-spacing: 0.1em;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    margin: 0 auto 20px;
}
.section--comment .info .tit .mini{
	font-size: 60%;
    display: block;
}
.section--comment .info .mov{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0 auto 50px;
}
.section--comment .info .mov iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.section--comment .info .detail{

}
.section--comment .info .detail dt{
    font-size: 15px;
    margin: 0 0 10px 0;
}
.section--comment .info .detail dd{

}
.section--comment .info .detail dd .txt {
    margin: 0;
    font-size: 22px;
}
.section--comment .info .detail dd .attentionList{
    font-size: 14px;
}

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


.section--comment {

}
.section--comment .comment {
    margin: 0 auto 50px;
}
.section--comment .info .tit {
    font-size: 21px;
    margin: 0 auto 20px;
}
.section--comment .info .mov {
    margin: 0 auto 20px;
}
.section--comment .info .detail dt {
    font-size: 13px;
    margin: 0 0 5px 0;
}
.section--comment .info .detail dd .txt {
    margin: 0;
    font-size: 17px;
}
.section--comment .info .detail dd .attentionList {
    font-size: 12px;
}
.section--comment .logoList {
    width: 80%;
}
.section--comment .logoList div img {
    max-height: 100px;
}

}

    
/* BIOGRAPHY */

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

.section--history .section-tit{
    transform: translateY(50px);
    opacity: 0;
    transition: 0.5s cubic-bezier(0.25, 0.1, 0.48, 1.34);
}
.section--history .section-tit .scroll{
    position: absolute;
    right: 10%;
    top: 0;
    font-size: 1rem;
  animation: scrollMove 1.2s ease-in-out infinite;
}

@keyframes scrollMove{
  0%{
    transform: translateX(0);
  }
  50%{
    transform: translateX(10px);
  }
  100%{
    transform: translateX(0);
  }
}

.section--history .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--history .logo:before {
    content: '';
    height: 1px;
    width: 100%;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 0;
}
.section--history .logo img{
    width: 400px;
    padding: 0 0 0 20px;
}
.section--history.started .section-tit,
.section--history.started .logo{
    transform: translateY(0px);
    opacity: 1;
}

#history{
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    padding: 5vw 0 5vw 40px;
    user-select: none;
    scrollbar-width: none;
    background: #b4acdb;
    color: #fff;
}

#history::-webkit-scrollbar{
  display:none;
}
.history-scroll::-webkit-scrollbar{
    display: none; 
}
/*
#history.dragging{
  cursor:grabbing;
}
*/

.history-scroll{
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
   /* cursor: grab;
    user-select: none;*/
    position: relative;
    padding: 0;
}
/*
.history-scroll.dragging{
  cursor:grabbing;
}

.history-scroll::-webkit-scrollbar{
  height:20px;
  border-radius:10px;
}

.history-scroll::-webkit-scrollbar-track{
  background:#ddd;
}

.history-scroll::-webkit-scrollbar-thumb{
  background:#000;
  border-radius:10px;
}
*/

.timeline{
  position: relative;
  display: flex;
  align-items: center;
  gap:0;
  min-width: max-content;
padding: 230px 0;
}

.timeline::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #fff;
}

.year{
  position: relative;
  font-size: 37px;
  padding: 0 20px;
  font-style: normal;
  letter-spacing: 0.1em;
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  background: #b4acdb;
  z-index: 2;
}

.year.now{
  padding: 0 200px 0 20px;
}

.year-group{
    position: relative;
    width:220px;
    flex-shrink: 0;
    height: 320px;
    display: flex;
}
.year-group.type_other{
    width: 300px;
}

.year-group.top{
    align-items: flex-end;
    transform: translateY(-200px);
}

.year-group.top::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: #fff;
}

.year-group.bottom{
    align-items: flex-start;
    transform: translateY(200px);
}
.year-group.bottom::before{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: #fff;
}

.card{
  position: relative;
  z-index: 2;
  padding: 5px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card a{
  color: #fff;
}
.card img{
  width: 150px;
  display: block;
  margin: 0 auto 10px;
  filter: drop-shadow(3px 3px 5px rgba(0,0,0,.2));
}

.card .type{
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 19px;
  line-height: 1;
  margin: 0 0 20px;
}

.card .date{
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  margin: 0 0 5px;
}

.card .title{
  font-size: 0.7rem;
  font-weight: bold;
}

.card .mv a{
    font-size: 0.5rem;
    font-weight: bold;
    color: #fff;
    display: block;
    padding: 5px 0;
}

.card .mv a i{
  font-size: 140%;
  margin-left: 2px;
  position: relative;
  top: 1px;
}

.card .txt{
  margin: 5px 0;
  font-size: 0.7rem;
  text-align: left;
  word-break: break-all;
}


#cboxContent {
    border-radius: 15px;
    padding: 40px;
    background: rgba(119, 146, 199, 1);
    color: #fff;
}

#cboxLoadedContent {
    margin-bottom: 0;
}
#cboxCurrent, #cboxTitle{ display:none !important; }

#cboxClose:hover {
    background-position: center;
}
#cboxClose {
	display: block;
	position: absolute;
	top: 30px;
	right: 30px;
	background: url(/static/fcuru/feature/10th_anniversary/images/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;
}
#cboxOverlay {
    background: #000;
}
#cboxContent .tit{
    text-align: center;
    font-size: 16px;
    margin: 0 0 20px 0;
}

#cboxContent .schedule li {
    text-align: center;
    font-size: 12px;
    margin: 0 0 10px 0;
}
.popInBox{

}

.artistImg{
    background: rgba(126, 104, 165, 0.1);
    padding: 5px;
    position: absolute;
    width: 150px;
    top: 30px;
    right: -150px;
}
.bottom .artistImg{
    bottom: 30px;
    left: -150px;
    top: auto;
    left: auto;
}
.artistImg img{
    display:block;
    width:100%;
    height:auto;
}

.top .point{
    position: absolute;
    display: inline-block;
    padding: 5px;
    background: #fff;
    color: #474078;
    border-radius: 999px;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2;
    left: -15px;
    top: -45px;
}
.top .point.long {
    top: -45px;
    width: 350px;
    left: -50px;
}

.top .point::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.bottom .point{
    position: absolute;
    display: inline-block;
    padding: 5px;
    background: #fff;
    color: #474078;
    border-radius: 999px;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.2;
    right: -15px;
    bottom: -45px;
}
.bottom .point.long {
    bottom: -45px;
    width: 350px;
    right: -50px;
}

.bottom .point::before{
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  border-width: 0 8px 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}


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

#history {
    padding: 80px 0 80px 20px;
}
.section--history .section-tit .scroll {
    top: 50px;
}
.year {
    font-size: 24px;
}
.timeline {
    min-width: max-content;
    padding: 160px 0;
}
.year-group {
		position: relative;
        width: 180px;
        height: 290px;
}
.year-group.type_other {
    width: 200px;
}
.year-group.top {
    align-items: flex-end;
    transform: translateY(-185px);
}
.year-group.bottom {
    align-items: flex-start;
    transform: translateY(185px);
}
.card {
        padding: 5px;
        width: 100%;
}
.card img {
    width: 105px;
}
.type_live .card img {
    width: 100%;
}
#cboxContent .tit {
        text-align: center;
        font-size: 14px;
        margin: 0 0 10px 0;
}
#cboxClose {
    width: 20px;
    height: 20px;
}


.card .type {
        font-size: 1rem;
        margin: 0 0 5px 0;
}
.history-scroll{
    scrollbar-width:none;
    -ms-overflow-style:none;
}

.history-scroll::-webkit-scrollbar{
    display:none;
}
.artistImg {
        width: 110px;
        top: 110px;
        right: -90px;
        padding: 5px;
}
.bottom .artistImg {
        bottom: 110px;
        right: auto;
        top: auto;
        left: -90px;
}
.top .point {
    font-size: 9px;
}
.bottom .point {
    font-size: 9px;
}



}

/* GOODS */

#goods{
    color: #474078;  
}
/*
#goods:before {
    content: '';
    display: inline-block;
    width: 45%;
    height: 42%;
    background-image: url(/static/fcuru/feature/10th_anniversary/images/ph_logo_10th_z6jcra9i.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    position: absolute;
    right: 2%;
    top: 2%;
    opacity: 0.05;
}
*/
.loaded #goods{

}
.goods_box{
    overflow: hidden;
}
#goods .goodsList{
display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between; 
}
#goods h3 span:nth-child(4){
    padding: 0 0 0 10px;
}
#goods .goodsList li{
    width: 46%;
    position: relative;
    margin: 0 0 50px 0;
    color: #474078;  
}
#goods .goodsList li .icon{
background: #474078;
    width: 80px;
    height: 80px;
    display: block;
    line-height: 80px;
    text-align: center;
    border-radius: 100px;
    font-size: 22px;
    font-weight: bold;
    position: absolute;
    color: #fff;
    right: -30px;
    top: -10px;
    z-index: 1;
}
#goods .goodsList li .icon span{
    line-height: 1.2;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 18px;
    letter-spacing: 0.1em;
}
#goods .goodsImage{
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
}
#goods .goodsImage a{
    padding: 10px;
    background: #fff;
    display: block;
}
#goods .goodsImage img{
    margin: auto;
    display: block;
	transition: transform .6s ease;
}

#goods .goodsName {
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    font-weight: bold;
    margin: 0 0 10px 0;
}
#goods .goodsDetail{
    text-align: center;
    font-size: 15px;
    margin: 0 0 10px 0;
}

#goods .goodsPrice{
    text-align: center;
    font-size: 15px;
}
#goods .detailBox {
    padding: 40px;
    margin: 0 auto 50px;
    color: #fff;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, .2));
    background: rgba(119, 146, 199, 0.5);
    border-radius: 30px;
    max-width: 800px;
}

#goods .detailBox .mainTit {
    font-size: 20px;
    text-align: center;
    margin: 0 0 20px 0;
}
#goods .detailBox dl{
	margin: 0 0 30px 0;
    border-bottom: 1px dotted;
    padding: 0 0 30px 0;
}
#goods .detailBox dl:last-child{
	margin: 0;
    border-bottom:none;
    padding:0;
}
#goods .detailBox dt{
    font-size: 21px;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: 0.5em;
    font-weight: bold;
}
#goods .detailBox dd p{
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.8;
}
#goods .detailBox dd p .mini{
    font-size: 12px;
}
#goods .detailBox dd .attentionList li{
font-size: 13px;
    text-indent: -1em;
    margin: 0 0 5px 1em;
}
#goods .leadBox {
    font-size: 16px;
    margin: 0 0 30px 0;
    line-height: 1.8;
    text-align: left;
}
#goods .leadBox p{
    margin: 0 0 10px 0;
    text-align: center;
}
#goods .ph{
    margin: 0 0 20px 0;
}
.goods_box h4 {
    color:#8fb3cf;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px dotted #8fb3cf;
margin: 0 0 20px 0;    
}
.goods_box .ph {
    text-align: center;
    line-height: 0;
    width: 50%;
    margin: 0 auto 50px;
}
.goods_box .ph img{
margin: 0 0 20px 0;
}
.goods_box .minTxt{
    text-align: right;
    line-height: 0;
    margin: 0 auto 50px;
    font-size: 13px;    
}
.goods_detail { font-size:13px; color:#151515; margin: 15px 0 0;line-height:1.6em; }
.goods_detail p {
    padding: 0 0 10px;
    font-size: 15px;
    font-weight: 500;    
    line-height: 1.8;
}
.goods_detail p.right{
    text-align: right;
}
.goods_detail ul {
    padding: 0 0 20px;
}
.goods_detail ul li{
	padding-left:1em;
	text-indent:-1em;
}

.goods_detail ul li:last-child{
	padding:0 0 0 1em;
}
.goods_detail .attentionList{
    margin: 10px 0 0;
    color: #000;    
}
.goods_box .attentionList {
    color: #000;
    font-size: 13px;
    text-align: left;
    background: #fbfbfb;
    padding: 15px;
    margin: 10px 0 0 0;
    }
.goods_detail .attentionList li {
    padding-left: 0;
}
.goods_detail .attentionList li:last-child {
    padding-left: 0;
}

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



}


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

section.section--goods {
    padding: 80px 0;
}
.section--goods .section-tit{
        font-size: 24px;
        margin: 0 0 30px 0;
}
#goods .leadBox p {
    margin: 0 0 10px 0;
    font-size: 14px;
}
#goods .goodsList li .icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 22px;
    right: -10px;
    top: -10px;
    z-index: 1;
}
#goods .goodsList li .icon span {
    font-size: 11px;
    letter-spacing: 0.1em;
}
#goods:before {
    content: '';
    display: inline-block;
    width: 60%;
    height: 22%;
}
#goods .goodsImage {
    margin: 0 auto 10px;
    border-radius: 5px;
    overflow: hidden;
}
#goods .goodsName {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    font-weight: bold;
    margin: 0;
}
#goods .goodsDetail {
    text-align: center;
    font-size: 13px;
    margin: 0 0 5px 0;
    line-height: 1;
}
#goods .detailBox {
        padding: 20px;
        margin: 0 auto 30px;
        border-radius: 15px;
}
#goods .detailBox dt {
    font-size: 17px;
    margin: 0 0 10px 0;
    text-align: center;
    letter-spacing: 0.5em;
    font-weight: bold;
}
#goods .detailBox dd p {
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-align: center;
    line-height: 1.8;
}

.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: auto;
        top: 45px;
        width: 100%;
}
.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){
        width: 47%;
}
.section--discography .section-tit .linkArea li:nth-child(2){
    display: inline-block;
        margin: 0 0 0 5px;
        width: 47%;
}
.section--discography .section-tit .linkArea li:nth-child(1) a,
.section--discography .section-tit .linkArea li:nth-child(2) a{
        width: 100%;
        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;
}

}


#fanclub{
    background:#b4acdb;
    color: #fff;
    padding: 5vw 0 10vw;
}

#fanclub .section--box_inner{
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
#fanclub .box{
    padding: 3rem;
    text-align: center;
    border-radius: 20px;
    background: #fff;
    color:#474078;
    width: 48%;
    box-sizing: border-box;
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, .2));
}
#fanclub .box .tit{
    font-size: 1.5rem;
}
#fanclub .box .ph{

}


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



}


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

#fanclub {
    padding: 80px 0 100px;
}
#fanclub .section--box_inner {
    display: block;
}
#fanclub .box {
    width: 100%;
    margin: 0 auto 20px;
}

}


@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: 200px;
        min-width: auto;
        font-size: 13px;
        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;
  }
  


.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 {
        display: block;
        margin: 0 auto 50px;
        height: 100dvh;
  }
.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 5%;
}


}

@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;
  }



@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;
}
}



