@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
/* CSS Document */
html {
  height: auto !important;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  color: #3e3a39;
  line-height: 1.7;
  overflow-x: hidden;
}

body:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url(../images/bg.jpg) center/cover no-repeat;
  /*fixedをトル！*/
}

/* 0.875rem(14px) @ 20rem(320px) increasing to 1.125rem(18px) @ 85.375rem(1366px) */
/* Ems strongly recommended on media queries! */
@media (min-width: 20em) {
  :root {
    font-size: calc(0.875rem + ((1vw - 0.2rem) * 0.3824));
    /* Where: 0.3824 = 100 * font-size_difference / viewport_width_difference */
    /* Safari resize fix */
    min-height: 0vw;
  }
}
/* Prevent scaling beyond this breakpoint */
@media (min-width: 85.375em) {
  :root {
    font-size: 1.125rem;
  }
}
/* header */
header {
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0;
  position: fixed;
  background: rgba(62, 58, 57, 0);
  z-index: 100;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .header-title {
  margin: 23px 0 0 23px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 1001;
}
header .header-title h1 {
  height: 24px;
  margin: 0;
  font-size: 24px;
}
header .header-title h1 img {
  display: block;
  max-height: 100%;
}
header .header-title-active {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
header input[type=checkbox] {
  display: none;
}
header .drawer-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  width: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 0;
  left: calc(100vw - 80px);
  z-index: 1000;
  cursor: pointer;
}
header .drawer-open span, header .drawer-open span:before, header .drawer-open span:after {
  content: "";
  display: block;
  height: 4px;
  width: 37px;
  background: #2f795e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
}
header .drawer-open span:before {
  bottom: 12px;
}
header .drawer-open span:after {
  top: 12px;
}
header #drawer-check:checked ~ .drawer-open span {
  background: rgba(47, 121, 94, 0);
}
header #drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}
header #drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}
header #drawer-close {
  width: 100vw;
  height: 100vh;
  position: fixed;
  bottom: 100%;
  z-index: 999;
  background: rgba(47, 121, 94, 0.9);
  -webkit-transition: 0.7s;
  transition: 0.7s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .menu {
  margin: auto;
}
header .menu .menu-list {
  margin: auto;
  list-style: none;
}
header .menu .menu-list .menu-item {
  height: 40px;
  margin-bottom: 50px;
  font-size: 1.25em;
  text-align: center;
}
header .menu .menu-list .menu-item a {
  padding: 1em 0;
  color: #fff;
  text-decoration: none;
}
header .menu .menu-list .menu-item a img {
  display: block;
  max-height: 100%;
  margin: auto;
}
header .menu .menu-list .menu-item:last-child {
  margin-bottom: 0;
}
header #drawer-check:checked ~ #drawer-close {
  bottom: 0;
}

/* /header */
/* common */
.wrapper {
  max-width: 1080px;
  margin: auto;
}

section {
  width: 100%;
  margin: 0 auto 4em;
}

h1, h2, h3, h4 {
  font-weight: bold;
}

h1 {
  margin: 0 !important;
  padding: 0;
}

h2 {
  height: 46px;
  margin: 0 auto 1.5em;
  line-height: 1;
  font-size: 2.5em;
  text-align: center;
}
h2 img {
  display: block;
  max-height: 100%;
  margin: auto;
}

a {
  color: #2f795e;
  text-decoration: none;
}
a:hover {
  color: #3e3a39;
}

hr {
  width: 100%;
  height: 1px;
  background-color: #2f795e;
  border: none;
  margin: auto;
}

ul.notice {
  padding-left: 0;
}

ul.notice li::before {
  content: "※";
}

ul.notice li {
  margin-bottom: 0.25em;
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  list-style-type: none;
  font-size: 0.8em;
}

