@charset "utf-8";
@import url("reset.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

html {
  background: url('../img/common/bg.gif') repeat #288ebe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  font-size: 1em;
  color: #000;
  margin: auto;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media only screen and (max-width: 1000px) {
  body {
  }
}
@media screen and (max-width: 560px) {
  body {
    font-size: 0.8em;
    min-width: inherit;
  }
}
img {
  border: none;
}
table {
  border-collapse: collapse;
}
iframe {
  display: block;
}
a {
  color: #1B1B1B;
}
a:hover {
  text-decoration: none;
}
.small {
  font-size: 0.8em;
}
.nowrap {
  white-space: nowrap;
  display: inline-block;
}

.fontRed {
  color: #B10002;
}

.fontBlue {
  color: #122990;
}

.fontGreen {
  color: #075F09;
}

.fontYellow {
  color: #fefc8c;
}

.material-icons {
  font-family: 'Material Icons';
}

/*================================================
inview
================================================*/

.scrollView {
  opacity: 0;
  transform: translate(0,30px);
  -webkit-transform: translate(0,30px);
  transition: 1s;
}

.scrollViewAction {
  opacity: 1.0;
  -webkit-animation: scrollViewA 0.8s forwards ease-in-out;
  animation: scrollViewA 0.8s forwards ease-in-out;
}
@-webkit-keyframes scrollViewA {
  0% {
    opacity: 0;
    -webkit-transform: translate(0,30px);
  }
  100% {
    opacity: 1.0;
    -webkit-transform: translate(0,0);
  }
}
@keyframes scrollViewA {
  0% {
    opacity: 0;
    transform: translate(0,30px);
    -webkit-transform: translate(0,30px);
  }
  100% {
    opacity: 1.0;
    transform: translate(0,0);
    -webkit-transform: translate(0,0);
  }
}

.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeInAction {
  opacity: 1.0;
  -webkit-animation: fadeInA 0.8s forwards ease-in-out;
  animation: fadeInA 0.8s forwards ease-in-out;
}
@-webkit-keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}
@keyframes fadeInA {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1.0;
  }
}

.popIn {
  opacity: 0;
  transform: scale(0.7);
  transition: 1s;
}
.popInAction {
  opacity: 1.0;
  transform: scale(1.0);
  -webkit-animation: popInA 0.2s forwards ease-out;
  animation: popInA 0.2s forwards ease-out;
}
@-webkit-keyframes popInA {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1.0;
    transform: scale(1.0);
  }
}
@keyframes popInA {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1.0;
    transform: scale(1.0);
  }
}

/*********************/
/** #header **/
/*********************/

#toggle {
  position: fixed;
  top: 3vw;
  right: 3%;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s ease;
  padding: 5px;
  transform: scale(1.5);
}
@media only screen and (max-width: 1000px) {
  #toggle {
    transform: scale(1.2);
  }
}
@media screen and (max-width: 560px) {
  #toggle {
    transform: scale(1);
  }
}


.bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #000;
  border-radius: 1px;
  transition: all 0.3s ease;
}

#bar01 { top: 0; }
#bar02 { top: 10px; }
#bar03 { top: 20px; }

#toggle.toggleOpen .bar {
  background-color: #fff;
}

#toggle.toggleOpen #bar01 {
  top: 11px;
  transform: rotate(45deg);
}

#toggle.toggleOpen #bar02 {
  opacity: 0;
}

#toggle.toggleOpen #bar03 {
  top: 11px;
  transform: rotate(-45deg);
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

#mainMenu {
  position: fixed;
  top: 0;
  right: -30vw;
  width: 30vw;
  min-width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  transition:
    right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease;
  opacity: 0;
}
@media only screen and (max-width: 560px) {
  #mainMenu {
    right: -105vw;
    width: 100vw;
  }
}

#mainMenuHeader, #mainMenuFooter {
  display: none;
}
@media only screen and (max-width: 560px) {/**foriOS27hack**/
  #mainMenu.active #mainMenuHeader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #000;
    color: #000;
    z-index: 1001;
    font-size: 0.5em;
  }
  #mainMenu.active #mainMenuFooter {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #000;
    color: #000;
    z-index: 1001;
    font-size: 0.5em;
  }
}


