@charset "utf-8";

body {
    background-color: #EBE8E8;
    font-family: 'Noto Sans JP', sans-serif;
}

#dia {
    background-color: #fff;
}

a {
    color: unset;
    text-decoration: none;
}

a:hover {
    color: unset;
    text-decoration: underline;
}


img {
    max-width: 100%;
}

section {
    padding: 120px 0;
}

footer {
    color: #fff;
    background-color: #2E2E2E;
    padding: 60px 0;
    font-size: 15px;
    font-size: 1.5rem;
}

p {
    font-size: 18px;
    font-size: 1.8rem;
}

noscript {
    display: none;
}

.mb20 {
    margin-bottom: 20px;
}

.none {
    display: none !important;
}

.footer-description p {
    font-size: 15px;
    font-size: 1.5rem;
}

.text-right{
    text-align: right!important;
}

/* ------------------------------
 bootstrap
 ------------------------------ */


@media screen and (min-width: 1200px) {
    .container {
        max-width: 1000px;

    }
}

/* ------------------------------
 loading
 ------------------------------ */
#main {
    width: 100vw;
    height: 100vh;

    display: none;
    opacity: 0;
}

html.is-loaded #main {
    display: block;
    -webkit-animation: loadings 0.4s ease-out both;
    animation: loadings 0.4s ease-out both;

}