/* /common */
/* main */
.main {
  width: 100vw;
  height: 100vh;
  /*background-color: $colorWhite;*/
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main .wrapper .jk {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .wrapper .jk img {
  display: block;
  margin: auto;
  -webkit-box-shadow: 0px 0px 20px rgba(62, 58, 57, 0.2);
          box-shadow: 0px 0px 20px rgba(62, 58, 57, 0.2);
}
.main .wrapper .release-info {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main .wrapper .release-info .release-info-content {
  max-width: 400px;
  margin: 0 auto;
}
.main .wrapper .release-info .release-info-content .title-top {
  display: block;
  max-width: 400px;
  margin: auto;
}

/* /main */
/* release */
#release {
  padding: 40px 0;
  text-align: center;
}
#release h3 {
  margin: 0 auto 4em;
  font-size: 1.25em;
}
#release p {
  margin: 0;
}
#release ol.songlist {
  width: 11.5em;
  margin: 0 auto 6em;
  padding: 0;
  list-style: decimal-leading-zero;
  font-weight: bold;
  text-align: left;
}
#release ol.songlist li {
  padding-left: 0.5em;
  line-height: 2;
}
#release .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none;
}
#release .item li {
  width: 45%;
  text-align: left;
}
#release .item li .item_type {
  border-top: 1px solid rgba(62, 58, 57, 0.5);
  border-bottom: 1px solid rgba(62, 58, 57, 0.5);
  margin: 0 auto 1em;
  padding: 0.25em;
  font-weight: bold;
  font-size: 1.25em;
  text-align: center;
}
#release .item li small {
  line-height: 1.25;
}
#release .item li .benefit_nomal {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.5em;
}
#release .item li .benefit_nomal a {
  text-decoration: underline;
}
#release .item li .deluxe {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 0.5em;
}
#release .item li .deluxe ol {
  margin-left: 1.5em;
  padding: 0;
}
#release .item li .deluxe ol li {
  width: 100%;
}
#release .item li .notice li {
  width: 100%;
}
#release .item li .order {
  margin: 2em 1em 0;
}
#release .item li .order a {
  display: block;
  max-width: 400px;
  background-color: #a91719;
  margin: auto;
  padding: 0.75em;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  max-width: 100%;
}
#release .item li .order a:hover, #release .item li .order a:focus {
  background: url(../images/bg-paint.jpg) center top;
}
#release .item li .order a .icon {
  position: absolute;
  top: 50%;
  left: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /release */
/* music video */
#mv {
  padding: 80px 0;
  text-align: center;
}
#mv .wrapper .movie-wrapper {
  max-width: 640px;
  margin: 0 auto 3em;
}
#mv .wrapper .movie-wrapper:last-child {
  margin-bottom: 0;
}

/* /music video */
/* comment */
#comment {
  padding: 80px 0;
  text-align: center;
}
#comment .person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#comment .person li {
  width: 32%;
  margin-bottom: 30px;
  list-style-type: none;
}
#comment .person li .person-wrap {
  background-color: #2f795e;
  background: url(../images/bg-paint.jpg) center top;
  color: #fff;
}
#comment .person li .person-wrap dt {
  position: relative;
  margin: 0;
  padding: 10px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
#comment .person li .person-wrap dt:after {
  position: absolute;
  top: 35%;
  right: 3%;
  width: 26px;
  height: 26px;
  padding: 0;
  content: url(../images/arrow-down-s-line.svg);
  font-size: 26px;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.1s ease 0s;
  transition: all 0.1s ease 0s;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
#comment .person li .person-wrap dt .name {
  margin: 0.75em 0 0.5em;
}
#comment .person li .person-wrap dt .name.oneline {
  margin: 10px 0 !important;
}
#comment .person li .person-wrap dt .note {
  font-size: 0.65em;
}
#comment .person li .person-wrap dt.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#comment .person li dd {
  display: none;
  background-color: rgba(62, 58, 57, 0.2);
  max-height: 1000;
  margin-left: 0;
  padding: 1em;
  color: #fff;
}
#comment .person li dd p {
  margin: 0 0 0.75em;
  padding: 0;
  text-align: left;
  font-size: 0.9em;
}
#comment .person li dd p:last-child {
  margin-bottom: 0;
}

