@charset "utf-8";

* {
    font-style: normal;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    color: #606060;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI",
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", Arial, Meiryo, sans-serif;
    font-size-adjust: none;
    font-stretch: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1.8;
    text-align: center;
    margin: 0;
    padding: 0;
    word-wrap: break-word;
}
a {
    transition: 0.3s ease-in-out;
}
a img {
    border-style: none;
}
a:link {
    color: #909090;
    text-decoration: underline;
}
a:active {
    color: #909090;
    text-decoration: none;
}
a:visited {
    color: #909090;
    text-decoration: none;
}
a:hover {
    color: #909090;
    text-decoration: none;
}
h1,
h2,
h3 {
    margin: 0;
    padding: 0;
}
div {
    margin: 0;
    padding: 0;
    text-align: left;
}
.clear {
    clear: both;
}
.floatLeft {
    float: left;
}
.floatRight {
    float: right;
}
.mt5 {
    margin-top: 5px !important;
}
.mb5 {
    margin-bottom: 5px !important;
}
.mr5 {
    margin-right: 5px !important;
}
.ml5 {
    margin-left: 5px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mr10 {
    margin-right: 10px !important;
}
.ml10 {
    margin-left: 10px !important;
}
.mt15 {
    margin-top: 15px !important;
}
.mb15 {
    margin-bottom: 15px !important;
}
.mr15 {
    margin-right: 15px !important;
}
.ml15 {
    margin-left: 15px !important;
}
.ml25 {
    margin-left: 25px !important;
}
.ml35 {
    margin-left: 35px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt35 {
    margin-top: 35px !important;
}
.mt70 {
    margin-top: 70px !important;
}
.mt90 {
    margin-top: 90px !important;
}
.mt120 {
    margin-top: 120px !important;
}
.mb35 {
    margin-bottom: 35px !important;
}
.mr35 {
    margin-right: 35px !important;
}
.mb50 {
    margin-bottom: 50px !important;
}
.mb70 {
    margin-bottom: 70px !important;
}
.mb90 {
    margin-bottom: 90px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt50 {
    margin-top: 50px !important;
}
.mr20 {
    margin-right: 20px !important;
}
.mr30 {
    margin-right: 30px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.ml20 {
    margin-left: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.ml30 {
    margin-left: 30px !important;
}
.youtube {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.youtube iframe {
    width: 100%;
    height: 100%;
}
.youtubeshort {
    width: 100%;
    aspect-ratio: 9 / 16;
}
.youtubeshort iframe {
    width: 100%;
    height: 100%;
}
#page-top {
    clear: both;
    font-size: 10px;
    margin: 0 auto;
    padding-top: 10px;
    text-align: right;
    width: 901px;
}

/* Back to top button */
#back-top {
    position: fixed;
    bottom: 3%;
    right: 3%;
}
#back-top span {
    width: 32px;
    height: 108px;
    display: block;
}
#back-top img {
    position: absolute;
    z-index: 9998;
}
.enq_txt {
    margin-top: 10px;
}

/* 点滅 */
.blinking {
    -webkit-animation: blink 1s ease-in-out infinite alternate;
    -moz-animation: blink 1s ease-in-out infinite alternate;
    animation: blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.top-logo {
    left: 20px;
    mix-blend-mode: difference;
    position: fixed;
    top: 75px;
    transform: translateY(-60px);
    /*width: 137px;*/
    z-index: 10001;
}
.top-logo img {
    width: 230px;
    animation-name: fadein_up;
    animation-duration: 2s;
}
.top-logo-menu {
    left: 20px;
    mix-blend-mode: difference;
    position: fixed;
    top: 75px;
    transform: translateY(-60px);
    /*width: 137px;*/
    z-index: 101;
}
.top-logo-menu img {
    width: 230px;
}
@keyframes fadein_up {
    from {
        opacity: 0;
        transform: translatey(20px);
    }
    to {
        opacity: 1;
        transform: translatey(0);
    }
}

.fade .animation-bg {
    background: #000000;
    content: "";
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    animation-name: PageAnime-fade;
    animation-duration: 0.3s;
    animation-delay: 0.8s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
}

@keyframes PageAnime-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

.fadein_up {
    animation-name: fadein_up;
    animation-duration: 3.5s;
}

.sa {
    opacity: 0;
    transition: all 2.5s ease;
}
.sa.show {
    opacity: 1;
    transform: none;
}
.sa--lr {
    transform: translate(-50px, 0);
}
.sa--rl {
    transform: translate(50px, 0);
}
.sa--up {
    transform: translate(0, 50px);
}
.sa--down {
    transform: translate(0, -50px);
}
.sa--scaleUp {
    transform: scale(0.5);
}
.sa--scaleDown {
    transform: scale(1.5);
}
.sa--rotateL {
    transform: rotate(180deg);
}
.sa--rotateR {
    transform: rotate(-180deg);
}

.newslist_waku {
    border-top: 1px solid #999;
    max-width: 1140px;
    margin: 0 auto;
}

.move .animation-bg {
    background: #000000;
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    animation-duration: 1.1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.btt .animation-bg {
    animation-name: PageAnime-ttb;
}
@keyframes PageAnime-ttb {
    0% {
        transform-origin: top;
        transform: scaleY(0);
    }
    50% {
        transform-origin: top;
        transform: scaleY(1);
    }
    50.001% {
        transform-origin: bottom;
    }
    100% {
        transform-origin: bottom;
        transform: scaleY(0);
    }
}

.c-lower__heading .c-lower__title--en {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-family: Archivo, Zen Kaku Gothic New, -apple-system, BlinkMacSystemFont,
        Helvetica Neue, Hiragino Sans, "\30D2\30E9\30AE\30CE\89D2\30B4 ProN W3",
        Hiragino Kaku Gothic ProN, Yu Gothic, YuGothic, Verdana, Meiryo, "M+ 1p",
        sans-serif;
    font-size: 7.5rem;
    font-weight: 700;
    white-space: nowrap;
}

.c-lower__heading .c-lower__title--en .str {
    position: relative;
}

/*menu*/
.menu {
    height: 20px;
    position: absolute;
    right: 70px;
    top: 50px;
    width: 80px;
    z-index: 9999;
}
.menu__line {
    background: currentColor;
    display: block;
    height: 1px;
    position: absolute;
    transition: transform 0.3s;
    width: 100%;
}
.menu__line--center {
    top: 9px;
}
.menu__line--bottom {
    bottom: 0;
}
.menu__line--top.active {
    top: 5px;
    transform: rotate(45deg);
    background: #fff;
}
.menu__line--center.active {
    transform: scaleX(0);
}
.menu__line--bottom.active {
    bottom: 13px;
    transform: rotate(135deg);
    background: #fff;
}

/*gnav*/
.gnav {
    background: rgba(0, 0, 0, 0.83);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 9998;
    overflow-y: scroll;
}
.gnav__wrap {
    align-items: center;
    display: flex;
    justify-content: center;
    position: absolute;
    width: 96%;
    top: 100px;
    padding: 0 2%;
}

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

.gnav__menu__item {
    margin: 0;
    /*height:30px;*/
}
.gnav__menu__item a {
    color: #fff;
    font-family: /*"Lato",*/ -apple-system, BlinkMacSystemFont, "Helvetica Neue",
        "Segoe UI", "Hiragino Sans", Arial, Meiryo, sans-serif;
    font-size: 5.2rem;
    font-weight: 100;
    text-decoration: none;
    transition: 0.5s;
    line-height: 1.3;
    letter-spacing: 0.4rem;
}
.gnav__menu__item a:hover {
    color: #666;
}

.smt_snsimg {
    width: 16px !important;
    margin-bottom: 23px;
}
.smt_snsimg2 {
    height: 16px !important;
    margin-bottom: 23px;
}

.smt_head_snsbt {
    width: 16px;
    margin: 0 20px 0 30px;
    float: right;
    margin-top: -80px;
}
.smt_cart {
    height: 28px;
    position: absolute;
    right: 85px;
    width: 28px;
    top: 16px;
}

.smt_mailmagazine {
    height: 28px;
    position: absolute;
    right: 50px;
    width: 28px;
    top: 16px;
}

.page_header {
    height: 90px;
    justify-content: space-between;
    transition: 0.2s ease-in-out;
    width: 100%;
    position: fixed;
    z-index: 10000;
}
.page_header.transform {
    transition: 0.2s ease-in-out;
    background-color: rgba(255, 255, 255, 0.85);
    width: 100%;
    height: 55px;
}
.page_header h1 {
    float: left;
}
.head_langbt {
    font-family: "Quicksand", sans-serif;
    position: absolute;
    font-size: 0.99rem;
    top: 20px;
    right: 20px;
}
.head_langbt a {
    color: #000;
    text-decoration: none;
}
.head_langbt a:hover {
    text-decoration: underline;
}
.page_header .toplogo {
    width: 191px !important;
    margin: 28px 0 28px 20px;
    transition: 0.2s ease-in-out;
}
.transform .h1 {
    margin-top: 5px !important;
}
.transform .head_langbt {
    display: none;
}
.transform .toplogo {
    width: 108.95px !important;
    margin: 18px 0 18px 20px;
    transition: 0.2s ease-in-out;
}
.transform .head_menu {
    width: 768px;
    float: right;
    margin-right: 20px;
}
.transform .head_snsbt {
    margin-top: 20px !important;
    float: right;
    margin-right: 0 !important;
}
.head_snsbt img:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}

.transform #menu {
    margin-top: 21px !important;
    margin-right: 0 !important;
    float: right;
}
.head_snsbt {
    width: 215px;
    text-align: right;
    position: absolute;
    top: 50px;
    right: 190px;
}
.head_snsbt img {
    mix-blend-mode: difference;
}
.fanclublogotop {
    transition: 0.2s ease-in-out;
    width: 65px;
    margin-top: -38px;
    margin-left: -5px;
}
.transform .fanclublogotop {
    width: 35px;
    margin-top: -8px;
    margin-left: -15px;
}
.fanclublogotop:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}

#menu {
    float: right;
    margin: 48px 10px 0 0;
    width: 548px;
    height: 17px;
    text-align: center;
    padding: 0;
}
#menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#menu li {
    height: 19px;
    margin: 0;
    padding: 0;
    float: left;
}
#menu li a {
    height: 18px;
}
#menu #news a {
    transition: 0.5s;
    width: 46px;
    margin-right: 22px;
    background-image: url(/img/common/news01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #news a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
#menu #live a {
    transition: 0.5s;
    width: 34px;
    margin-right: 22px;
    background-image: url(/img/common/live01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #live a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
#menu #biography a {
    transition: 0.5s;
    width: 65px;
    margin-right: 22px;
    background-image: url(/img/common/biography01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #biography a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
#menu #discography a {
    transition: 0.5s;
    width: 50px;
    margin-right: 22px;
    background-image: url(/img/common/discography01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #discography a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
#menu #movie a {
    transition: 0.5s;
    width: 48px;
    margin-right: 22px;
    background-image: url(/img/common/movie01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #movie a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
#menu #contact a {
    transition: 0.5s;
    width: 75px;
    margin-right: 22px;
    background-image: url(/img/common/contact01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #contact a:hover {
    transition: 0.5s;
    opacity: 0.5;
}
#menu #goods a {
    transition: 0.5s;
    width: 105px;
    margin-right: 22px;
    background-image: url(/img/common/goods01new.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
}
#menu #goods a:hover {
    transition: 0.5s;
    opacity: 0.5;
}

#main {
    width: 100%;
    margin-top: 10px;
    clear: both;
    padding: 0 auto;
}
.whatsnewbox {
    background: #111;
    padding: 20px;
    margin: 0 auto;
    max-width: 1020px;
    color: #fff;
    margin-top: 20px;
}
.whatsnewarrow {
    float: right;
    width: 70px;
    margin-top: 5px;
}
.whatsnewtitle {
    height: 19px;
}
.whatsnewdate {
    font-size: 1.3rem;
    color: #ddd;
    width: 70px;
    padding: 0 20px 0 20px;
    float: left;
}
.whatsnewtxt {
    font-size: 1.3rem;
}

.topslider {
    padding: 0;
    /*max-width: 1400px;*/
    margin: 0 auto;
}

#mainslider li {
    display: block;
}
#mainslider img {
    width: 100%;
}
.newslistwaku {
    width: 670px;
    clear: both;
}

#contents {
    width: 850px;
    padding: 0;
    margin: 10px 0;
    clear: both;
    border-bottom: solid 1px #494949;
}

