/** Shopify CDN: Minification failed

Line 237:3 Expected ":"
Line 403:5 Expected ":"
Line 448:3 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:blogcategory-list (INDEX:3) */
.cate-head h2 {
    color: #7f7f7f !important;
}
/* END_SECTION:blogcategory-list */

/* START_SECTION:company-rule (INDEX:13) */
.footer-rule {
    margin: 0 auto;
    background: linear-gradient(287deg, rgba(255, 211, 226, 1), rgba(17, 107, 158, 1) 50%, rgba(168, 255, 251, 1) 100%);
    padding: 20px;
    position: relative;
}

.ruleInner {
    width: 70%;
    margin: auto;
}
  
ul.frBox {
    list-style: none;
    display: inline-flex;
    width: 100%;
    flex-wrap: wrap;
    padding-left: 0;
   color: #24272B;
}

  ul.frBox li {
    width: 23%;
    margin: 1%;
}

  ul.frBox li ul {
    list-style: none;
    padding-left: 0px;
}

  ul.frList li {
    width: 100%;
    color: #b3b3b3;
}


  ul.frBox li p {
    padding-bottom: 5px;
    font-size: 130%;
    font-weight: bold !important;
    margin-bottom: 0;
    color: #fff;
}

ul.frList li a {
    color: #fff !important;
  text-decoration: unset;
}  

ul.frList li a:hover {
    text-decoration: underline;
}
  

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

ul.frBox {
    display: block;
    padding: 30px 0;
    margin-bottom: 0;
}

.ruleInner {
    width: 90%;
}

ul.frBox li {
    width: auto;
    margin: 1%;
    margin-bottom: 20px;
}
  
}/*-media max 640-*/
/* END_SECTION:company-rule */

/* START_SECTION:news-list (INDEX:47) */
/*div#section-news-list {
    background-image: url(https://cdn.shopify.com/s/files/1/0662/4506/6925/files/HOYA_FANCLUB-PAGE_BG_Ver.2.png?v=1720083435);
    background-size: cover;
    background-position: center;
    height: 550px;
    margin: 10px 0;
}*/

#section-news-list {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    position: relative;
}

a {
    color: #3d3d3d !important;
}
  
#section-news-list .news-list-heading{
    display: block;
    margin-bottom: 5px;
  text-align: center;
  }
  #section-news-list .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px;
    position: relative;
  }

ul.news-list {
    list-style: none;
}

  #section-news-list .news-list-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    position: relative;
}

  li.news-list-item a {
    color: #414141;
    text-decoration: none;
}
  
  #section-news-list .news-list-item>a{
    display: flex;
    align-items: center;
    padding: 20px;
  }
  #section-news-list .news-list-item:last-child{
    border-bottom: none;
  }
  #section-news-list .news-list-date{
    font-size: 12px;
    margin-right: 5px;
  }
  #section-news-list .news-list-category{
    font-size: 1rem;
    color: #156d9f;
    font-weight: bold;
    margin-right: 10px;
  }
  
  #section-news-list .news-list-info{
    position: relative;
    top: -1px;
  }
  #section-news-list .news-list-title{
    font-size: 14px;
    margin-bottom: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    top: 1px;
  }

p.viewall {
    text-align: center;
  text-decoration: unset;
}

  p.viewall a {
    background: #fff;
    padding: 5px 30px;
    font-size: 1rem;
    border-radius: 10px;
    color: black;
    text-decoration: unset;
    
}

#section-news-list .news-list-item:last-child {
    border-bottom: none !important;
}

.news-list-heading h2 {
   font-size: 3rem;
    position: relative;
    margin-bottom: 50px;
    font-family: "Lobster", serif;
    font-weight: bolder;
    font-style: italic;
    color: #fff;
}

.news-list-heading h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #fff;
    border-radius: 2px;
}

.no-articles {
    padding: 20px;
}

p.commet-cnt {
    position: absolute;
    right: 15px;
    font-size: 1rem;
    bottom: 0;
    font-weight: bold;
}