/* /comment */
/* interview */
#interview {
  padding: 80px 0;
}
#interview h2 {
  text-align: center;
}
#interview .interview-wrap {
  position: relative;
  background-color: #2f795e;
  background: url(../images/bg-paint.jpg) left top no-repeat;
  background-size: cover;
  padding-bottom: 1em;
  color: #fff;
}
#interview .interview-top {
  padding: 2em 2em 0 2em;
}
#interview .interview-top p {
  margin-top: 0;
}
#interview .interview-top p:last-child {
  margin-bottom: 0;
}
#interview .interview-bottom {
  display: none;
  padding: 1em 2em 4em;
}
#interview .interview-bottom p {
  margin-top: 0;
}
#interview .interview-bottom p:last-child {
  margin-bottom: 0;
}
#interview .interview-bottom .note {
  text-align: center;
}
#interview .btn-read {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 7em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(62, 58, 57, 0)), color-stop(50%, rgba(62, 58, 57, 0.5)), color-stop(75%, rgba(62, 58, 57, 0.9)), color-stop(90%, #3e3a39));
  background: linear-gradient(top, rgba(62, 58, 57, 0) 0%, rgba(62, 58, 57, 0.5) 50%, rgba(62, 58, 57, 0.9) 75%, #3e3a39 90%);
  border: none;
}
#interview .btn-read:before {
  background-color: #3e3a39;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "続きを読む";
  line-height: 2.5em;
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
#interview .btn-read img {
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
}
#interview .btn-read.close {
  height: 45px;
  background: none;
}
#interview .btn-read.close:before {
  content: "閉じる";
}
#interview .btn-read.close img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#interview .order {
  margin: 3em auto 0;
}
#interview .order a {
  display: block;
  max-width: 400px;
  background-color: #fff;
  margin: auto;
  padding: 0.75em;
  color: #2f795e;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
#interview .order a:hover, #interview .order a:focus {
  background-color: #194687;
  color: #fff;
}

/* /interview */
/* goods */
#goods {
  padding: 80px 0;
}
#goods h2 {
  text-align: center;
}
#goods .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  list-style: none;
}
#goods .item li {
  width: 24%;
  text-align: center;
}
#goods .item li .image-item img {
  display: block;
  max-width: 100%;
}
#goods .item li p {
  font-size: 0.8em;
}
#goods .order a {
  display: block;
  max-width: 400px;
  background-color: #a91719;
  margin: auto;
  padding: 0.75em;
  color: #fff;
  font-size: 1.25em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
#goods .order a:hover, #goods .order a:focus {
  background: url(../images/bg-paint.jpg) center top;
}
#goods .order a .icon {
  position: absolute;
  top: 50%;
  left: 0.75em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /merch */
/* share */
.share {
  padding-top: 3em;
  text-align: center;
}
.share ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 0;
  list-style: none;
}
.share ul li {
  padding: 0 1em;
}
.share ul li a {
  display: block;
  width: 40px;
  height: 40px;
  background: #2f795e;
  border-radius: 50% 50%;
  padding: 4.25px;
  cursor: pointer;
}
.share ul li a:hover, .share ul li a:focus {
  background: #3e3a39;
}

/* /share */
/* footer */
footer {
  margin-bottom: 5em;
  padding: 3em 0;
  font-size: 0.9em;
  text-align: center;
}
footer .officialsite {
  display: block;
  width: 14em;
  border: 2px solid #2f795e;
  margin: auto;
  padding: 0.5em;
}
footer .officialsite:hover, footer .officialsite:focus {
  background: #2f795e;
  color: #fff;
}
footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  padding: 0;
  list-style: none;
}
footer .sns li {
  padding: 0 1em;
}
footer .sns li a {
  display: block;
  width: 40px;
  height: 40px;
  background: #2f795e;
  padding: 4.25px;
  cursor: pointer;
}
footer .sns li a:hover, footer .sns li a:focus {
  background: #3e3a39;
}
footer .sns li a img {
  display: block;
  max-width: 100%;
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 10;
  height: 32px;
}
#page-top p {
  width: 32px;
  height: 32px;
  background: rgba(121, 121, 121, 0.8);
  border-radius: 50% 50%;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 1.25em;
  line-height: 1;
}
#page-top span {
  color: #fff;
}
#page-top:hover {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#page-top #move-page-top {
  position: relative;
  top: 11%;
  width: 32px;
  height: 32px;
  line-height: 1;
  text-decoration: none;
}