#mainMenu.active {
  opacity: 1;
  right: 0;
}

#mainMenu ul:not(:is(aside ul)) {
  list-style: none;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease 0.2s;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#mainMenu.active ul {
  opacity: 1;
  transform: translateY(0);
}

#mainMenu ul:not(:is(aside ul)) li {
  margin: 10px 0;
}

#mainMenu ul:not(:is(aside ul)) a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 1.3em;
  padding: 0.5em 1.5em;
  transition: all 0.3s ease;
  border-radius: 5px;
}

#mainMenu ul:not(:is(aside ul)) a:hover {
  background: rgba(255, 255, 255, 0.1);
}

#mainMenu ul:not(:is(aside ul)) a .small {
  display: block;
  font-size: 0.7em;
  font-weight: 300;
  opacity: 0.8;
}

/*********************/
/** #title **/
/*********************/

#title {
  background: #FFF;
  position: relative;
  text-align: center;
  margin: 0 auto 70px auto;
  padding: 5vw 0 3vw 0;
}
@media only screen and (max-width: 560px) {
  #title {
    margin: 0 auto 30px auto;
    padding: 15vw 0 0 0;
  }
}

#title::after {
  position: absolute;
  bottom: -70px;
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background:url("../img/common/bgRound-B.png") no-repeat bottom center;
  background-size: 100% 70px;
}
@media only screen and (max-width: 560px) {
  #title::after {
    background-size: 150% 70px;
  }
}

#title #headerCatchcopy {
  font-size: 3em;
  font-weight: 800;
  margin-bottom: 0.5em;
  text-align: center;
}
@media only screen and (max-width: 560px) {
  #title #headerCatchcopy {
    font-size: 7vw;
  }
}

#title h1 {
  margin: 0;
  padding: 0;
}

#title h1 img {
  width: 450px;
  display: block;
  margin: auto;
}
@media only screen and (max-width: 560px) {
  #title h1 img {
    width: 60%;
  }
}

#title p {
  font-size: 2.5em;
  margin-top: 2vw;
}
@media only screen and (max-width: 560px) {
  #title p {
    font-size: 7vw;
    margin-top: 5vw;
  }
}

#title p img {
  height: 2em;
  vertical-align: middle;
}

/*********************/
/** section **/
/*********************/

section {
  margin: 80px auto;
  padding: 80px 0;
}
@media only screen and (max-width: 560px) {
  section {
    margin: 50px auto;
    padding: 50px 0;
  }
}

.sectionInner {
  margin: 0 auto;
  padding: 0 5vw;
  max-width: 1800px;
}


/*********************/
/** h2 **/
/*********************/


h2.secTitle {
  text-align: center;
  font-size: 3em;
  color: #000;
  margin: 1.5em auto;
  position: relative;
  line-height: 1.4;
  padding: 0.25em 1em;
  display: inline-block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 560px) {
  h2.secTitle {
    font-size: 2em;
    margin-bottom: 0.75em;
  }
}

h2.secTitle:before, h2.secTitle:after { 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}

h2.secTitle:before {
  border-left: solid 2px rgba(0,0,0,0.30);
  border-top: solid 2px rgba(0,0,0,0.30);
  border-bottom: solid 2px rgba(0,0,0,0.30);
  left: 0;
}

h2.secTitle:after {
  content: '';
  border-top: solid 2px rgba(0,0,0,0.30);
  border-right: solid 2px rgba(0,0,0,0.30);
  border-bottom: solid 2px rgba(0,0,0,0.30);
  right: 0;
}

#newAlbum h2.secTitle {
  color: #FFF;
  margin-bottom: 0;
}
@media only screen and (max-width: 560px) {
  #newAlbum h2.secTitle {
    margin-bottom: 1em;
  }
}

#newAlbum h2.secTitle:before {
  border-left: solid 2px rgba(255,255,255,0.30);
  border-top: solid 2px rgba(255,255,255,0.30);
  border-bottom: solid 2px rgba(255,255,255,0.30);
}