#contents_body {
    padding: 10px;
    margin: 10px 20px;
}

#topmain {
    padding: 10px;
}
#mainwrapper {
    padding: 10px;
}

.backnumber_btn {
    margin-bottom: 20px;
    text-align: right;
}

#footerback #menu {
    float: none;
    width: 556px;
    margin: 30px auto;
}
#footerback #menu #goods a {
    margin-right: 0;
}
.footlogo {
    width: 160px;
    margin-bottom: 40px;
}
.foot_snsbt {
    margin: 70px auto 40px;
    text-align: center;
}

#footerback {
    clear: both;
    padding: 70px 0 50px 0;
    background-color: #111;
    text-align: left;
    margin: 0 auto;
    /*width:100%;*/
    margin-top: -20px;
}
#footerback1 {
    clear: both;
}

#headertitle {
    width: 815px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
}

#footercontents {
    text-align: center;
    margin: 10px 0 0 0;
}
#footercontents a:link {
    color: #666666;
    text-decoration: underline;
}
#footercontents a:visited {
    color: #666666;
    text-decoration: underline;
}

#footer {
    clear: both;
    color: #fff;
    text-align: center;
    font-size: 10px;
    margin: 0 auto;
    padding-top: 0;
    width: 1018px;
}

.bio__wrap {
    max-width: 1020px;
    margin: 0 auto;
    padding-top: 30px;
}
.bio__ph {
    width: 55%;
    float: left;
}
.bio__ph__wrap img {
    width: 100%;
}
.bio__detail {
    width: 40%;
    float: right;
}
.bio__name img {
    width: 43%;
    margin-top: 10px;
}
.bio__ja {
    margin: 15px 0 0 0;
    font-size: 2.2rem;
    font-weight: bold;
}
.bio__txt {
    margin-top: 25px;
    font-size: 1.4rem;
    line-height: 1.99;
}