@-webkit-keyframes loadings {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes loadings {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#loading {
    background-color: #DC3C2F;
    width: 100vw;
    height: 100svh;
    height: 100vh;
    display: grid;
    justify-content: center;
    align-items: center;
}

.bars {
    position: relative;
    height: 100px;
    width: 170px;
}

.bars__bar {
    position: absolute;
    top: 40%;
    bottom: 40%;
    width: 7%;
    background-color: #fefefe;
    -webkit-animation: bars 1.5s infinite ease-out;
    animation: bars 1.5s infinite ease-out;
}

.bars__bar--alt {
    background-color: rgba(254, 254, 254, 0.4);
}

.bars__bar--0 {
    left: 0%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.bars__bar--0--alt {
    left: 0%;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.bars__bar--1 {
    left: 18.6%;
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.bars__bar--1--alt {
    left: 18.6%;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.bars__bar--2 {
    left: 37.2%;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.bars__bar--2--alt {
    left: 37.2%;
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}

.bars__bar--3 {
    left: 55.8%;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.bars__bar--3--alt {
    left: 55.8%;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.bars__bar--4 {
    left: 74.4%;
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.bars__bar--4--alt {
    left: 74.4%;
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.bars__bar--5 {
    left: 93%;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.bars__bar--5--alt {
    left: 93%;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}


@-webkit-keyframes bars {

    0%,
    60% {
        top: 40%;
        bottom: 40%;
    }

    20% {
        top: 0;
        bottom: 40%;
    }

    40% {
        top: 40%;
        bottom: 0;
    }
}

@keyframes bars {

    0%,
    60% {
        top: 40%;
        bottom: 40%;
    }

    20% {
        top: 0;
        bottom: 40%;
    }

    40% {
        top: 40%;
        bottom: 0;
    }
}

/* ------------------------------
 共通クラス
 ------------------------------ */
.ttl {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.ttl-sub {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.ttl-sub img,
.ttl img {
    margin: 0 auto;
}

.ttl-sub {
    max-width: 85%;
}


.section {
    background-color: #fff;
    border-radius: 12px;
    -moz-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.1);
    padding: 80px;
    position: relative;
    z-index: 1;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}

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

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

/* 画面外にいる状態 */
.fadein {
    opacity: 0;
    transform: translate(0, 80px);
    transition: all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.button-wrapper {
    text-align: center;
}

.button {}

@-webkit-keyframes sheen {
    0% {
        transform: skewY(-45deg) translateX(0);
    }

    100% {
        transform: skewY(-45deg) translateX(12.5em);
    }
}

@keyframes sheen {
    0% {
        transform: skewY(-45deg) translateX(0);
    }

    100% {
        transform: skewY(-45deg) translateX(12.5em);
    }
}

.button {
    padding: 0.55em 4em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #F576A8;
    border: 2px solid #F576A8;
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    border-radius: 0.3em;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    -moz-box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
}

.button:before {
    content: "";
    background-color: rgba(255, 255, 255, 0.5);
    height: 100%;
    width: 3em;
    display: block;
    position: absolute;
    top: 0;
    left: -4.5em;
    transform: skewX(-45deg) translateX(0);
    transition: none;
}

.button:hover {
    color: #fff;
    text-decoration: none;
}

.button:hover:before {
    transform: skewX(-45deg) translateX(30em);
    transition: all 0.5s ease-in-out;
}


.btn {
    padding: 20px 40px;
    color: #F576A8;
    border: 1px solid #F576A8;
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;

}

.btn:hover {
    text-decoration: none;
    background-color: #F576A8;
    color: #fff;
    transition: 0.3s;
}



/* ------------------------------
#visual
 ------------------------------ */
#visual {
    background-image: url(../images/bg-main.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0 0 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-logo {
    max-width: 668px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: .6s fadeinlogo .6s forwards;
    opacity: 0;
}

@keyframes fadeinlogo {
    0% {
        transform: scale(0.9);
    }

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

.wave1 {
    position: absolute;
    top: 0%;
}

.wave2 {
    position: absolute;
    bottom: 0;
}

/* ------------------------------
#aikoi2023
 ------------------------------ */
#aikoi2023 {
    background-color: #DC3C2F;
    color: #fff;
    padding-bottom: 0;
    overflow-y: hidden;

}

#aikoi2023 .ttl {
    max-width: 654px;
}

#aikoi2023 p {
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.aikoi-images {
    max-width: 453px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.aikoi-label {
    max-width: 400px;
    margin: 0 auto;
    padding-bottom: 40px;
}

#aikoi2023 .section-aikoi p {
    color: #000;
    font-weight: bold;
    margin-bottom: 0;
    max-width: 100%;
}

.aikoi-flex {
    max-width: 660px;
    margin: 0 auto;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
}

.aikoi-flex img {
    margin-bottom: 30px;
}

.aikoi-left,
.aikoi-right {
    max-width: 300px;
}

.aikoi2023-designer {
    padding: 60px 0;
    max-width: 90%;
    margin: 0 auto;
}

.aikoi2023-designer h3 {
    text-align: left;
    font-weight: bold;
    font-size: 24px;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

#aikoi2023 .aikoi2023-designer p {
    max-width: 100%;
    margin-bottom: 10px;
}

p.profile {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
}

/* ------------------------------
#campaign
 ------------------------------ */
#campaign {
    margin-bottom: 0;
    padding-bottom: 0;
    position: relative;
}

#campaign .circle-left {
    left: 2%;
}

.campaign-container {
    max-width: 484px;
    margin: 0 auto;
}

.step1 {
    max-width: 237px;
    margin: 0 auto;
    padding-bottom: 30px;
    padding-top: 30px;
}

.step2 {
    padding-top: 30px;
    max-width: 450px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.step3 {
    max-width: 568px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.campaign-image {
    position: relative;
}

.campaign-image-left,
.campaign-image-right,
.campaign-image-right-bottom{
    position: absolute;
}

.campaign-image-left {
    max-width: 146px;
    top: -18px;
    left: -14px;
}

.campaign-image-right {
    max-width: 167px;
    right: -28px;
    top: -27px;
}

.campaign-image-right-bottom{
    max-width: 167px;
    right: -28px;
    top: 257px;

}

.campaign-diagnose {
    padding: 60px 0;
}

.campaign-diagnose .ttl {
    max-width: 370px;
    margin-bottom: 20px;
}

.kiyaku-box {
    text-align: left;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #F576A8;
    padding: 20px;
    height: 300px;
    overflow-y: scroll;
}

/* Firefox */
.kiyaku-box {
    scrollbar-width: thin;
    scrollbar-color: #F576A8 #B1B1B1;
}

/* Chrome, Edge and Safari */
.kiyaku-box::-webkit-scrollbar {
    width: 10px;
    width: 10px;

}

.kiyaku-box::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #B1B1B1;

}

.kiyaku-box::-webkit-scrollbar-track:hover {
    background-color: #B1B1B1;
}

.kiyaku-box::-webkit-scrollbar-track:active {
    background-color: #B1B1B1;
}

.kiyaku-box::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #F576A8;
}

.kiyaku-box::-webkit-scrollbar-thumb:hover {
    background-color: #F576A8;
}

.kiyaku-box::-webkit-scrollbar-thumb:active {
    background-color: #F576A8;
}

/* 縦方向のスクロールバーの上部に10pxの隙間を設定 */
.kiyaku-box::-webkit-scrollbar-thumb:start {
    margin-top: 10px;
}

/* 縦方向のスクロールバーの下部に10pxの隙間を設定 */
.kiyaku-box::-webkit-scrollbar-thumb:end {
    margin-bottom: 10px;
}

.kiyaku-box h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.8;
}

.kiyaku-box p {
    margin-bottom: 50px;
    font-size: 16px;
    font-size: 1.6rem;
}


.kiyaku-box a {
    color: #4F65FB;
}

.kiyaku .ttl {
    max-width: 202px;
    margin-bottom: 15px;
}

.campaign-container .ttl {
    max-width: 316px;
}

/* ------------------------------
#baton
 ------------------------------ */
#baton .ttl {
    max-width: 320px;
}

.baton-item-text {
    text-align: left;
    padding-left: 50px;
}

.baton-item-text p {
    padding-bottom: 30px;
}

.baton-item-photo {
    margin-right: 5%;
}

#baton .button {
    padding: 0.55em 2em;
}


.baton-item-text .button-wrapper {
    text-align: left;
}

/* ------------------------------
#events
 ------------------------------ */

#events {
    color: #fff;
    background-color: #2E2E2E;
    position: relative;
}

.events .ttl {
    max-width: 250px;
}

.events-box {
    padding: 60px 30px;
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

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

.event-item-artist {
    max-width: 370px;
    margin: 0 auto;
}

.event-item-artist h4{
    font-weight: bold;
    font-size: 20px;
    font-size: 2.0rem;
    text-align: left;
    margin-bottom: 15px;
}

.event-item-artist h4 img{
    max-width: 115px;
}
.artist {
    display: flex;
    justify-content: space-between;
}

.artist-item {
    max-width: 145px;
    margin-bottom: 20px;
}

.artist-flex{
    display: flex;
    justify-content: space-between;
}
.artist-thum{
    margin-bottom: 10px;
}
.artist-insta i{
    font-size: 18px;
}
.artist-insta img{
    width: 30px;
}
.events-item-schedule {

    padding-top: 20px;
    padding-bottom: 40px;
}

.events-item-logo,
.events-item-subtitle {}

.events-item-logo {
    padding-bottom: 20px;
    max-width: 310px;
    margin: 0 auto;
}

.events-item-subtitle {
    padding-bottom: 40px;
}

.event-item-artist .events-item-logo {
    max-width: 128px;
    margin-bottom: 20px;
}


@media screen and (max-width: 767px) {
    .events-item-image {
        margin-bottom: 60px;
    }


}

.circle-left,
.circle-right {
    position: absolute;
    z-index: 0;
}

.circle-left {
    max-width: 130px;
    bottom: 10%;
    animation: fuwafuwa_2 3s ease 0s infinite;
}

.circle-right {
    max-width: 199px;
    top: 0;
    right: -100px;
    animation: fuwafuwa_1 4s ease 0s infinite;
}


@keyframes fuwafuwa_1 {
    0% {
        transform: translate(0, 0);
        transform: scale(1);
    }

    50% {
        transform: translate(0, -15%);
        transform: scale(0.8);
    }

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


@keyframes fuwafuwa_2 {
    0% {
        transform: translate(0, 0);
        transform: scale(1);
    }

    50% {
        transform: translate(0, -15%);
        transform: scale(0.8);
    }

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

/* ------------------------------
 Information 
 ------------------------------ */

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

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





/* ------------------------------
 #diagnostics
 ------------------------------ */



#diagnostics {}

#diagnostics .container {
    max-width: 500px;
}

.diagnostics h1 {
    max-width: 80px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.diagnostics h2 {
    font-weight: bold;
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 30px;
}

.diagnostics-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.diagnostics-flex2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.diagnostics-flex div {
    width: 23%;
    padding: 5px;
}

.diagnostics-flex2 div {
    width: 50%;
    padding: 5px;
}

.diagnostics-flex2 a,
.diagnostics-flex a {
    background-color: #F576A8;
    border-radius: 4px;
    display: block;
    padding: 10px 5px;
    color: #fff;
    border: 1px solid #F576A8;
    transition: 0.3s;
}

.diagnostics-flex2 a:hover,
.diagnostics-flex a:hover {

    transition: 0.3s;
    text-decoration: none;
    transform:scale(1.2,1.2);
}


.diagnostics-flex a.no {
    background-color: #fff;
    color: #F576A8;
    border: 1px solid #F576A8;
    border-radius: 4px;
    display: block;
    padding: 10px 5px;
}

.diagnostics-flex a.no:hover {
    background-color: #F576A8;
    color: #fff;
    transition: 0.3s;
    text-decoration: none;
}


.diagnostics {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  position: relative;
}

.diagnostics.fade-out {
  opacity: 0;
  display: none;
}

.heart{
    position: absolute;
    top: 0;
    z-index: -1;
    left: 50%;
    margin-left: -160px;
    top: 50%;
    margin-top: -160px;
    opacity: 0;
}

.zoom {
  animation: zoomIn 0.7s ease-in-out forwards;
  animation-delay: 2s;
  transform: scale(0,0);
}

@keyframes zoomIn {
  100% {
    transform: scale(1,1);
    opacity: 1;
  }
}
#gototop {
    padding: 200px 0 30px 0;
    background-image: url(../images/wave2.png);
    background-repeat: no-repeat;
    background-position: bottom;
}

.gototop {}

.gototop a {
    display: inline-block;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    padding: 10px 40px;
}

.gototop a:hover {
    text-decoration: none;
    background-color: #fff;
    color: #DC3C2F;
    transition: 0.3s;
}




.notice {
    padding-top: 15px;
}

.notice p{
    font-size: 10px;
    font-size: 1.0rem;
    text-align: left;
}


.artist-container {
    max-width: 640px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.title {
    margin-top: 40px;
    margin-bottom: 40px;
}

.title p {
    color: #F576A8;
    padding-bottom: 10px;
}

.title img {
    max-width: 350px;
    margin: 0 auto;
}

.description p {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
}


.artist-song p {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-size: 2.4rem;
    color: #fff;
}

.artist-name p {
    color: #fff;
}

.artist-campaign {
    margin: 0 auto 20px auto;
    display: flex;


    max-width: 640px;
    justify-content: space-between;
}

.artist-campaign-2 {
    margin: 0 auto;

    max-width: 640px;

}

.artist-campaign-title {
    background-color: #F576A8;
    padding: 10px 30px;
    border-radius: 10px;
}

.artist-campaign-image {
    padding: 5px;
}

.artist-campaign-item {
    max-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 0 #830a17;
    transition: 0.3s;
}

.artist-campaign-item:hover,
.artist-campaign-item:active {
    box-shadow: none;
    transform: translateY(5px);
    transform: scale(1.2);
}

.text-right p {
    text-align: right;
}

.artist-campaign-2 .button-wrapper {
    max-width: 70%;
    margin: 0 auto;
    padding-top: 20px;
}

.artist-widget {
    margin-top: 40px;
    margin-bottom: 20px;
}

.artist-widget iframe {
    width: 500px;
    height: 500px;
}

.artist-campaign-2 .text-right p {
    color: #fff;
}

#artist-song-list {
    background-color: #DC3C2F;
    padding-top: 180px;
}

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

.section-head .ttl {
    margin-bottom: 0;
    margin-left: auto;
    max-width: 330px;
    margin-right: 0;
}

.section-head .icon {
    max-width: 200px;
}

.section-head {
    margin-bottom: 40px;
}

.section-list table {
    width: 100%;
}

.section-list table td {

    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px;
    vertical-align: top;
}

.section-list table {
    border-top: 1px solid #D4D3D3;
}

.section-list table tr {
    border-bottom: 1px solid #D4D3D3;
}

.section-list table td:first-child {
    width: 10%;
}

.section-list table td:last-child {
    width: 30%;
}

.section-list table td:nth-child(2) {
    font-weight: bold;
    width: 60%;
}

#artist-song-list .button-wrapper {
    padding: 60px 0;
}


.artist-campaign-2 .btn {
    background-color: #fff;
}

.artist-campaign-2 .btn:hover {
    opacity: 0.8;
    color: #F576A8;
}


#artist {
    z-index: 1;
    position: relative;
}

#artist-wave {
    position: relative;
    margin-top: -425px;
    z-index: 0;
}

#artist-wave .wave2 {
    position: relative;
}

#artist .circle-right {
    max-width: 80px;
    right: 10%;
    top: 3%
}

#artist .circle-left {
    max-width: 100px;
    top: 50%;
    left: 30px;
}
.artist-campaign-desc{
    padding-top: 30px;
    padding-bottom: 30px;
}
.artist-campaign-desc p{
    color: #fff;
}

/*両端にスラッシュを付ける*/
.artist-campaign-desc p {
  position: relative;
  display: inline-block;
  padding: 0 45px;
 border-bottom: none;
}
.artist-campaign-desc p:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: white;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.artist-campaign-desc p:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: white;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.artist-campaign-desc p:before {
  left:0;
}
..artist-campaign-desc p:after {
  right: 0;
}
/* ------------------------------
 モバイル修正
 ------------------------------ */
@media screen and (max-width: 767px) {
    p {
        font-size: 16px;
        font-size: 1.6rem;
    }

    section {
        padding: 20px 0;
        overflow: hidden;
    }

    .btn {
        padding: 10px;
        font-size: 14px;
        font-size: 1.4rem;
    }


    #visual {
        height: 80vh;
    }

    .visual-logo h1 {
        padding: 18vw;
    }


    .aikoi-images {
        padding: 0 30px;
    }

    #aikoi2023 .ttl {
        width: 70%;
    }

    #aikoi2023 .ttl.ttl-jaket {
        width: 100%;
    }

    .aikoi-left {
        padding-right: 15px;
    }

    .aikoi-right {
        padding-left: 15px;
    }

    #aikoi2023 p {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .baton-item p {
        text-align: left;
        font-weight: bold;
    }

    .step1,
    .step2 {
        max-width: 70%;
    }

    .campaign-image-right {
        right: -20px;
        top: -18px;
    }


    .campaign-image-right-bottom{
        right: -20px;
        top: -20px;
    }

    .campaign-diagnose .ttl {
        max-width: 90%;
    }


    #campaign,
    .section.baton {
        margin-bottom: 60px;
    }


    #baton .ttl {
        max-width: 70%;
    }

    .baton-item-photo {
        margin-right: 0%;
        padding: 0 30px;
        margin-bottom: 30px;
    }

    .circle-left {
        max-width: 100px;
        top: 60px;
        left: -30px;
        bottom: auto;

    }

    .circle-right {
        max-width: 100px;
        bottom: 5%;
        top: auto;
        right: -30px;
    }

    .wave4 {
        margin-bottom: 60px;
    }

    .wave4 img {
        margin: 0 auto;
    }



    .button {
        font-size: 16px;
        font-weight: 1.6rem;
    }

    .section {
        padding: 30px 15px;
    }

    .baton-item-text {
        padding-left: 0;
    }

    .ttl {
        margin-bottom: 30px;
    }

    .events .ttl {
        max-width: 210px;
    }



    .events-item-logo,
    .events-item-subtitle {
        max-width: 80%;
        margin: 0 auto;
    }

    .footer-description p,
    footer {
        font-size: 11px;
        font-size: 1.1rem;
    }


    .artist-widget iframe {
        width: 250px;
        height: 250px;
    }

    #artist .circle-right,
    #artist .circle-left {
        display: none;
    }

    #artist-wave {
        margin-top: -30vh;
    }

    .artist-campaign {
        display: block;
    }

    .artist-campaign-item {
        margin: 0 auto 30px auto;
    }

    .text-right p {
        text-align: center;
    }

    .section-head .icon {
        max-width: 120px;
    }

    .section-head .ttl {
        max-width: 200px;
    }

    .section-list table td:last-child {
        display: none;
    }

    .section-list table td:nth-child(2) span {
        font-size: 11px;
        font-size: 1.2rem;
        font-weight: normal;
    }

    .section-list table td:first-child {
        min-width: 30px;
    }

    .section-list table td:nth-child(2) {
        width: 100%;
    }
    .description{
      padding: 0 15px;
    }
    #artist-song-list {

        padding-top: 80px;
    }
    .baton-item-text .button-wrapper{
        text-align: center;
    }
    .artist-campaign-desc p {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 767px) {
    .visual-logo h1 {
        padding: 22vw;
    }
    .artist-campaign-desc p {
        font-size: 12px;
        font-size: 1.2rem;
    }
}
@media screen and (max-width: 480px) {
    .artist-campaign-desc p {
        font-size: 12px;
        font-size: 1.2rem;
    }
        #artist-wave {
        margin-top: -30vh;
    }
}

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

        #artist-wave {
        margin-top: -35vh;
    }
        .artist-item {
        max-width: 120px;

    }
}


.events-item-image p{

}

.events-item-image ul li,
.events-item-image p{
    text-align: left;
}

.events-item-image ul li{
    text-indent: -1em;
   padding-left: 1em;
   font-size: 10px;
}

.shop{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.event-item-shop{
    padding: 20px;
}
.events-item-title h3{
    text-align: left;
    padding-top: 40px;
    padding-bottom: 20px;
}
.shop-item{
    width: 48%;
    display: flex;
    text-align: left;
    margin-bottom: 20px;
}
.shop-flex{
    padding-left: 15px;
}
.shop-thum{
    min-width: 130px;
    max-width: 130px;
}
.shop-name{
    font-weight: bold;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    line-height: 1.2;
    padding-bottom: 10px;
}

.shop-desc p{
    font-size: 13px;
}

@media screen and (max-width: 767px) {
    .shop{
        display: block;
    }
    .shop-item{
        width: 100%;
        margin-bottom: 40px;
    }
    .shop-thum{
        max-width: 80px;
        min-width: 80px;
    }

}