/*========= 流体シェイプを動かす ===============*/
.fluid {
  /*横幅*/
  width: 60vh;
  /*縦幅*/
  height: 60vh;
　/*影色*/
  box-shadow: 12px 12px 2px 1px rgba(251, 128, 128, 0.4);
  /*背景色*/
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 211, 226, 1), rgba(17, 107, 158, 1) 50%, rgba(168, 255, 251, 1) 100%
  );
  /*アニメーションの設定*/
  animation: fluidrotate 5s ease 0s infinite;
  position: absolute;
  left:15%;
  top:10%;
  opacity:.6;
}

@keyframes fluidrotate {
  0%,
  100% {
    /*【解説】border-radius:楕円の横の半径/楕円の縦の半径;*/
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 30%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 90% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

div:empty {
    display: block !important;
}
  
@media screen and (max-width: 768px){
    #section-news-list .container{
      padding: 35px 10px;
    }
    
    #section-news-list .news-list-item>a{
      display: block;
      padding: 15px;
    }
    
    #section-news-list .news-list-info{
      margin-bottom: 5px;
    }
    
}/*-media max 768-*/

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

div#section-news-list {
    height: auto;
  background-size: 500px auto;
  z-index: 0;
}
  
.productBox {
  padding: 1% !important;
}

ul.collection-products li {
    width: 48% !important;
    margin: 1% !important;
    padding: 0 !important;
}

ul.news-list {
    padding-left: 0;
}

.fluid {
    width: 30vh !important;
    height: 30vh !important;
    left: 0%;
}

  
}/*-media max 640-*/
/* END_SECTION:news-list */

/* START_SECTION:profilespace (INDEX:53) */
.profileSpace {
    max-width: 1200px;
    margin: 0 auto;
    padding: 55px;
  text-align: center;
  position: relative;
}

ul.dkbProfile {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: unset;
}

ul.dkbProfile li {
    width: 23%;
    margin: 1%;
  position: relative;
  height: 310px;
}

ul.dkbProfile li a {
  position: relative;
  display: inline-block;
  height: 310px;
}

ul.dkbProfile li a img {
    max-width: 100%;
  height: 310px;
}
  
ul.dkbProfile li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 黒いオーバーレイ */
  opacity: 0;
  transition: opacity 1s;
}

ul.dkbProfile li a:hover::after {
  opacity: 1;
  transition: 1.5s;
}

  
p.proNanme {
    position: absolute;
    z-index: 999;
    /* bottom: 0; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    line-height: 1;
}  

span.proText {
    opacity: 0;
  　transition-duration: 1s;
}
  
ul.dkbProfile li a:hover span.proText {
   opacity: 1;
  transition-duration: 1s;
  　
}

.profileSpace h2 {
    font-size: 3rem;
    position: relative;
    margin-bottom: 50px;
  font-family: "Lobster", serif;
font-weight: bolder;
font-style: italic;
  color: #fff;
}

.profileSpace h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #d9d9d9;
    border-radius: 2px;
} 

.bg-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(287deg, rgba(255, 211, 226, 1), rgba(17, 107, 158, 1) 50%, rgba(168, 255, 251, 1) 100%);
  transition: background 3.5s ease;
  z-index: -1;
  display: block !important;
}

/*========= 流体シェイプを動かす ===============*/
.fluid {
  /*横幅*/
  width: 50vh;
  /*縦幅*/
  height: 50vh;
　/*影色*/
  box-shadow: 12px 12px 2px 1px rgba(251, 128, 128, 0.4);
  /*背景色*/
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(255, 211, 226, 1), rgba(17, 107, 158, 1) 50%, rgba(168, 255, 251, 1) 100%
  );
  /*アニメーションの設定*/
  animation: fluidrotate 5s ease 0s infinite;
  position: absolute;
  opacity:.6;
}

.flud2 {
    left: 65% !important;
    top: 70% !important;
}

@keyframes fluidrotate {
  0%,
  100% {
    /*【解説】border-radius:楕円の横の半径/楕円の縦の半径;*/
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 30%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 90% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

div:empty {
    display: block !important;
}

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

}/*-media max 768-*/ 

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

  .profileSpace {
    padding: 10px;
    padding-top: 55px;
}

  ul.dkbProfile li {
        width: 48% !important;
        margin: 1%;
        position: relative;
        height: 200px;
}

.flud2 {
    left: 50% !important;
        top: 0% !important;
        width: 20vh !important;
        height: 20vh !important;
}

ul.dkbProfile li a {
    height: 200px;
  width: 100%;
}

ul.dkbProfile li a img {
    height: 200px;
  width: 100%;
  object-fit: cover;
}

}/*-media max 640-*/
/* END_SECTION:profilespace */