.contents {
    border-bottom: 1px solid #ddd;
    margin-bottom: 60px;
    padding-bottom: 40px;
}
.contents_title {
    margin: 0 0 25px 0;
    font-weight: bold;
    margin-left: 10px;
    font-size: 16px;
}

.disc_title {
    margin: 0 0 5px 0;
    font-weight: bold;
    margin-left: 25px;
}

.contents_date {
    font-size: 13px;
    color: #666;
    margin: 0 0 10px 0;
}

.contents_date a {
    color: #666;
    line-height: 2em;
}

.contents_body {
    margin: 20px 25px;
}

#history_year {
    font-weight: bold;
    color: #aaa;
    margin: 20px 0 10px 30px;
}

ul.history_year_list {
    border-top: 1px solid #ddd;
    margin-left: 10px;
    list-style-type: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
ul.history_year_list li {
    clear: both;
    padding: 20px 0;
}
.history_month {
    width: 8%;
    float: left;
    font-weight: bold;
    margin: 0 3%;
}
.history_body {
    float: left;
    width: 80%;
    line-height: 1.9em;
}
.livemenu {
    border: solid #999 1px;
    padding: 5px 10px;
    color: #999;
    margin-bottom: 15px;
    font-size: 11px;
}

.liveopenwindow {
    float: right;
    width: 100px;
}

.discography_jacket {
    width: 40%;
    float: left;
}
img.discoimage {
    width: 100%;
    height: auto;
}

.discography_body {
    width: 55%;
    margin-left: 10px;
    float: right;
}

.disc_titletext {
    font-size: 18px;
}

#pastlive {
    margin: 0 10px 20px 15px;
    font-size: 80%;
    border: 1px solid #666666;
    padding: 3px;
}
#pastlive a {
    color: #cc0000;
}
ul#tableMail {
    /*width: 750px;*/
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    list-style: none;
    font-size: 12px;
}
ul#tableMail li {
    clear: both;
}
ul#tableMail .th {
    width: 120px;
    padding: 5px;
    border: none;
    font-weight: bold;
    line-height: 120%;
    text-align: left;
    padding: 10px;
    float: left;
}
ul#tableMail .td {
    padding: 5px;
    border: none;
    line-height: 120%;
    text-align: left;
    padding: 10px;
    float: left;
}

.biographyName {
    font-weight: bold;
    color: #ccc;
}

.biographyYear {
    font-weight: bold;
    color: #cc0000;
}

.smallTxt {
    font-size: 80%;
}
.bTxt {
    font-weight: bold;
    color: #333333;
}

.font-small {
    font-size: 10px;
}

.snsimg {
    height: 15px;
    width: auto;
}
.snsimg2 {
    width: 15px;
    height: auto;
}
.musicsnsimg {
    height: 30px;
}
.musicsnsimg2 {
    width: 30px;
}
.musicsnsimg:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}
.musicsnsimg2:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}

.goodstitle {
    font-weight: bold;
    margin-top: 5px;
    font-size: 0.7rem;
}
.goodsprice {
    color: #666;
    font-size: 0.7rem;
}

.newsarea ul {
    list-style-type: none;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5;
    border-top: 1px solid #666666;
}
.newsarea ul li {
    padding: 20px 10px;
    clear: both;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    border-bottom: 1px solid #666666;
}
.newsarea li:hover {
    transition: 0.2s;
    background-color: rgba(0, 0, 0, 0.25);
}
.news_date {
    width: 70px;
    padding: 3px 15px;
    margin-right: 15px;
    float: left;
    font-size: 1.25rem;
}
.news__item__category {
    text-transform: uppercase;
}
.newsarea a {
    color: #222222;
}
.news_title {
    padding: 3px 15px;
    width: 780px;
    float: left;
    border-left: 1px solid #666666;
    font-size: 1.25rem;
}
.indigolaendtoplogo {
    width: 180px;
    float: left;
    margin: 20px 0 20px 20px;
}
.indigolaendtoplogo img {
    width: 180px;
}
.indigolaendmenu {
    width: 70%;
    float: right;
}
.indigolaendmenuofficial {
    border: 1px solid #666;
    text-align: center;
    padding: 8px 0;
    font-family: Tahoma, Al Nile Bold;
    margin-top: 70px;
    font-size: 1.2rem;
}
.whatsnewareamenu {
    padding-top: 10px;
    width: 683px;
    margin: 0 auto;
}
.whatsnewareamenu .newmenucolumn {
    width: 74px;
    float: left;
}
.whatsnewareamenu .newmenugallery {
    width: 70px;
    float: left;
}
.whatsnewareamenu .newmenumovie {
    width: 59px;
    float: left;
}
.whatsnewareamenu .newmenuwallpaper {
    width: 99px;
    float: left;
}