/* /footer */
/* mediaquery */
@media screen and (orientation: portrait) {
  .main {
    width: 100%;
    margin-bottom: 2em;
  }
  .main .wrapper {
    width: 100%;
    margin: 0 !important;
  }
  .main .wrapper .jk, .main .wrapper .release-info {
    width: 100%;
    height: calc(50vh - 29px);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em;
  }
  .main .wrapper .jk img {
    max-height: 38vh;
  }
  .main .wrapper .release-info .release-info-content {
    padding: 0;
  }
  .main .wrapper .release-info .release-info-content .title-top {
    max-height: 32vh;
  }
}
@media screen and (max-width: 1080px) {
  .wrapper {
    padding: 0 2em;
  }

  #comment .person li {
    width: 48%;
  }
  #comment .person li .person-wrap dd p {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  #release .item li {
    width: 100%;
  }
}
@media screen and (min-width: 461px) {
  .lg-on {
    display: block;
  }

  .sm-on {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  .lg-on {
    display: none;
  }

  .sm-on {
    display: block;
  }

  header {
    height: 50px;
  }
  header .header-title {
    margin: 0;
  }
  header .header-title h1 {
    height: 20px;
    font-size: 20px;
  }
  header .drawer-open {
    height: 50px;
    width: 50px;
    top: 0;
    left: calc(100vw - 50px);
  }
  header .drawer-open span, header .drawer-open span:before, header .drawer-open span:after {
    height: 3px;
    width: 25px;
  }
  header .drawer-open span:before {
    bottom: 8px;
  }
  header .drawer-open span:after {
    top: 8px;
  }

  section {
    margin-bottom: 2em;
  }

  .wrapper {
    padding: 0 1em;
  }

  .main .wrapper .release-info .release-info-content .title-top {
    max-width: 100%;
    margin: 0;
  }

  #comment .person li {
    width: 100%;
  }

  #release .item li:first-child {
    margin-bottom: 3em;
  }

  #release .item li .notice li:first-child,
#release .item li .deluxe ol li:first-child {
    margin-bottom: 0;
  }

  #release .item li .order {
    margin: 2em 0;
  }

  #interview .btn-read.close {
    height: 35px;
  }
  #interview .interview-bottom .note {
    text-align: left;
  }

  #goods .item li {
    width: 49%;
  }
  #goods .item li img {
    max-height: none;
    max-width: 100%;
  }
  #goods .item li:first-child {
    margin-bottom: 2em;
  }
  #goods .item li p {
    font-size: 0.95em;
  }

  .share {
    padding-top: 0;
  }

  footer {
    padding: 1em;
  }
  footer .officialsite {
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  header .drawer-open {
    top: 0;
  }

  .main .wrapper .jk {
    padding: 2em 0;
  }

  h2 {
    margin: 0 auto 0.75em;
  }

  #mv .wrapper .movie-wrapper {
    margin: 0 auto 2em;
  }

  #interview .interview-top {
    padding: 1.5em 1.5em 0 1.5em;
  }

  #interview .interview-bottom {
    padding: 1em 1.5em 3em;
  }

  #interview .order {
    margin: 2em auto;
  }
}
@media screen and (max-width: 320px) {
  header .drawer-open {
    top: 0;
  }

  h2 {
    font-size: 2.25em;
  }

  #interview .interview-top {
    padding: 1em 1em 0 1em;
  }

  #interview .interview-bottom {
    padding: 1em 1em 2em;
  }
}
@media screen and (max-height: 600px) {
  header .menu .menu-list .menu-item {
    margin-bottom: 40px;
  }
}