/* START_SECTION:sns (INDEX:58) */
div#shopify-section-template--15956649803872__sns_cG8Qqi {
    padding: 50px;
    margin-bottom: 70px;
}

  .social-box {
    padding: 0px 20px;
    position: relative;
}

  .list-social {
    justify-content: center !important;
}
  .social-box .list-social__item .icon {
    height: 40px !important;
    width: 40px !important;
}

  .social-box h2 {
    text-align: center;
    font-size: 3rem;
    position: relative;
    margin-bottom: 50px;
    font-family: "Lobster", serif;
    font-weight: bolder;
    font-style: italic;
    color: #fff;
}

  .social-box h2:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    display: inline-block;
    width: 60px;
    height: 3px;
    -webkit-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #b3b3b3;
    border-radius: 2px;
}

  .social-box a.link.list-social__link {
    color: #fff !important;
}

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

    .social-box .list-social__item .icon {
    height: 30px !important;
    width: 30px !important;
}

}/*-media max 640-*/
/* END_SECTION:sns */

/* START_SECTION:topbox-shita (INDEX:59) */
.circle-wrap {
width: 400px;   /* ← 小さく */
height: 400px;
margin: 0 auto;
position: relative;
}

.circle-text {
width: 100%;
height: 100%;
position: relative;
animation: rotateCircle 60s linear infinite; /* ゆっくり */
}

.circle-text span {
position: absolute;
left: 50%;
top: 50%;
transform-origin: 0 0;
font-size: 34px;          /* ← 小さく */
font-weight: 600;
letter-spacing: 4px;      /* ← ここで間隔広げる */
white-space: nowrap;
color: transparent;
-webkit-text-stroke: 2px #fff;
}

.circle-text span:first-child {
color: #fff;
}


.top-massage-shita {
padding: 5%;
background: #000000a3;
}

@keyframes rotateCircle {
from { transform: rotate(0deg); }
to   { transform: rotate(360deg); }
}

ul.audition-ul {
padding: unset;
width: 90%;
margin: auto;
text-align: center;
}

li.audition-box {
display: inline-flex;
width: 100%;
justify-content: center;
align-items: center;
max-width: 1200px;
}

li.audition-box:first-child,li.audition-box:nth-child(3n) {
justify-content: left;
}

li.audition-box:nth-child(2n) {
justify-content: right;
}

.audition-circle {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}

.audition-list {
display: inline-flex;
align-items: center;
width: 100%;
}

p.circle-text2 {
font-size: 8rem;
color: #fff;
font-weight: bold;
position: relative;
left: -120px;
width: 65%;
border-bottom: 1px solid;
}

.audition-list ul {
text-align: left;
color: #fff;
font-weight: bold;
padding-left: 0;
width: 35%;
}

p.promise {
width: 90%;
margin: auto;
text-align: center;
font-size: 2rem;
color: #fff;
font-weight: bold;
margin-top: 50px;
margin-bottom: 50px;
}

.audition-list {
background: black;
padding: 1%;
}

@media screen and (max-width: 640px){

.top-massage {
    width: 100% !important;
}

h1#blinkText {
    font-size: 10rem;
}

.circle-wrap {
width: 100px;
height: 100px;
}

p.circle-text2 {
font-size: 3rem;
left: -70px;
width: 40%;
}

.circle-text span {
font-size: 18px;
-webkit-text-stroke: 1px #fff;
}

li.audition-box {
    margin: 40px 0;
}

ul.audition-ul {
    width: 100%;
}

.audition-list ul {
    width: 60%;
    padding-left: 30px;
}

ul.aos-init.aos-animate li {
    font-size: 1.3rem;
}

.audition-list {
    padding: 5% 0;
}

}/*-media max 640-*/
/* END_SECTION:topbox-shita */