.newmenucolumn a {
    line-height: 60px;
    display: block;
    position: relative;
}
.whatsnewareamenu img {
    width: auto;
    height: 20px;
    padding-top: 7px;
    transition: 0.2s ease-in-out;
}
.whatsnewareamenu img:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}
.whatsnewareamenu a::after {
    position: absolute;
    left: 0;
    top: 20px;
    content: "";
    width: 100%;
    height: 2px;
    background: #e6dc47;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}
.whatsnewmenumargin {
    padding: 0 61px;
    float: left;
    color: #333;
    font-size: 1.9rem;
}

@media screen and (min-width: 1020px) {
    /*PCここから*/
    #wrapper {
        width: 100%;
        margin: 0 auto;
        padding: 0;
        /*background-image:url(../img/common/wrapper_back.png);
background-attachment: fixed;
background-position: center top;*/
        text-align: left;
        /*background-repeat: no-repeat;*/
        margin-top: -15px;
    }
    .page_header {
        /*margin-top:-90px;*/
    }
    .gnav {
        height: 110%;
        width: 30%;
        right: 0;
    }

    .head_menu {
        float: right;
        margin: 0;
        width: 810px;
    }

    .menu_sns {
        float: right;
        width: 680px;
    }

    .main_body {
        width: 90%;
        margin: 20px auto;
    }

    .mailmagazineimg {
        width: 90px;
        margin-top: 1px;
    }
    .indexcenter {
        width: 1000px;
        margin: 0 auto;
    }

    /*PCここまで*/
}

@media screen and (min-width: 768px) and (max-width: 1019px) {
    /*タブレットここから*/
    body {
        font-size: 100%;
    }
    .head_snsbt {
        margin: 0;
        top: 70px;
    }
    .gnav {
        width: 40%;
        right: 0;
    }

    #wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
        /*background-image:url(../img/common/wrapper_back.png);
background-attachment: fixed;
background-position: center top;*/
        text-align: left;
        /*background-repeat: no-repeat;*/
        overflow: hidden;
        margin-top: -15px;
    }
    .news__cont,
    .live__cont,
    .movie__cont,
    .movie2__cont,
    .newsDetail__cont,
    .indigolaendnews__cont,
    .newslist_waku,
    .more,
    .more_shosai,
    .backbtn,
    .whatsnewbox {
        width: 95%;
    }
    .head_menu {
        float: left;
        margin: 0;
        width: 650px;
    }

    .menu_sns {
        float: right;
        width: 650px;
    }

    #menu {
        margin-top: 0 !important;
    }

    table#tableMail {
        font-size: 14px;
    }

    .discography_body {
        font-size: 14px;
    }

    .disc_titletext {
        font-size: 20px;
    }

    .main_body {
        margin: 20px 0 30px 0;
        padding: 30px;
    }

    .font-small {
        font-size: 13px;
    }

    .contents_date {
        font-size: 13px;
    }

    .whatsnew {
        width: 96%;
        margin: 0 auto;
        float: none;
    }

    .topslider {
        width: 100%;
        padding: 0;
    }

    .page_header {
        padding-top: 10px;
    }
    .menu {
        margin-top: 20px;
    }
    .smt_cart {
        margin-top: 20px;
    }
    .smt_mailmagazine {
        margin-top: 20px;
    }
    .transform .menu {
        margin-top: 10px;
    }
    .transform .smt_cart {
        margin-top: 10px;
    }
    .transform .smt_mailmagazine {
        margin-top: 10px;
    }
    .indigolaendtoplogo {
        float: clear;
        width: 100%;
        text-align: center;
    }
    .news__list li:nth-child(3n) {
        margin-right: 0;
    }
    .news__list li:nth-child(n + 4) {
        margin-top: 25px;
    }

    .newsDetail__body {
        margin: 10px 0 0 20%;
        width: 78%;
    }
    .news__item__date,
    .newsDetail__date {
    width:14% !important;
    }
    .news__item__ttl__txt{
    width:80% !important;
    }

    /*タブレットここまで*/
}

@media screen and (max-width: 767px) {
    /*スマホここから*/
    body {
        font-size: 0.9rem;
    }
    .top-logo img {
        width: 150px;
    }
    .top-logo-menu img {
        width: 150px;
    }
    .gnav__menu {
        margin-top: 70px;
    }
    .gnav__menu__item a {
        font-size: 3.6rem;
    }
    .head_snsbt {
        top: 30px;
        right: 80px;
    }

    .menu {
        height: 20px;
        position: absolute;
        right: 20px;
        top: 30px;
        width: 50px;
        z-index: 9999;
        mix-blend-mode: difference;
    }
    .news__item__date {
        float: none !important;
        width: 100% !important;
    }
    .news__item__category {
        padding: 0;
        margin: 0;
    }
    .news__item__ttl__txt,
    .newsDetail__ttl {
        float: none !important;
        width: 96% !important;
        border-left: none !important;
        font-weight: 500 !important;
        font-size: 1.8rem !important;
        padding-left: 2%;
    }
    .section__ttl {
        font-size: 4.5rem !important;
    }

    .goodstitle {
        font-size: 0.38rem;
    }
    .goodsprice {
        font-size: 0.38rem;
    }

    .bio__ph {
        width: 100%;
        float: none;
    }
    .bio__ph__wrap img {
        width: 100%;
    }
    .bio__detail {
        width: 100%;
        float: none;
    }
    .bio__name {
        text-align: center;
    }
    .bio__name img {
        width: 26%;
        margin-top: 30px;
    }
    .bio__ja {
        font-size: 1.6rem;
        text-align: center;
    }
    .bio__txt {
        line-height: 1.9;
        font-size: 1.4rem;
    }

    .whatsnewdate {
        padding: 0 20px 10px 0;
    }
    #wrapper {
        margin: 0 auto;
    }
    .page_header {
        height: 55px;
        /*border-bottom:5px solid #CC0001;*/
    }
    .page_header .toplogo {
        width: 108.95px !important;
        margin: 20px 0 20px 15px;
    }
    #main {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        padding-top: 0 auto !important;
    }

    /* Back to top button */
    #back-top {
        position: fixed;
        bottom: 3%;
        right: 3%;
    }
    #back-top span {
        width: 16px;
        height: 110px;
        display: block;
    }

    .page_header.transform {
        height: 55px;
    }
    .transform .toplogo {
        width: 108.95px !important;
    }
    .page_header h1 {
        /*width:100%;
margin:40px 0;
text-align:center;*/
    }

    .topslider {
        width: 100%;
        padding: 0;
    }
    .whatsnew {
        width: 90%;
        float: none !important;
        margin: 30px auto;
    }
    .indexcenter {
        width: 100% !important;
    }
    .indexnewslistdate {
        width: 100%;
    }
    .indexnewslisttitle {
        width: 100%;
    }
    .h2title {
        margin: 35px 0;
        width: auto;
        height: 33px;
    }
    .commentimg {
        width: 100%;
    }

    .discography_jacket {
        width: 100%;
        float: none;
    }
    img.discoimage {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .discography_body {
        width: 100%;
        float: none;
    }
    .history_month {
        width: 100%;
        float: none;
        margin: 0 20px;
    }
    .history_body {
        float: none;
        width: 88%;
        line-height: 1.9em;
        padding: 0 6%;
    }
    .indigolaendnews__cont {
        width: 90%;
        margin: 0 auto;
    }
    .news_date {
        width: 80px;
        padding: 3px 0;
        margin-right: 0;
        border: none;
        clear: both;
        width: 100%;
        font-size: 1.2rem;
    }
    .news_title {
        clear: both;
        border: none;
        padding: 3px 0;
        width: 100%;
        font-size: 1.2rem;
    }
    .indigolaendtoplogo {
        float: none;
        width: 100%;
        text-align: center;
        padding: 20px 0 0;
        margin: 0;
    }
    .indigolaendtoplogo img {
        width: 180px;
        margin-bottom: 30px;
    }
    .news__item {
        margin-bottom: 50px !important;
    }
    /*スマホここまで*/
}