#newAlbum h2.secTitle:after {
  content: '';
  border-top: solid 2px rgba(255,255,255,0.30);
  border-right: solid 2px rgba(255,255,255,0.30);
  border-bottom: solid 2px rgba(255,255,255,0.30);
}

/*********************/
/** newAlbum **/
/*********************/

#newAlbum {
  position: relative;
  background: url("../img/common/bg-C.png") repeat;
  z-index: 5;
  color: #FFF;
}
#newAlbum::before {
  position: absolute;
  top: -70px;
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background: url("../img/common/bgRound-C.png") no-repeat bottom center;
  background-size: 100% 70px;
  z-index: -1;
}
@media only screen and (max-width: 560px) {
  #newAlbum::before {
    background-size: 150% 70px;
  }
}

#newAlbum::after {
  position: absolute;
  bottom: -70px;
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  background:url("../img/common/bgRound-C.png") no-repeat top center;
  background-size: 100% 70px;
  transform: rotate(180deg);
  z-index: -1;
}
@media only screen and (max-width: 560px) {
  #newAlbum::after {
    background-size: 150% 70px;
  }
}


#newAlbum h2 {
  text-align: center;
  margin: 5vw auto;
}

#newAlbum h2 img {
}
@media only screen and (max-width: 560px) {
  #newAlbum h2 img {
    display: block;
    max-width: 90%;
    margin: auto;
  }
}

#newAlbumInfo {
  display: flex;
  flex-wrap: nowrap; 
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 5vw;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo {
    display: block;
    margin-bottom: 15vw;
  }
}

#newAlbumInfo dl#jaket {
  width: 40%;
  max-width: 500px;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#jaket {
    width: 90%;
    margin: auto;
  }
}

#newAlbumInfo dl#jaket dt {
  
}

#newAlbumInfo dl#jaket dt img {
  display: block;
  width: 100%;
}

#newAlbumInfo dl#jaket dd {
  font-family: Arial, Helvetica, "sans-serif";
  text-align: center;
  margin-top: 0.5em;
}

#newAlbumInfo dl#newAlbumDetails {
  width: 55%;
  padding-left: 5%;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails {
    width: auto;
    padding-left: 0;
    margin-top: 10vw;
  }
}

#newAlbumInfo dl#newAlbumDetails dt {
  font-size: 2.5em;
  font-weight: 700;
  color: #2b90bf;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails dt {
    font-size: 2em;
    text-align: center;
  }
}

#newAlbumInfo dl#newAlbumDetails dt img {
  display: block;
  margin: 0.5em 0 0.25em 0;
  height: 3em;
  max-width: 100%;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails dt img {
    display: block;
    height: auto;
    width: 90%;
    padding-left: 10%;
  }
}

#newAlbumInfo dl#newAlbumDetails dt .cdonly {
  font-size: 0.5em;
  color: #fefb8d;
  display: block;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails dt .cdonly {
    font-size: 0.7em;
  }
}

#newAlbumInfo dl#newAlbumDetails dt .cdonly a {
  font-size: 0.65em;
  color: #FFF;
  padding-left: 1em;
  font-weight: 300;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails dt .cdonly a {
    display: block;
    text-align: center;
    padding-left: 0;
  }
}

#newAlbumInfo dl#newAlbumDetails dt#trackLsitTitle {
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 700;
  border-bottom: 1px solid #174F69;
  font-size: 1.5em;
  padding-bottom: 0.35em;
  margin: 2em 0 1em 0;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails dt#trackLsitTitle {
    text-align: left;
    padding-bottom: 0.35em;
    margin: 1em 0;
  }
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit {
  display: flex;
  flex-wrap: nowrap; 
  align-items: flex-start;
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit ul {
  list-style: none;
  width: 50%;
  font-size: 1.3em;
}
@media only screen and (max-width: 560px) {
  #newAlbumInfo dl#newAlbumDetails dd#trackLsit ul {
    list-style: none;
    width: 50%;
    font-size: 1.1em;
  }
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit li {
  margin: 0.25em 0;
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit li a {
  color: #FFF;
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit li span {
  color: #2b90bf !important;
  margin-right: 0.75em;
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit li a img {
  height: 1em;
  vertical-align: middle;
  margin-left: 0.25em;
}

#newAlbumInfo dl#newAlbumDetails dd#trackLsit li a:hover img {
  opacity: 0.7;
}

#newAlbum #benefitsInfo {
  margin-bottom: 20px;
}

#newAlbum #benefitsInfo h2 {
  margin-top: 8vw;
  margin-bottom: 2vw;
}

#newAlbum #benefitsInfo h2 img {
  max-width: 100%;
}