/* START_SECTION:topbox-sma (INDEX:60) */
.vegas-slide-inner{
  display:block !important;
}  

.vegas-overlay {
  display: block !important;
  opacity: .99;
}  
  
.topBox-sma {
    background: linear-gradient(287deg, rgba(255, 211, 226, 1), rgba(17, 107, 158, 1) 50%, rgba(168, 255, 251, 1) 100%);
    height: 100vh;
    position: relative;
    background-attachment: fixed;
  background-size: cover;
      background-position: center;
} 

.topBox-sma:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.topRegistBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  padding: 0 5%;
    width: 50%;
}

.topBox-sma h2 {
    color: #fff;
  margin-bottom: 0;
  font-weight: normal;
  font-family: "Lobster", serif;
  font-size: 5rem;
}

.topRegistBox ul {
    display: inline-flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
    width: 100%;
}

.topRegistBox ul li {
    width: 48%;
    margin: 1%;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.3);
  padding: 5px;
}

.lineBtn {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.lineBtn p {
    background: #00a700;
    color: #fff;
    width: 20%;
    margin: auto;
    padding: 10px;
    border-radius: 50px;
    font-weight: bold;
}

p.boxP {
    color: #fff;
    font-size: 70%;
}

.topRegistBox li a {
    text-decoration: none;
    color: #fff !important;
}  

.lineBtn p a {
    text-decoration: none;
    color: #fff !important;
}  

p.payLogin {
    color: #fff;
}

p.payLogin {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
}

span.payLoginSpan {
    font-size: 1.5rem;
    font-weight: normal;
}

span.payLoginSpan a {
    color: #fff !important;
} 

p.payLogin img, .topRegistBox img {
    width: 200px;
}

@media screen and (min-width: 641px){
  .topBox-sma{
    display:none;
  }
}
  
@media screen and (max-width: 640px){

.topBox-sma {
    background: linear-gradient(287deg, rgba(255, 211, 226, 1), rgba(17, 107, 158, 1) 50%, rgba(168, 255, 251, 1) 100%);
    height:73vh;
    background-attachment: unset;
    background-size: cover;
    background-repeat: no-repeat;
}

.topRegistBox {
    width: 90%;
  top: 70% !important;
}

.topBox-sma h2 {
    font-size: 3.5rem;
  margin-top: 0;
}

.topRegistBox ul{
  margin-bottom: 0;
}
  
.topRegistBox ul li {
    font-size: 1.5rem;
    padding: 5px;
}  

.lineBtn p {
    width: 55%;
    padding: 5px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
}

p.payLogin img, .topRegistBox img {
    width: 120px;
}

p.payLogin {
    font-size: 80% !important;
}
  
}/*-media max 640-*/
/* END_SECTION:topbox-sma */

/* START_SECTION:topbox (INDEX:61) */
.section-header.shopify-section-group-header-group {
    z-index: 10 !important;
}

.topLogo {
    height: 100vh;
}
  
.topLogo img {
    position: absolute;
    top: 85%;
    left: 52%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 300px;
    height: auto;
}

.scrollFade {
    transition: opacity 1.5s ease; /* フェード効果の速さとイージングを調整可能 */
}

.scrollFade.fade-out {
    opacity: 0;
}

#blinkText {
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  letter-spacing: -16px;
  margin-bottom: 50px;
  font-size: 20rem;
    line-height: .5;
}

.char {  
  display: inline-block;
  transition: opacity 1s linear;
}

.top-massage{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 800px;
}

.scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 5;
  pointer-events: none;
}

.scroll-text {
  display: block;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.scroll-line {
  position: relative;
  display: block;
  width: 2px;
  height: 60px;
  margin: 0 auto;
  background: rgba(255,255,255,0.3);
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollMove 1.8s ease-in-out infinite;
}

p.auditionP {
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
}

@keyframes scrollMove {
  0% {
    top: 0;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    top: 45px;
    opacity: 1;
  }
  100% {
    top: 60px;
    opacity: 0;
  }
}


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

.topLogo img {
    top: 80%;
        left: 52%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        width: 300px;
    }


}/*-media max 640-*/
/* END_SECTION:topbox */