/* 問合せフォーム関連ここから */
table {
    border-collapse: collapse;
}

.form-table p {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin: 60px auto 40px;
}

input[type="submit"],
input[type="text"],
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    border: none;
    padding: 10px 30px;
    margin-top: 20px;
    font-weight: bold;
}

input[type="text"],
textarea {
    /*background: #f8f8f8;*/
    display: block;
    font-size: 16px;
    padding: 12px 15px;
    width: 480px;
    transition: 0.8s;
    border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
    display: inline-block;
    width: 100%;
    height: 200px;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
}

::-webkit-input-placeholder {
    color: #ccc;
    opacity: 1;
}

::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}

.form-table {
    width: 100%;
    border-collapse: collapse;
}

.form-table th,
.form-table td {
    border-top: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    padding: 20px;
}

.form-table th {
    /*  background: #eee;*/
    padding-left: 50px;
    position: relative;
    text-align: left;
    width: 20%;
}
@media only screen and (max-width: 767px) {
    .form-table th,
    .form-table td {
        display: block !important;
        width: 96% !important;
        border-bottom: none;
        padding: 20px 2%;
    }
    input[type="text"],
    textarea {
        width: 90%;
        margin: 0 auto;
    }
}
/* 問合せフォーム関連ここまで */

/*元々のstyleに足す*/
.section {
    padding: 75px 0 120px;
}
.indigolaendwrapper .section {
    padding: 75px 0 65px;
}
.section--live {
    background-color: #e4e3e2;
}
.section--movie {
    background-color: #e4e3e2;
}
.section__ttl__heading {
    padding: 110px 0 70px;
    max-width: 1140px;
    margin: 0 auto;
}