#newAlbum #benefitsInfo p {
  font-family: Arial, Helvetica, "sans-serif";
  text-align: center;
  font-size: 2em;
  margin: 0.5em auto;
  font-weight: 700;
}

#newAlbum #benefitsInfo p strong {
  font-size: 1.2em;
  color: #fefb8d;
}
@media only screen and (max-width: 560px) {
  #newAlbum #benefitsInfo p strong {
    font-size: 1.4em;
  }
}

#newAlbum #benefitsInfo p.small {
  color: #fefc8c;
  font-size: 1.3em;
}
@media only screen and (max-width: 560px) {
  #newAlbum #benefitsInfo p.small {
    font-size: 1em;
  }
}

#newAlbum .buy-cd {
  text-align: center;
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  isolation: isolate;
}
@media only screen and (max-width: 560px) {
  #newAlbum .buy-cd {
    bottom: -90px;
  }
}

#newAlbum .buy-cd a {
  background: #fefc8c;
  font-family: Arial, Helvetica, "sans-serif";
  text-align: center;
  font-size: 2em;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75em 2em;
  border-radius: 1.5em;
  border: 2px solid #000;
}
@media only screen and (max-width: 560px) {
  #newAlbum .buy-cd a {
    font-size: 1.7em;
  }
}

#newAlbum .buy-cd a:hover {
  opacity: 0.7;
}


/*********************/
/** profile **/
/*********************/


#profile  {
  margin-bottom: 0;
}

#profile .sectionInner {
  max-width: 1000px;
}

#profile h2 {
  text-align: center;
}

#profile h2 img {
  display: block;
  margin: 2vw auto;
}

#profile h2 img#profileLogo {
  height: 160px;
}
@media only screen and (max-width: 560px) {
  #profile h2 img#profileLogo {
    height: auto;
    width: 70%;
    margin-top: 0;
  }
}

#profile h2 img#profileTitle {
  height: 55px;
}
@media only screen and (max-width: 560px) {
  #profile h2 img#profileTitle {
    height: auto;
    width: 50%;
  }
}

#profile p {
  font-size: 1.5em;
  line-height: 1.75em;
  margin: 2em auto;
}
@media only screen and (max-width: 560px) {
  #profile p {
    font-size: 1.3em;
  }
}

#profile #publicMelodiesInfo {
  background: rgba(255,255,255,0.20);
  padding: 2vw 3vw;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 560px) {
  #profile #publicMelodiesInfo {
    padding: 5vw;
    display: block;
    margin: auto;
  }
}

#profile #publicMelodiesInfo img {
  display: block;
  width: 200px;
}
@media only screen and (max-width: 560px) {
  #profile #publicMelodiesInfo img {
    width: 80%;
    margin: auto auto 1.5em auto;
  }
}

#profile #publicMelodiesInfo dl {
  padding-left: 3vw;
}
@media only screen and (max-width: 560px) {
  #profile #publicMelodiesInfo dl {
    padding-left: 0;
  }
}

#profile #publicMelodiesInfo dt {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 560px) {
  #profile #publicMelodiesInfo dt {
    font-size: 1.8em;
    text-align: center;
  }
}

#profile #publicMelodiesInfo dd {
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

#profile #publicMelodiesInfo dd.modelNumber {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 1.1em;
  margin-top: 1.5em;
}
@media only screen and (max-width: 560px) {
  #profile #publicMelodiesInfo dd.modelNumber {
    font-size: 1em;
    margin-top: 1em;
    text-align: center;
  }
}

#profile #publicMelodiesInfo dd.modelNumber a {
  color: #333;
  font-size: 0.7em;
  display: block;
}