.section__ttl {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-family: "Lato", sans-serif;
    /*font-family: "Sofia Sans Condensed","Poiret One", sans-serif;*/
    letter-spacing: 1.4rem;
    font-size: 9.5rem;
    font-weight: 200;
    white-space: nowrap;
    text-transform: uppercase;
    color: #ccc;
    text-align: center;
}
.section__ttl .str {
    /*position: relative;*/
    margin: 0 auto;
}
.section__ttl img {
    height: 67px;
    margin-bottom: 30px;
}
.wrapper1 {
    margin: 0 auto;
}
.news__item__header {
    text-decoration: none !important;
    color: #606060 !important;
}
.newsDetail__cont {
    clear: both;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 10px 0 30px 0;
    /*margin-top: -40px !important;*/
}
.newsDetail__cont__list:hover {
    background-color: #ddd;
}
.newsDetail__cont__list {
    border-top: none !important;
    padding-bottom: 10px !important;
}
.news__item__wrap {
    transition: all 0.5s ease-in-out;
    color: #333;
}
.news__item__wrap:hover {
    transform: scale(1.03);
    transition: all 0.5s ease-in-out;
    color: #666;
}
.music__item__wrap {
    width: 60%;
    margin: 0 auto;
}
.news__cont,
.indigolaendnews__cont,
.live__cont,
.newsDetail__cont,
.movie2__cont {
    max-width: 1140px;
    margin: 0 auto;
}
.musicDetail .live__cont {
    padding-top: 30px;
}
.movie__cont {
    max-width: 1120px;
    margin: 0 auto;
}
.news__list {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.news__list a {
    text-decoration: none;
}
.news__list li {
    float: left;
    width: 30%;
    margin-right: 5%;
}
.movie2__list {
    list-style: none;
}
.movie2__list a {
    text-decoration: none !important;
}
.movie2__list a.visited {
    text-decoration: none !important;
}
.movie2__list li {
    float: left;
    width: 23.5%;
    margin-right: 2%;
}
@media screen and (min-width: 1020px) {
    /*PCここから*/
    .news__list li:nth-child(3n) {
        margin-right: 0;
    }
    .news__item .newsTimg {
        width: auto;
        max-width: 100%;
        max-height: 306px;
        margin-bottom: 10px;
    }

    .news__list li:nth-child(n + 4) {
        margin-top: 25px;
    }

    .newsDetail__body {
        margin: 10px 0 0 16%;
        width: 76%;
    }
}
/*PCここまで*/

.movie2__list li:nth-child(4) {
    margin-right: 0;
}

.live__list {
    list-style: none;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.live__list li {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
}
.section--music .live__list li {
    margin-bottom: 50px;
}
.section--music .live__list li .news__item__date {
    line-height: 1.5em;
}
.live__list li:nth-child(2n) {
    margin-right: 0;
}
.disco__delivery__a {
    text-decoration: none !important;
}
.disco__item__price {
    font-size: 1.3rem;
    font-weight: bold;
}
.disco__item__tunes {
    font-size: 1.3rem;
    margin: 10px 0 20px;
}
.disco__delivery {
    margin-bottom: 30px;
}
.news__item__new {
    /*width: 100%;*/
    float: left;
}
.news__item__new img {
    float: left;
    /*     padding-right: 14px; */
    width: 50px;
    margin-top: 8px;
}
.movie__cont .news__item__new img {
    margin-top: 1px;
}
.section--live .news__item__new {
    margin-top: 4px;
}
.news__date__ttle {
    /*border-left:1.5px solid #999;*/
}
.news__item__date,
.newsDetail__date {
    /*position: relative;
top:3px;
padding-right: 24px;*/
    line-height: 4em;
    /*font-family: "Montserrat",sans-serif;*/
    /*margin-bottom: 8px;*/
    width: 12%;
    float: left;
    padding: 0 2%;
    font-size: 9px;
    color: #aaa;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
    font-size: 0.887rem;
}
.disc__date {
    width: 100%;
    border: none !important;
    padding: 0 !important;
}
.newsDetail__date {
    color: #666;
}
.news__item__ttl {
    /*clear: both;*/
}
.movie__thumb__img {
    margin-bottom: 15px;
}
.news__item__ttl__txt,
.newsDetail__ttl {
    /*padding-right: 40px;*/
    font-weight: 500;
    font-size: 1.47rem;
    line-height: 1.8em;
    float: left;
    padding-left: 1.5%;
    width: 81.5%;
}
.disc__item__ttl__txt {
    padding: 0 !important;
    width: 100% !important;
}
.movie__item__ttl {
    font-weight: bold;
    font-size: 14px;
}
.movieplay {
    position: relative;
}
.movieplaycenter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.newsDetail__ttl {
    margin: 15px 0;
}
.newsDetail__body {
    padding-top: 30px;
    font-size: 1.4rem;
    line-height: 280%;
    clear: both;
    animation-name: fadein_up;
    animation-duration: 3.5s;
}
.newsDetail__body img {
    width: 60%;
    height: auto;
}
.news__item__body {
    margin-top: 10px;
    font-size: 0.9rem;
}
.newsTimg {
    width: 100%;
    height: auto;
    /*max-height: 489.11px;*/
    margin-bottom: 10px;
}
.live__item .newsTimg {
    width: auto;
    max-width: 100%;
    max-height: 489.11px;
    margin-bottom: 10px;
}
.newsTimg.bgimage {
    padding-top: 100%;
    background-size: cover;
    background-position: center center;
}
.movie__thumb__img {
    width: 100%;
}
.musicTimg {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.more {
    max-width: 1020px;
    margin: 0 auto;
    padding: 30px 0 0 0;
    clear: both;
    text-align: right;
    font-size: 12px;
}
.more_shosai {
    max-width: 1020px;
    margin: 0 auto;
    padding: 30px 0 0 0;
    clear: both;
    text-align: right;
    font-size: 12px;
}
.section__ttl--goods img {
    position: absolute;
    left: 50%;
    margin-top: 30px;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.section--goods .more {
    padding-top: 7px;
}
.section--live .more {
    text-align: center;
    padding: 50px 0 0 0;
}
.section--music .more {
    text-align: center;
    padding: 0;
}
.section__ttl--goods img {
    margin-top: 80px;
}
.section--goods .more {
    text-align: center;
    padding: 0;
}
.section--movie .more {
    max-width: 1120px;
}

.btn_more {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    font-family: "Sofia Sans Condensed", sans-serif;
    font-size: 1.3rem;
    text-decoration: none !important;
    display: inline-block;
    color: #333 !important;
    padding: 10px 50px 10px 40px;
    border-radius: 0;
    border-bottom: 1px solid #222;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease 0.2s;
}
.btn_more:hover {
    padding: 10px 65px 10px 40px;
    border-bottom: 1px solid #888;
    color: #888 !important;
}

.btn_back {
    /*矢印の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    font-family: "Sofia Sans Condensed", sans-serif;
    font-size: 1.3rem;
    text-decoration: none !important;
    display: inline-block;
    color: #333 !important;
    padding: 13px 40px 10px 50px;
    border-radius: 0;
    border-bottom: 1px solid #222;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease 0.2s;
}
.btn_back:hover {
    padding: 13px 45px 10px 60px;
    border-bottom: 1px solid #888;
    color: #888 !important;
}

.live__item__ticket {
    float: right;
    text-align: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.newsDetail .live__item__ticket {
    float: left;
    clear: both;
    padding-top: 20px;
}
.live__item__ticket a {
    text-decoration: none;
    color: #fff;
}
.btn_ticketsold {
    background: #999 !important;
    color: #fff;
    padding: 10px 20px;
}
.btn_buyticket {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    margin-top: 5px;
    transition: ease 0.2s;
}
.btn_buyticket:hover {
    color: #ddd;
    transition: ease 0.2s;
}
.btn_moreblk {
    /*矢印の基点とするためrelativeを指定*/
    text-decoration: none !important;
    position: relative;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    background: #a0a0a0;
    color: #333 !important;
    padding: 6px 30px 5px 20px;
    border-radius: 25px;
    border: 2px solid #666;
    text-align: center;
    outline: none;
    font-size: 1.3rem;
    /*アニメーションの指定*/
    transition: ease 0.2s;
}
.btn_moreblk:hover {
    background: #a0a0a0;
    padding: 6px 45px 5px 20px;
}
.movie__item {
    width: 100%;
    height: auto;
}

.indigolaendwrapper {
    background: #dde9f1;
    margin: 0 auto;
}
.section__ttl--indigolaend {
    text-align: center;
}
.section__ttl--indigolaend img {
    height: 47px;
    margin-bottom: 30px;
}
.backbtn {
    max-width: 1020px;
    margin: 0 auto;
    padding: 30px 0 0 0;
    clear: both;
    text-align: right;
}
.indigolaendfootterBg {
    background-color: #b7b7b7;
}
.indigolaendfootterbody {
    width: 850px;
    margin: 0 auto;
    padding: 50px 0;
    color: #fff;
    font-size: 1.2rem;
}
.titlesupport {
    float: left;
    width: 93px;
}
.supportmenu {
    width: 650px;
    float: right;
}
.supportmenuLeft {
    width: 31%;
    padding: 0 1%;
    float: left;
}
.supportmenuCenter {
    width: 31%;
    padding: 0 1%;
    float: left;
}
.supportmenuRight {
    width: 31%;
    padding: 0 1%;
    float: left;
}
.supportmenu ul {
    list-style: none;
}
.supportmenu ul li {
    margin-bottom: 10px;
}
.indigolaendfootterbody a {
    text-decoration: inherit;
    color: inherit;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.indigolaendfootterbody a:hover {
    text-decoration: inherit;
    color: rgba(255, 255, 255, 0.55);
}

@media only screen and (max-width: 767px) {
    .section {
        padding: 45px 0 90px;
    }

    .newsDetail__cont {
        margin: 0 auto;
        padding: 20px 0;
    }
    .news__item .newsTimg {
        /*width:100% !important;
    height:auto !important;
    max-height: auto !important;*/
        width: auto;
        max-width: 100%;
        max-height: 320px;
        margin-bottom: 10px;
    }

    .news__date__ttle {
        border-left: 1.5px solid #999;
    }

    .news__item__date,
    .newsDetail__date {
        border: none;
    }
    .live__item .newsTimg {
        width: auto;
        max-width: 100%;
        max-height: 320px;
        margin-bottom: 10px;
    }

    .newsDetail {
        width: 98%;
        margin: 0 auto;
    }
    .news__list li {
        width: 90%;
        margin: 0 auto;
        float: none;
        margin-bottom: 30px;
    }
    .newsDetail__body {
        line-height: 220%;
    }
    .newsDetail__body img {
        width: 100%;
    }
    .section--indigolaendwallpaper .news__list li:nth-child(2) {
        display: none;
    }
    .officialmovie__list li:nth-child(3) {
        display: none;
    }
    .officialmovie__list li:nth-child(4) {
        display: none;
    }
    .officialmovie__list li:nth-child(5) {
        display: none;
    }
    .officialmovie__list li:nth-child(6) {
        display: none;
    }
    .movie2__list {
        width: 96%;
        margin: 0 auto;
    }
    .movie2__list li {
        float: left;
        width: 48%;
        margin-right: 4%;
        margin-bottom: 20px;
    }
    .movie2__list li:nth-child(2) {
        margin-right: 0;
    }

    .more {
        margin-right: 5%;
        margin-top: -30px;
    }
    .more_shosai {
        margin-right: 5%;
        margin-top: -30px;
    }
    .live__list li {
        width: 90%;
        margin: 0 auto;
        float: none;
        margin-bottom: 70px;
    }
    .live__list li:nth-child(2n) {
        margin-right: auto;
    }
    .more {
        text-align: center;
        margin-right: 0;
    }
    .more_shosai {
        text-align: center;
        margin-right: 0;
    }
    .backbtn {
        text-align: center;
        margin-right: 0;
    }
    .section--news .more {
        margin-right: 0;
    }
    .section--live .more {
        margin-right: 0;
    }
    .music__item__wrap {
        width: 80%;
    }
    .section--movie .more {
        margin-right: 0;
    }
    .section__ttl {
        color: #999;
    }
    .section__ttl img {
        height: 35px;
    }
    .section__ttl--indigolaend img {
        height: 30px;
        margin-bottom: 40px;
    }
    .snsimg {
        height: 15px;
        width: auto;
    }
    .snsimg2 {
        width: 15px;
        height: auto;
    }
    #menu #movie a {
        margin-right: 0;
    }
    #menu #goods a {
        margin-right: 0;
    }
    .fanclubsupport {
        width: 85%;
    }
    .fanclubsupport ul li {
        margin-top: 10px;
    }

    .titlesupport {
        float: left;
        width: 153px;
    }
    .indigolaendfootterbody {
        width: 90%;
        margin: 0 auto;
    }
    .supportmenu {
        width: 90%;
        float: none;
        clear: both;
        margin-top: 50px;
    }
    .supportmenuLeft {
        float: none;
        width: 90%;
    }
    .supportmenuCenter {
        float: none;
        width: 90%;
    }
    .supportmenuRight {
        float: none;
        width: 90%;
    }
}

#fanclubfooter {
    background: #878787;
    padding: 20px 0;
}
.fanclubsupport {
    max-width: 1020px;
    margin: 0 auto;
}
.fanclubsupport ul {
    list-style: none;
    color: #fff;
    font-size: 0.7rem;
}
#footerback .footmenu1 {
    width: 354px !important;
    margin: 0 auto;
}
#footerback .footmenu2 {
    width: 202px !important;
    margin: 0 auto;
}

#footerback .snsimg {
    height: 15px;
    width: auto;
}
#footerback .snsimg:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}
#footerback .snsimg2 {
    width: 15px;
    height: auto;
}
#footerback .snsimg2:hover {
    transition: 0.2s ease-in-out;
    opacity: 0.5;
}

/* 矢印が右に移動 */
.btnarrow1::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 42%;
    right: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all 0.3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after {
    right: 11px;
    border-top: 2px solid #888;
    border-right: 2px solid #888;
}

/* 矢印が左に移動 */
.btnarrow2::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 42%;
    left: 13px;
    /*矢印の形状*/
    width: 5px;
    height: 5px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(225deg);
    /*アニメーションの指定*/
    transition: all 0.3s;
}

/*hoverした際の移動*/
.btnarrow2:hover::after {
    left: 11px;
    border-top: 2px solid #888;
    border-right: 2px solid #888;
}

/*==================================================
スライダーのためのcss
===================================*/
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
}
.swiper-slide img {
    height: auto;
    width: 100%;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
}
/* ページネーションのサイズと色 */
.swiper-pagination-bullet {
    height: 7px !important;
    width: 7px !important;
    background: #b1b1b2 !important;
    margin: 7px !important;
}
.swiper-pagination {
    position: initial !important;
    text-align: center !important;
}
.swiper-pagination-bullet-active {
    background: #e6dc47 !important;
}
.swiper-button-prev,
.swiper-button-next {
    width: 17px !important;
    height: 38px !important;
    background-size: 17px 38px !important;
}
.swiper-button-prev1 {
    left: auto !important;
    right: 50px !important;
    top: auto !important;
    bottom: 35px !important;
}
.swiper-button-next1 {
    right: 10px !important;
    left: auto !important;
    top: auto !important;
    bottom: 35px !important;
}
.swiper-button-prev5,
.swiper-button-next5 {
    width: 12px !important;
    height: 12px !important;
    background-size: 12px 12px !important;
}
.swiper-button-prev5 {
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    bottom: 3px !important;
}
.swiper-button-next5 {
    left: auto !important;
    right: 0 !important;
    top: auto !important;
    bottom: 3px !important;
}
.goodsshopslider {
    max-width: 1020px;
    margin: 0 auto;
}
.slider3 {
    padding-top: 30px;
}
.swiper-slide .goods__name {
    font-weight: bold;
    font-size: 1.4rem;
}
.swiper-slide .goods__price {
    font-size: 1.4rem;
}
.swiper-slide a {
    color: #555;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}
.goods__item__wrap:hover {
    transform: scale(1.03);
    transition: 0.2s ease-in-out;
}
.slider4 {
    margin: 20px 0;
}
.slider4 .swiper-wrapper {
    transition-timing-function: linear;
}
.slider6 .swiper-wrapper {
    transition-timing-function: linear;
}
.slider4 swiper-wrapper {
    width: 45%;
}
@media only screen and (max-width: 767px) {
    .slider5 {
        margin-top: 30px;
        clear: both;
    }
}
/*==================================================
年選択のためのcss
===================================*/

.selectbox-001 {
    position: relative;
}

.selectbox-001::before,
.selectbox-001::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.selectbox-001::before {
    display: inline-block;
    right: 0;
    width: 2.8em;
    height: 2.8em;
    border-radius: 0 3px 3px 0;
    /*background-color: #2589d0;*/
}

.selectbox-001::after {
    position: absolute;
    top: 44%;
    right: 0.4em;
    transform: translate(50%, -50%) rotate(45deg);
    width: 6px;
    height: 6px;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
}

.selectbox-001 select {
    appearance: none;
    width: 110px;
    height: 2.8em;
    padding: 0.4em 3.6em 0.4em 0.8em;
    border: none;
    border-radius: 3px;
    background-color: #fff;
    color: #333;
    font-size: 1em;
    cursor: pointer;
}

.selectbox-001 select:focus {
    outline: 2px solid #fff;
}

#like_box {
    text-align: right;
    margin: 20px 0;
    margin-top: 40px;
}
#like_box #btn-do-like {
    cursor: pointer;
}
#like_box .like_btn {
    height: 16px;
    vertical-align: middle;
}
#comment {
    margin: 2em 0;
}
#comment .h_ {
    padding: 10px 0;
    font-size: 100%;
    line-height: 2;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}