@media only screen and (max-width: 560px) {
  #profile #publicMelodiesInfo dd.modelNumber a {
    text-align: center;
    width: fit-content;
    padding-left: 0;
    margin: auto;
  }
}


#profile aside#snsLink, #snsLinkClone {
  margin-top: 50px;
}

#profile aside#snsLink ul, #snsLinkClone ul {
  padding: 0 0 20px 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

#profile aside#snsLink ul li, #snsLinkClone ul li {
  width: 90px;
  margin: 0 15px;
  padding: 0;
}
#snsLinkClone ul li {
  margin: 0 7px;
  width: 15%;
}
@media only screen and (max-width: 1000px) {
  #profile aside#snsLink ul li, #snsLinkClone ul li {
  }
}
@media screen and (max-width: 560px) {
  #profile aside#snsLink ul li, #snsLinkClone ul li {
    margin: 0 7px;
    width: 15vw;
  }
}

#profile aside#snsLink ul li a, #snsLinkClone ul li a {
  line-height: 0;
}

#profile aside#snsLink ul li a:hover, #snsLinkClone ul li a:hover {
  opacity: 0.7;
}

#profile aside#snsLink ul li img, #snsLinkClone ul li img {
  width: 100%;
}

/*********************/
/** privacyPolicy **/
/*********************/

#privacyPolicy {
  margin-top: 0;
  background: rgba(0,0,0,0.60);
  color: #FFF;
  margin-bottom: 0;
  font-size: 1.1em;
  line-height: 1.5em;
}
@media only screen and (max-width: 560px) {
  #privacyPolicy {
    padding: 2em 0;
    font-size: 1em;
  }
}

#privacyPolicy h2 {
  font-size: 1.1em;
  margin-bottom: 1em;
  text-align: center;
  font-weight: 500;
}

#privacyPolicy p {
  margin: 1em auto;
}

#privacyPolicy p a {
  color: #FFF;
}


/*********************/
/** footer **/
/*********************/

footer {
  background: #000;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5vw;
}

footer address {
  color: #FFF;
  font-style: normal;
  font-family: Arial, Helvetica, "sans-serif";
}

footer #footerLink {
  text-align: right;
}

footer #footerLink img {
  display: inline-block;
  height: 60px;
  margin-left: 30px;
}
@media only screen and (max-width: 560px) {
  footer #footerLink img {
    display: inline-block;
    height: 30px;
    margin-left: 10px;
  }
}


/*********************/
/** otherStyle **/
/*********************/

/* タッチデバイスでhoverを無効化する */
@media (hover: none) {
  a {
    opacity: 1 !important;
  }
}

/*================================================
DeviceControl
================================================*/

.pcBlock {
  display: block;
}
@media only screen and (max-width: 1000px) {
  .pcBlock {
      display: inline;
  }
}

.mobileBlock {}
@media only screen and (max-width: 560px) {
  .mobileBlock {
      display: block;
  }
}

.underTabBlock {}
@media only screen and (max-width: 1000px) {
  .underTabBlock {
      display: block;
  }
}

.mobileInline {}
@media only screen and (max-width: 560px) {
  .mobileInline {
      display: inline;
  }
}

.underTabInline {}
@media only screen and (max-width: 1000px) {
  .underTabInline {
      display: inline;
  }
}

.mobileNone {}
@media only screen and (max-width: 560px) {
  .mobileNone {
      display: none;
  }
}

.forUnderTab {
  display: none !important;
}
@media only screen and (max-width: 1000px) {
  .forUnderTab {
      display: block !important;
  }
}

.forPcOnly {}
@media only screen and (max-width: 1000px) {
  .forPcOnly {
      display: none !important;
  }
}

.forPcTab {}
@media only screen and (max-width: 560px) {
  .forPcTab {
      display: none !important;
  }
}

.forTabOnly {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .forTabOnly {
      display: block;
  }
}
@media only screen and (max-width: 560px) {
  .forTabOnly {
      display: none;
  }
}

.forMobileOnly {
  display: none !important;
}
@media only screen and (max-width: 560px) {
  .forMobileOnly {
      display: block !important;
  }
}