#comment-list {
    list-style: none;
}
#comment-list li {
    border-bottom: 1px solid #444;
}
#comment-list .comment_text {
    padding: 10px 0;
}
#comment-list .comment_prop {
    padding: 10px 0;
    text-align: right;
    color: #aaa;
    font-size: 90%;
}
.form_box {
    margin: 1em 0;
}
#comment textarea {
    box-sizing: border-box;
    width: 100%;
    height: 3em;
}
.btn2 {
    cursor: pointer;
}
.btn2 {
    display: block;
    margin: 10px auto 20px;
    padding: 10px 0 14px;
    line-height: 1em !important;
    width: 80%;
    text-align: center;
    color: #fff !important;
    font-size: 16px;
    text-shadow: 0px 0px 10px #444;
    box-shadow: 1px 1px 2px #444;
    -moz-box-shadow: 1px 1px 2px #444;
    -webkit-box-shadow: 1px 1px 2px #444;
    border: solid #1d1d32 1px;
    border-radius: 4px;
    text-decoration: none;
    background: #444;
    background: linear-gradient(to bottom, #444 0%, #444 42%);
}

.br-pc {
    display: block;
}
.br-sp {
    display: none;
}
@media only screen and (max-width: 767px) {
    .br-pc {
        display: none;
    }
    .br-sp {
        display: block;
    }
}

.tb-pc {
    display: block;
}
.tb-sp {
    display: none;
}
@media only screen and (max-width: 1020px) {
    .tb-pc {
        display: none;
    }
    .tb-sp {
        display: block;
    }
}

.modal-video-close-btn {
    right: -65px;
}
input[type="submit"],
input[type="text"],
textarea,
button {
    padding: 30px 30px;
    margin-top: 0;
}
@media only screen and (max-width: 767px) {
    .modal-video-close-btn {
        right: -5px;
        top: -56px;
    }
}
#movie_c {
    padding-top: 100px;
    margin-top: -100px;
}
#fanclub {
    padding-top: 100px;
    margin-top: -100px;
}

/*　ContactForm7のテーブル化レスポンシブ調整　*/

/*テーブルを親要素の幅いっぱいに伸ばす*/
.table-res-form {
    width: 100%;
}
/*一行ごとに上ボーダー*/
.table-res-form tr {
    border-top: 1px #ddd solid;
}
/*一番上の行だけボーダーなし*/
.table-res-form tr:first-child {
    border-top: none;
}
/*奇数行だけ背景色つける*/
/*.table-res-form tr:nth-child(2n+1) {
    background: #eee;
}*/
/*thとtd内の余白指定*/
.table-res-form th,
.table-res-form td {
    padding: 1.5em;
}
/*th（項目欄）は30%幅、テキストを右寄せ*/
.table-res-form th {
    width: 30%;
    /*text-align: right;*/
}
/*「必須」部分のスタイリング*/
.table-res-form .requied {
    font-size: 0.8em;
    color: #fff;
    display: inline-block;
    padding: 0.3em 0.3em 0.2em;
    background: red;
    border-radius: 2px;
}

/*ここから767px以下の指定*/

@media only screen and (max-width: 767px) {
    /*thとtdをブロック化して幅100％にして、縦積み*/
    .table-res-form th,
    .table-res-form td {
        width: 100% !important;
        display: block !important;
        padding: 0 0 1.5em 0 !important;
    }
    .table-res-form th {
        width: 100% !important;
        display: block !important;
        padding: 1.5em 0 !important;
        text-align: left !important;
    }
    /*th（項目名）欄の不要な余白削除・テキスト左寄せ*/
    .table-res-form th {
        padding-bottom: 0 !important;
        text-align: left !important;
    }
    /*不要な最終行の左のthを非表示にする*/
    /*.table-res-form .empty {
        display: none;
    }*/
}

/*ここまで767px以下の指定---終わり*/

/*ここから入力欄のスタイル指定*/

/*各入力フォームスタイリング*/
.table-res-form,
input[type="text"],
input[type="email"],
textarea {
    border: 1px #666 solid;
    padding: 0.5em;
    border-radius: 5px;
    margin-bottom: 0.5em;
    width: 96%;
    padding: 16px 2%;
}
/*入力欄にフォーカスしたら変化*/
.table-res-form input[type="text"]:focus,
textarea:focus {
    /*background: #eeffff;*/
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}
/*送信ボタンスタイリング*/
.table-res-form input[type="submit"] {
    border: 1px #878787 solid;
    padding: 0.5em 4em;
    border-radius: 5px;
    background: #878787;
    color: #fff;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
    font-weight: bold;
}
/*送信ボタン・マウスオーバー時スタイリング*/
.table-res-form input[type="submit"]:hover {
    background: #333;
    box-shadow: none;
}

/*くるっと回転するボタンここから*/
.container {
    width: 100%;
    margin: 50px auto;
    text-align: right;
}
.container a {
    text-decoration: none;
}

.container p {
    margin: 20px 10px;
}

.link {
    color: #333;
    cursor: pointer;
    font-weight: 400;
    text-decoration: none;
}

.link--arrowed {
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
}
.link--arrowed .arrow-icon {
    position: relative;
    top: -1px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    vertical-align: middle;
}
.link--arrowed .arrow-icon--circle {
    -webkit-transition: stroke-dashoffset 0.3s ease;
    transition: stroke-dashoffset 0.3s ease;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
}
.link--arrowed:hover .arrow-icon {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
}
.link--arrowed:hover .arrow-icon--circle {
    stroke-dashoffset: 0;
}
/*くるっと回転するボタンここまで*/
