@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_ico';
	src:
		url('../fonts/sns_ico.ttf?sij4de') format('truetype'),
		url('../fonts/sns_ico.woff?sij4de') format('woff'),
		url('../fonts/sns_ico.svg?sij4de#sns_ico') format('svg');
	font-weight: normal;
	font-style: normal;
}

i.snsIcon {
	font-family: 'sns_ico' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	color: #000;
}

.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-tw:before { content: "\e908";}
.icon-yt:before { content: "\e909";}
.icon-x:before { content: "\e90a";}
.icon-wb:before { content: "\e90b";}


html {
	scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "sans-serif";
	font-size: min(3.4vw, 16px);
	line-height: 1.8;
  letter-spacing: 0.05em;
	-webkit-text-size-adjust: 100%;
  color: #000;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
  background: url("../images/times_bg.jpg") no-repeat center center;
  background-size: cover;
}


img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}


main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 min(4vw, 60px) min(10vw, 80px);
}
section {
  padding: min(8vw, 60px) 0;
}

.sectionHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: min(8vw, 40px);
}
.sectionHead h2 {
  font-size: min(8.6vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  font-feature-settings: "palt";
}
.sectionHead p {
  font-size: min(3.1vw, 16px);
}

.moreBtn {
  margin-top: min(6vw, 40px);
}
.moreBtn a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: min(3vw, 15px);
  border: #000 solid 1px;
  color: #000;
  text-decoration: none;
  padding: min(3vw, 15px);
  font-size: min(4.2vw, 24px);
  font-weight: 600;
}
.moreBtn a span {
  display: block;
  width: 1em;
  height: 1em;
  background-color: #000;
  border-radius: 50%;
  position: relative;
}
.moreBtn a span::before,
.moreBtn a span::after {
  content: "";
  display: block;
  width: 50%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.moreBtn a span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (min-width: 821px) {

	.sp { display: none;}

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

	.pc { display: none;}

  .sectionHead {
    flex-direction: column;
    align-items: flex-start;
    gap: min(2vw, 12px);
  }
}


/* ////////////////////////////////////////////////////////////////////////////////

	Title

//////////////////////////////////////////////////////////////////////////////// */

#title {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: min(8vw, 60px) min(6vw, 60px) 0;
  mix-blend-mode: darken;
}
#title.detail {
  max-width: 740px;
}
#title h1 {
  position: relative;
  padding-bottom: min(6vw, 60px);
  border-bottom: #000 solid 1px;
  line-height: 0;
}
#title.detail h1 {
  border-bottom: none;
}
#title h1::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 10px;
  left: 0;
}
#title.detail h1::after {
  display: none;
}

#title h1 img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate(-15px, -15px);
  animation: ttl2 0.8s cubic-bezier(0, 0.55, 0.45, 1) 2.7s forwards;
}
@keyframes ttl2 {
  0% { transform: translate(-15px, -15px); opacity: 0;}
  100% { transform: translate(0, 0); opacity: 1;}
}
#title h1 path {
  stroke: #000;
  fill: transparent;
  stroke-width: 1;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: ttl 1.5s ease-in-out 1s forwards;
}
@keyframes ttl {
  0% {stroke-dashoffset: 3000; fill: transparent;}
  100% {stroke-dashoffset: 1000; fill: transparent;}
}

#title .titleJp {
  position: absolute;
  bottom: min(6vw, 60px);
  right: min(6vw, 60px);
  width: 38.6%;
  height: 34%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#title.detail .titleJp {
  width: 35.9%;
  height: 29%;
}
#title .titleJp p {
  width: 80%;
  text-align: center;
  font-weight: 900;
  font-size: min(3.2vw, 48px);
}
#title.detail .titleJp p {
  width: 74%;
  font-size: min(3vw, 22px);
}
#title .titleJp p.presentedBy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: min(2vw, 15px);
  font-size: min(1.8vw, 12px);
  font-weight: normal;
  border-top: #000 solid 4px;
  padding-top: min(1vw, 20px);
  letter-spacing: 0;
}
#title.detail .titleJp .presentedBy {
  padding-top: min(1vw, 10px);
}
#title .titleJp .presentedBy img {
  width: min(12vw, 160px);
}
#title.detail .titleJp .presentedBy img {
  width: min(12vw, 90px);
}


@media screen and (max-width: 820px) {
  #title h1::after {
    bottom: 4px;
  }
  #title .titleJp p.presentedBy {
    border-top: #000 solid 2px;
  }
  #title .titleJp p {
    width: 75%;
  }
}



/* ////////////////////////////////////////////////////////////////////////////////

	tab

//////////////////////////////////////////////////////////////////////////////// */
.tabWrap {
  display: flex;
  justify-content: center;
  border-bottom: #000 solid 1px;
  position: relative;
  margin: min(8vw, 60px) 0;
}
.tabWrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.tabWrap li {
  width: min(48vw, 280px);
  position: relative;
  z-index: 1;
}
.tabWrap li.on {
  z-index: 2;
}
.tabWrap li:nth-child(1) {
  transform: translateX(5px);
}
.tabWrap li:nth-child(2) {
  transform: translateX(-5px);
}
.tabWrap li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/tab_bg_off.png") no-repeat center center / contain;
  aspect-ratio: 84/14;
  color: #fff;
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
.tabWrap li.on a {
  background: url("../images/tab_bg_on.png") no-repeat center center / contain;
}

#band {
  display: none;
}
#solo {
  display: block;
}


@media screen and (min-width: 821px) {
  
  .tabWrap li a:hover {
    background: url("../images/tab_bg_on.png") no-repeat center center / contain;
  }
  
  
}
@media screen and (max-width: 820px) {
  
  .tabWrap li:nth-child(1) {
    transform: translateX(3px);
  }
  .tabWrap li:nth-child(2) {
    transform: translateX(-3px);
  }
  
  
}


/* ////////////////////////////////////////////////////////////////////////////////

	Review

//////////////////////////////////////////////////////////////////////////////// */

.reviewList {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reviewList::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: #000;
}

.reviewList li {
  width: 46%;
  padding: min(6vw, 30px) 0;
  border-bottom: #000 solid 1px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#topReview .reviewList li {
  display: none;
}
#topReview .reviewList li.visible {
  display: flex;
}
.reviewList li:nth-child(1),
.reviewList li:nth-child(2) {
  padding-top: 0;
}
.reviewList li .jacket {
  line-height: 0;
  width: 30%;
  border: #000 solid 1px;
}
.reviewList li .txt {
  width: 64%;
}
.reviewList li .txt .name {
  font-size: min(3.8vw, 20px);
  font-weight: 600;
  line-height: 1.6;
  margin-top: -0.4em;
}
.reviewList li .txt .post {
  font-size: min(2.8vw, 12px);
  font-weight: 600;
}
.reviewList li .txt h3 {
  font-size: min(3.2vw, 14px);
  font-weight: 600;
  margin-top: min(2vw, 10px);
  margin-bottom: min(2vw, 10px);
}
.reviewList li .txt a {
  text-decoration: none;
  color: #000;
}
.reviewList li .txt .song {
  font-size: min(3vw, 12px);
  color: #777;
  display: flex;
  align-items: center;
  gap: min(1vw, 5px);
}
.reviewList li .txt .song::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #777;
}

.reviewList li .txt .song001::after { content: "熱い胸さわぎ [2024 Remaster]";}
.reviewList li .txt .song002::after { content: "10ナンバーズ・からっと [2024 Remaster]";}
.reviewList li .txt .song003::after { content: "タイニイ・バブルス [2024 Remaster]";}
.reviewList li .txt .song004::after { content: "ステレオ太陽族 [2024 Remaster]";}
.reviewList li .txt .song005::after { content: "NUDE  MAN [2024 Remaster]";}
.reviewList li .txt .song006::after { content: "綺麗 [2024 Remaster]";}
.reviewList li .txt .song007::after { content: "人気者で行こう [2024 Remaster]";}
.reviewList li .txt .song008::after { content: "KAMAKURA [2024 Remaster]";}
.reviewList li .txt .song009::after { content: "SOUTHERN ALL STARS [2024 Remaster]";}
.reviewList li .txt .song010::after { content: "稲村ジェーン (SOUTHERN ALL STARS and ALL STARS) [2024 Remaster]";}
.reviewList li .txt .song011::after { content: "世に万葉の花が咲くなり [2024 Remaster]";}
.reviewList li .txt .song012::after { content: "Young Love [2024 Remaster]";}
.reviewList li .txt .song013::after { content: "さくら [2024 Remaster]";}
.reviewList li .txt .song014::after { content: "キラーストリート [2024 Remaster]";}
.reviewList li .txt .song015::after { content: "葡萄 [2024 Remaster]";}
.reviewList li .txt .song016::after { content: "THANK YOU SO MUCH";}

.messageList {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}
.messageList .item {
  position: absolute;
  transition: all 0.3s ease;
  border: #000 solid 2px;
  padding: min(5vw, 25px) min(4vw, 20px);
  display: none;
}

.messageList .item .name {
  font-size: min(3.4vw, 16px);
  font-weight: 600;
  line-height: 1.6;
  margin-top: -0.4em;
}
.messageList .item h3 {
  font-size: min(3vw, 12px);
  font-weight: 400;
  margin-top: min(2vw, 10px);
  margin-bottom: min(2vw, 10px);
}
.messageList .item .song {
  font-size: min(3vw, 12px);
  color: #777;
  display: flex;
  align-items: center;
  gap: min(1vw, 5px);
}
.messageList .item .song::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #777;
}

.messageList .item .song001::after { content: "熱い胸さわぎ [2024 Remaster]";}
.messageList .item .song002::after { content: "10ナンバーズ・からっと [2024 Remaster]";}
.messageList .item .song003::after { content: "タイニイ・バブルス [2024 Remaster]";}
.messageList .item .song004::after { content: "ステレオ太陽族 [2024 Remaster]";}
.messageList .item .song005::after { content: "NUDE  MAN [2024 Remaster]";}
.messageList .item .song006::after { content: "綺麗 [2024 Remaster]";}
.messageList .item .song007::after { content: "人気者で行こう [2024 Remaster]";}
.messageList .item .song008::after { content: "KAMAKURA [2024 Remaster]";}
.messageList .item .song009::after { content: "SOUTHERN ALL STARS [2024 Remaster]";}
.messageList .item .song010::after { content: "稲村ジェーン (SOUTHERN ALL STARS and ALL STARS) [2024 Remaster]";}
.messageList .item .song011::after { content: "世に万葉の花が咲くなり [2024 Remaster]";}
.messageList .item .song012::after { content: "Young Love [2024 Remaster]";}
.messageList .item .song013::after { content: "さくら [2024 Remaster]";}
.messageList .item .song014::after { content: "キラーストリート [2024 Remaster]";}
.messageList .item .song015::after { content: "葡萄 [2024 Remaster]";}
.messageList .item .song016::after { content: "THANK YOU SO MUCH";}


.messageForm {
  margin-top: min(8vw, 60px);
/*
  background: url("../images/jacket001.webp") no-repeat center 29%;
  background-size: cover;
*/
  border: #000 solid 1px;
  padding: min(8vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.messageForm::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.60);
}
.messageForm .txt {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
}
.messageForm .txt h3 {
  text-align: center;
  font-size: min(4.8vw, 26px);
  margin-bottom: min(4vw, 20px);
}
.messageForm .txt p {
  font-size: min(3.2vw, 14px);
}
.messageForm .txt .note {
  font-size: 0.8em;
  margin-top: min(3vw, 15px);
}
.messageForm .jacket {
  width: 34%;
  line-height: 0;
}

.bgSlideWrap {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-38%);
  z-index: 0;
}

.sendBtn {
  max-width: 400px;
  margin: min(6vw, 30px) auto 0;
}
.sendBtn a {
  display: block;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  text-align: center;
  padding: min(3vw, 15px);
  font-size: min(3.4vw, 16px);
  font-weight: bold;
}

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

  .reviewList::before {
    display: none;
  }
  .reviewList li {
    width: 100%;
  }
  .reviewList li:nth-child(2) {
    padding-top: min(6vw, 30px);
  }


  .messageList {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .messageList .item {
    position: static;
    width: 100%;
    transform: none;
  }


  .messageForm {
    flex-direction: column-reverse;
    gap: min(6vw, 30px);
  }
  .messageForm .jacket {
    width: 100%;
  }
  .messageForm .txt {
    width: 100%;
    padding-right: 0;
  }


  .bgSlideWrap {
    left: 50%;
    width: 120%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
}


.topBnr {
  text-align: center;
  background: url("../images/top_bnr_bg.jpg") no-repeat center center;
  background-size: cover;
  padding: min(8vw, 60px);
}
.topBnr .topBnrTitle {
  width: 100%;
  max-width: 860px;
  margin: 0 auto min(7vw, 50px);
  line-height: 0;
}
.topBnr a {
  display: block;
  color: #fff;
  border: #fff solid 1px;
  text-decoration: none;
  font-size: min(3.4vw, 16px);
  font-weight: bold;
  background-color: rgba(0,0,0,0.40);
  padding: min(3vw, 20px);
  width: 80%;
  max-width: 420px;
  margin: 0 auto;
}


#reviewDetail {
  position: relative;
  border-top: #000 solid 1px;
}
#reviewDetail::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: 0;
}

#titleDetail {
  max-width: 1100px;
  padding: min(10vw, 80px) min(6vw, 60px) 0;
  margin: 0 auto;
}
#titleDetail h1 {
  border-bottom: #000 solid 1px;
  padding-bottom: min(8vw, 60px);
  text-align: center;
}
#titleDetail h1 img {
  width: 100%;
  max-width: 600px;
}

.reviewDetail {
  margin-bottom: min(8vw, 60px);
}
.reviewDetail .reviewDetailHead {
  display: flex;
  justify-content: space-between;
  margin-bottom: min(6vw, 40px);
}
.reviewDetail .reviewDetailHead .jacket {
  line-height: 0;
  width: 34%;
}
.reviewDetail .reviewDetailHead .txt {
  width: 62%;
}
.reviewDetail .reviewDetailHead .txt .name {
  font-size: min(4.2vw, 26px);
  font-weight: bold;
  margin-top: -0.4em;
}
.reviewDetail .reviewDetailHead .txt .post {
    font-size: min(3.2vw, 14px);
    font-weight: 600;
}
.reviewDetail .reviewDetailHead .txt h3 {
  font-size: min(3.8vw, 22px);
  font-weight: bold;
  margin: min(4vw, 20px) 0 min(2vw, 10px);
}
.reviewDetail .reviewDetailHead .txt .song {
  font-size: min(3.2vw, 14px);
  color: #777;
  display: flex;
  align-items: center;
  gap: min(1vw, 5px);
}
.reviewDetail .reviewDetailHead .txt .song::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #777;
}

.reviewDetail .reviewDetailHead .txt .song001::after { content: "熱い胸さわぎ [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song002::after { content: "10ナンバーズ・からっと [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song003::after { content: "タイニイ・バブルス [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song004::after { content: "ステレオ太陽族 [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song005::after { content: "NUDE  MAN [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song006::after { content: "綺麗 [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song007::after { content: "人気者で行こう [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song008::after { content: "KAMAKURA [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song009::after { content: "SOUTHERN ALL STARS [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song010::after { content: "稲村ジェーン (SOUTHERN ALL STARS and ALL STARS) [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song011::after { content: "世に万葉の花が咲くなり [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song012::after { content: "Young Love [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song013::after { content: "さくら [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song014::after { content: "キラーストリート [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song015::after { content: "葡萄 [2024 Remaster]";}
.reviewDetail .reviewDetailHead .txt .song016::after { content: "THANK YOU SO MUCH";}

.reviewDetail .reviewDetailBody {
  margin-top: min(6vw, 30px);
}
.reviewDetail .reviewDetailBody p {
  margin-bottom: min(4vw, 20px);
  font-size: min(3.2vw, 14px);
}

.backBtn {
  max-width: 400px;
  margin: 0 auto;
}
.backBtn a {
  background: #000;
  color: #fff;
  text-align: center;
  display: block;
  text-decoration: none;
  padding: min(3vw, 15px);
  font-size: min(3.6vw, 18px);
  font-weight: bold;
  letter-spacing: 0.06em;
}


#other {
  border-top: #000 solid 1px;
}


.comingsoon {
    text-align: center;
    font-size: min(3.6vw, 20px);
    border: #000 solid 1px;
    padding: min(8vw, 60px);
}

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

  .reviewDetail .reviewDetailHead {
    flex-direction: column;
    gap: min(8vw, 60px);
  }
  .reviewDetail .reviewDetailHead .jacket {
    width: 54%;
    margin: 0 auto;
  }
  .reviewDetail .reviewDetailHead .txt {
    width: 100%;
  }
}


/* ////////////////////////////////////////////////////////////////////////////////

	Footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
	background-color: #000;
	color: #fff;
	position: relative;
}
footer .ftrSns {
	display: flex;
	border-bottom: #333 solid 1px;
}
footer .ftrSns li {
	width: 20%;
}
footer .ftrSns li + li {
	border-left: #333 solid 1px;
}
footer .ftrSns li a {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.6;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 25px 30px;
	height: 100%;
}
footer .ftrSns li a i.snsIcon {
	color: #fff;
	font-size: 24px;
	margin-right: 20px;
}
footer .ftrSns li a span {
    width: 45px;
	line-height: 0;
	margin-right: 20px;
}

footer .ftrMain {
	padding: min(6vw, 60px) min(6vw, 60px) min(10vw, 100px);
}
footer .ftrMain .copyWrap {
	display: flex;
	align-items: center;
	width: 82%;
	max-width: 880px;
	margin: auto;
}
footer .ftrMain .copyWrap .logo {
	width: 140px;
	margin-right: 30px;
}
footer .ftrMain .copyWrap p {
	font-size: 12px;
	font-weight: 200;
}
footer .ftrMain .copyright {
	font-size: 10px;
	text-align: center;
	margin-top: 30px;
	font-weight: 200;
}


footer .ftrMain .ftrNav {
	width: 50%;
	display: flex;
}
footer .ftrMain .ftrNav ul {
	width: 50%;
	border-left: #333 solid 1px;
	padding: 0 6%;
}
footer .ftrMain .ftrNav li + li {
	margin-top: 8px;
}
footer .ftrMain .ftrNav a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}
footer .ftrMain .ftrSubNav {
	width: 25%;
	border-left: #333 solid 1px;
	padding: 0 3%;
}
footer .ftrMain .ftrSubNav li + li {
	margin-top: 8px;
}
footer .ftrMain .ftrSubNav a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

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

	footer .ftrSns {
		display: flex;
		flex-wrap: wrap;
	}
	footer .ftrSns li {
		width: 50%;
	}
	footer .ftrSns li:last-child {
		width: 100%;
	}
	footer .ftrSns li + li {
		border-left: none;
	}
	footer .ftrSns li:nth-child(even) {
		border-left: #333 solid 1px;
	}
	footer .ftrSns li:nth-child(n+3) {
		border-top: #333 solid 1px;
	}

	footer .ftrSns li a {
    	font-size: min(2.6vw, 12px);
		padding: min(4vw, 25px) min(5vw, 30px);
	}
	footer .ftrSns li a i.snsIcon {
		font-size: min(6vw, 24px);
		margin-right: min(3vw, 20px);
	}
	footer .ftrSns li a span {
		width: min(14vw, 45px);
		margin-right: min(4vw, 20px);
	}
	footer .ftrSns li:last-child a {
		justify-content: center;
	}

	footer .ftrMain {
	  padding: min(6vw, 60px) min(6vw, 60px) min(22vw, 100px);
	}
	footer .ftrMain .copyWrap {
		flex-direction: column;
	}
	footer .ftrMain .copyWrap .logo {
		width: 42%;
		max-width: 160px;
		margin: 0 auto min(8vw, 30px);
	}
	footer .ftrMain .copyWrap p {
		font-size: min(3vw, 12px);
	}
	footer .ftrMain .copyright {
		font-size: min(2.2vw, 10px);
		margin-top: min(8vw, 30px);
	}

}



@keyframes marquee{
    0%{
        transform:translate(0)
    }
    to{
        transform:translate(calc(-100% - (100 / 375 * 38 * 1vw)))
    }
}
@keyframes marquee2{
    0%{
        transform:translate(0)
    }
    to{
        transform:translate(calc(-100% - (100 / 1440 * 55 * 1vw)))
    }
}

.lp-marquee{
    margin-block-start:calc(100 / 375 * 10 * 1vw);
    padding:calc(100 / 375 * 11 * 1vw) calc(100 / 375 * 40 * 1vw) calc(100 / 375 * 11 * 1vw) calc(100 / 375 * 16 * 1vw);
    border-radius:9999px;
    display:block;
    position:relative;
    width: 88%;
    overflow:hidden;
/*    background-color:#fffaa3;*/
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    outline:none;
  margin-left: auto;
  margin-right: auto;
  border: #000 solid 1px;
}
@media (min-width: 50rem){
    .lp-marquee{
/*        margin-block-start:calc(100 / 1440 * -44 * 1vw);*/
        margin-inline-start:auto;
        margin-inline-end:auto;
        padding:calc(100 / 1440 * 17 * 1vw) calc(100 / 1440 * 78 * 1vw) calc(100 / 1440 * 17 * 1vw) calc(100 / 1440 * 28 * 1vw);
        max-width:calc(100 / 1440 * 700 * 1vw);
/*        background-color: #cfcfcf;*/
    }
}
.lp-marquee .lp-marquee-inner{
    display:flex;
    flex-wrap:nowrap;
    column-gap:calc(100 / 375 * 38 * 1vw)
}
@media (min-width: 50rem){
    .lp-marquee .lp-marquee-inner{
        column-gap:calc(100 / 1440 * 55 * 1vw)
    }
}
.lp-marquee .lp-marquee-inner span {
    display:flex;
    align-items:center;
    font-weight:700;
    font-size:3.2vw;
    white-space:nowrap;
    letter-spacing:.06em;
    animation:marquee 80s linear infinite
}.lp-marquee .lp-marquee-inner.v2 span {
    animation:marquee 30s linear infinite
}
@media (min-width: 50rem){
    .lp-marquee .lp-marquee-inner span{
        font-size:1.25vw;
        letter-spacing:.08em;
        animation-name:marquee2
    }
}
.lp-marquee .lp-marquee-inner span img{
    margin-inline-end:calc(100 / 375 * 7 * 1vw);
    width:calc(100 / 375 * 16 * 1vw);
    aspect-ratio:1 / 1;
    animation:rotate 1s linear infinite
}
@media (min-width: 50rem){
    .lp-marquee .lp-marquee-inner span img{
        margin-inline-end:calc(100 / 1440 * 17 * 1vw);
        width:2.5vw
    }
}
.lp-marquee i{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    z-index:1;
    width:calc(100 / 375 * 55 * 1vw);
    background-color:inherit;
    pointer-events:none
}
@media (min-width: 50rem){
    .lp-marquee i{
        width:calc(100 / 1440 * 78 * 1vw)
    }
}
.lp-marquee i span{
    border-radius:9999px;
    display:block;
    width:5.6vw;
    height:5.6vw;
    content:"";
    color: #fff;
    background-color: #000
}
@media (min-width: 50rem){
    .lp-marquee i span{
        width:2.5vw;
        height:2.5vw
    }
}
.lp-marquee i span:before,
.lp-marquee i span:after{
    position:absolute;
    top:50%;
    left:50%;
    width:calc(100 / 375 * 14 * 1vw);
    height:1px;
    content:"";
    background-color:currentColor;
    transform:translate(-50%,-50%)
}
@media (min-width: 50rem){
    .lp-marquee i span:before,
    .lp-marquee i span:after{
        width:calc(100 / 1440 * 19 * 1vw)
    }
}
.lp-marquee i span:before{
    transform:translate(-50%,-50%) rotate(90deg)
}

.lp-about{
    position:fixed;
    top:0;
    left:0;
    z-index:100;
    width:100%;
    height:100%;
    background-color: #fff;
  opacity: 0;
    transform:scale(1.02);
    pointer-events:none;
    transition:all .25s cubic-bezier(.165, .84, .44, 1)
}
.lp-about .modalTitle {
  width: 72vw;
  max-width: 520px;
  margin-bottom: min(8vw, 60px);
}

.lp-about .lp-about-close{
    position:absolute;
    top:0;
    right:0;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    outline:none;
    width:calc(100 / 375 * 64 * 1vw);
    height:calc(100 / 375 * 64 * 1vw)
}
@media (min-width: 50rem){
    .lp-about .lp-about-close{
        top:2.5vw;
        right:2.5vw;
        width:calc(100 / 1440 * 64 * 1vw);
        height:calc(100 / 1440 * 64 * 1vw)
    }
}
.lp-about .lp-about-close:before,
.lp-about .lp-about-close:after{
    position:absolute;
    top:50%;
    left:50%;
    width:8vw;
    height:.8vw;
    content:"";
    background-color: #000
}
.lp-about .lp-about-close:before{
    transform:translate(-50%,-50%) rotate(45deg)
}
.lp-about .lp-about-close:after{
    transform:translate(-50%,-50%) rotate(-45deg)
}
@media (min-width: 50rem){
    .lp-about .lp-about-close:before,
    .lp-about .lp-about-close:after{
        width:calc(100 / 1440 * 40 * 1vw);
        height:calc(100 / 1440 * 4 * 1vw)
    }
}
.lp-about .lp-about-inner{
    margin-right:auto;
    margin-left:auto;
    padding-inline-start: min(6vw, 30px);
    padding-inline-end: min(6vw, 30px);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    max-width:100%;
    height:100%;
    overflow-y:auto
}
@media (min-width: 50rem){
    .lp-about .lp-about-inner{
        padding-block-end:calc(100 / 1440 * 52 * 1vw);
        max-width:calc(100 / 1440 * 1280 * 1vw)
    }
}
.lp-about .lp-about-inner h2 {
    position:relative;
  margin-bottom: min(6vw, 30px);
}
@media (min-width: 50rem){
    .lp-about .lp-about-inner h2 {
        margin-block-end:-1.25vw;
        padding-block-start:calc(100 / 1440 * 77 * 1vw);
        padding-block-end:calc(100 / 1440 * 71 * 1vw)
    }
}


.lp-about .lp-about-inner p {
    margin-right:auto;
    margin-left:auto;
    font-size: 3.25vw;
    font-weight:500;
  line-height: 1.8;
}
@media (min-width: 50rem){
    .lp-about .lp-about-inner p{
        max-width:calc(100 / 1440 * 940 * 1vw);
        line-height:calc(50 / 18);
        font-size:1.25vw;
        letter-spacing:.08em
    }
}
.lp-about.is-active {
    opacity:1;
    transform:scale(1);
    pointer-events:auto;
    transition-duration:1s;
    transition-timing-function:cubic-bezier(.77, 0, .175, 1)
}



.sectionHead h2.new {
  position: relative;
}
.sectionHead h2.new::after {
  content: "NEW";
  background: url("../images/new_badge.svg") no-repeat center center;
  background-size: contain;
  width: 5em;
  height: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 0.28em;
  position: absolute;
  top: 50%;
  right: -6em;
  transform: translateY(-50%);
}
.sectionHead h2.new2 {
  position: relative;
}
.sectionHead h2.new2::after {
  content: "NEW";
  background: url("../images/new_badge_y.svg") no-repeat center center;
  background-size: contain;
  width: 5em;
  height: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 0.28em;
  position: absolute;
  top: 50%;
  right: -6em;
  transform: translateY(-50%);
}
.interviewTitle h3 {
  font-size: min(4.3vw, 36px);
  line-height: 1.6;
  margin-bottom: min(4vw, 20px);
}
.interviewTitle > p {
  font-weight: bold;
}
.interviewTitle .readBtn {
  display: block;
  width: fit-content;
  border: #000 solid 1px;
  color: #000;
  text-decoration: none;
  margin-top: min(6vw, 30px);
  padding: min(3vw, 15px) min(8vw, 60px);
  font-size: min(3.2vw, 16px);
  font-weight: bold;
}


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

  .interviewTitle h3 {
    letter-spacing: 0;
  }


}

.interviewDetail .articleTtl {
  font-size: min(5.6vw, 36px);
  font-weight: bold;
  margin-bottom: min(6vw, 30px);
  line-height: 1.5;
}

.interviewDetail h3 {
  font-size: min(4.4vw, 28px);
  color: #fff;
  background-color: #000;
  width: fit-content;
  line-height: 1.5;
  padding: 0 0.4em;
  margin-bottom: min(3vw, 15px);
}
.interviewDetail .interviewBlock h3 {
  margin-bottom: min(8vw, 50px);
}
.interviewDetail .listener {
  margin-bottom: min(8vw, 60px);
  font-size: min(3.2vw, 14px);
  font-weight: bold;
}

.interviewDetail .interviewBlock {
  border-bottom: #000 solid 1px;
  padding-bottom: min(8vw, 60px);
  margin-bottom: min(8vw, 60px);
}
.interviewDetail .interviewBlock:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.interviewDetail .interviewBlock p {
  font-size: min(3.3vw, 15px);
  letter-spacing: 0.03em;
  margin-bottom: min(4vw, 20px);
  line-height: 2;
}
.interviewDetail .interviewBlock p:last-child {
  margin-bottom: 0;
}
.interviewDetail .interviewBlock p a {
  color: #000;
  text-decoration: underline;
}
.interviewDetail .interviewBlock .qTxt {
  font-weight: bold;
}
.interviewDetail .interviewBlock .qTxt::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 1px;
  background-color: #000;
  vertical-align: middle;
  margin-right: 0.4em;
}
.interviewDetail .interviewBlock .talkTtl {
  border-bottom: #000 solid 1px;
  padding-bottom: min(3vw, 15px);
  font-size: min(4vw, 22px);
  margin-bottom: min(6vw, 30px);
}
.interviewDetail .interviewBlock .name {
  font-weight: bold;
  margin-right: min(2vw, 10px);
}

.recordCollectors {
  border-top: #000 solid 1px;
  text-align: center;
}
.recordCollectors p {
  font-weight: bold;
  margin-bottom: min(4vw, 20px);
}
.recordCollectors a {
  border: #000 solid 1px;
  display: block;
  line-height: 0;
  padding: min(4vw, 20px) min(10vw, 60px);
  width: fit-content;
  margin: 0 auto;
}
.recordCollectors a img {
  width: min(35vw, 200px);
}
.albumLink {
  border-top: #000 solid 1px;
}
.albumLink .bnrAlbum {
  line-height: 0;
  padding: 0 min(6vw, 30px);
  margin-bottom: min(8vw, 60px);
}

.talkProfileTtl {
  font-size: min(3.8vw, 20px);
  font-weight: bold;
  margin-bottom: min(4vw, 20px);
}
.talkProfile {
  border: #000 solid 1px;
  padding: min(6vw, 30px);
  margin-bottom: min(3vw, 15px);
}
.talkProfile .talkProfileItem + .talkProfileItem {
  margin-top: min(6vw, 30px);
  padding-top: min(6vw, 30px);
  border-top: #000 solid 1px;
}
.talkProfile .talkProfileItem p {
  font-size: min(3.2vw, 14px);
}
.talkProfile .talkProfileItem .profileName {
  font-size: min(3.4vw, 16px);
  font-weight: bold;
  margin-bottom: min(2vw, 10px);
}

.continue {
  text-align: center;
  font-size: min(3.8vw, 20px);
}

.talkAnchor {
  display: flex;
  gap: min(4vw, 20px);
  margin-bottom: min(8vw, 60px);
}
.talkAnchor li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: min(4vw, 20px);
  padding: min(1vw, 5px) min(7.5vw, 55px) min(1vw, 5px) min(5vw, 25px);
  border: #000 solid 1px;
  border-radius: 100px;
  position: relative;
  letter-spacing: 0.6em;
}
.talkAnchor li a::after {
  content: "";
  width: 0.7em;
  aspect-ratio: 1/1;
  border-right: #000 solid 1px;
  border-bottom: #000 solid 1px;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 45%;
  right: min(5vw, 25px);
}

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

  .interviewDetail .interviewBlock p {
    letter-spacing: 0;
    line-height: 1.9;
  }
  .albumLink .bnrAlbum {
    padding: 0;
  }

}



/* ////////////////////////////////////////////////////////////////////////////////

	History

//////////////////////////////////////////////////////////////////////////////// */
.historyTitle {
  font-size: min(3.6vw, 24px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: min(6vw, 30px);
}

.map {
  margin-top: min(8vw, 60px);
  padding-bottom: min(8vw, 60px);
  margin-bottom: min(8vw, 60px);
  border-bottom: #000 solid 1px;
  position: relative;
}
.mapImg {
  line-height: 0;
  width: 80%;
  max-width: 1020px;
  margin: 0 auto;
}
.mapMenu {
  aspect-ratio: 199/185;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 1020px;
}
.mapMenu li {
  position: absolute;
  top: 0;
  left: 0;
}
.mapMenu li:nth-child(1) {
  top: 14.5%;
  left: 58%;
  transform: translateY(-50%);
}
.mapMenu li:nth-child(2) {
  top: 48.9%;
  left: 92%;
  transform: translateY(-50%);
}
.mapMenu li:nth-child(3) {
  top: 44%;
  left: 52.6%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(4) {
  top: 69.4%;
  left: 92%;
  transform: translateY(-50%);
}
.mapMenu li:nth-child(5) {
  top: 79%;
  left: 97.5%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(6) {
  top: 88%;
  left: 75.3%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(7) {
  top: 90%;
  left: 58.6%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(8) {
  top: 99.7%;
  left: 49%;
  transform: translateY(-50%);
}
.mapMenu li:nth-child(9) {
  top: 60%;
  left: 39%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(10) {
  top: 96%;
  left: 34.7%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(11) {
  top: 64%;
  left: 26.4%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(12) {
  top: 66%;
  left: 9.8%;
  transform: translateX(-50%);
}
.mapMenu li:nth-child(13) {
  top: 42%;
  left: 7.9%;
  transform: translateX(-50%);
}

.mapMenu li a {
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 100px;
  padding: min(0.4vw, 2px) min(2vw, 20px) min(0.6vw, 3px);
  text-align: center;
  font-size: min(1.8vw, 12px);
  white-space: nowrap;
  display: block;
}

.historyPic {
  /* display: flex;
  justify-content: space-between;
  margin-top: min(7vw, 40px);
  margin-bottom: min(6vw, 30px); */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(7vw, 40px) 4%;
  grid-auto-flow: dense;
  margin-top: min(7vw, 40px);
  margin-bottom: min(6vw, 30px);
}
/* .historyPic li {
  line-height: 0;
  width: 48%;
  aspect-ratio: 62/40;
} */
.historyPic li.gridSpan {
  grid-row-end: span 2;
}
.historyPic li .caption {
  line-height: 1.6;
  font-size: min(3vw, 12px);
  margin-top: min(2vw, 10px);
}

.interviewDetail .interviewBlock h4 {
  font-size: min(3.6vw, 18px);
  margin-bottom: min(3vw, 15px);
  margin-top: min(7vw, 50px);
}

.commentTxt {
  margin-bottom: min(8vw, 40px);
}


.liveTourTitle h3 {
  font-size: min(3.6vw, 18px);
  margin-bottom: min(8vw, 60px);
}
.liveTourTitle .liveTourLink {
  font-size: min(4.3vw, 36px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: min(4vw, 20px);
}
.liveTourTitle p + .liveTourLink {
  margin-top: min(8vw, 60px);
}
.liveTourTitle .liveTourLink a {
  color: #000;
  text-decoration: underline;
}
.liveTourTitle .liveTourLink a:hover {
  text-decoration: none;
}

.liveTourTitle .presentBtn {
  margin-top: min(8vw, 60px);
}
.liveTourTitle .presentBtn a {
  display: block;
  width: fit-content;
  border: #000 solid 1px;
  font-size: min(4vw, 18px);
  color: #ff6000;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  padding: min(1vw, 5px) min(6vw, 30px) min(1.6vw, 8px);
}
.liveTourTitle .presentBtn a span {
  font-size: min(3.2vw, 12px);
  display: block;
  color: #000;
  letter-spacing: 0.04em;
}


.pagetop {
  position: fixed;
  bottom: min(4vw, 30px);
  right: min(4vw, 30px);
  z-index: 30;
}
.pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: min(12vw, 60px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.pagetop a::before {
  content: "";
  display: block;
  width: 20%;
  aspect-ratio: 1/1;
  border-top: #000 solid 3px;
  border-right: #000 solid 3px;
  transform: translateY(10%) rotate(-45deg);
}

@media screen and (min-width: 821px) {
  .mapMenu li a {
    transition: all 0.3s ease-out;
  }
  .mapMenu li a:hover {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 820px) {

  .mapImg {
    width: 90%;
  }
  .mapMenu {
    width: 90%;
  }

}


.snsMessageTtl {
  margin-bottom: min(6vw, 30px);
}
.interviewDetail .messageList {
  overflow: hidden;
}
.interviewDetail .messageList .listMask {
  content: "";
  display: block;
  width: 100%;
  height: min(30vw, 300px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(227,227,231,1) 30%, rgba(227,227,231,0) 100%);
  mix-blend-mode: lighten;
}
.interviewDetail .messageList .name {
  text-align: right;
  margin-right: 0;
  font-size: min(3.2vw, 14px);
}
.interviewDetail .moreBtn {
  margin: 0;
}

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



/* ////////////////////////////////////////////////////////////////////////////////

	solo

//////////////////////////////////////////////////////////////////////////////// */

.soloList {
  display: flex;
  flex-wrap: wrap;
  gap: min(6vw, 30px) 30px;
}
.soloList li {
  width: calc((100% - 60px) / 3);
  aspect-ratio: 1/1;
  padding: min(3.2vw, 25px);
  box-shadow: 0px 6px 10px 0px rgba(0, 0, 0, 0.1);
  display: none;
  opacity: 0;
  transition: all 0.6s ease-out;
  position: relative;
}


.soloList li.new::after {
  content: "NEW";
  background: url(../images/new_badge_y.svg) no-repeat center center;
  background-size: contain;
  width: 5em;
  height: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  font-size: 0.84em;
  font-weight: bold;
  position: absolute;
  top: -1.5em;
  right: 0.7em;
}

.soloList li.on {
  opacity: 1;
}
.soloList li.visible {
  display: block;
}
.soloList li:nth-child(8n - 4) {
  transform: rotate(3deg);
}
.soloList li:nth-child(6n - 3) {
  transform: rotate(-3deg);
}
.soloList li a {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.soloList li.cReport {
  background-image: linear-gradient(0deg, #ffb2cd 88%, #f196b6 95%);
}

.soloList li.hara,
.soloList li.c01 {
  background-image: linear-gradient(0deg, #e3bbe8 88%, #dea9d0 95%);
}
.soloList li.c02 {
  background-image: linear-gradient(0deg, #f0d387 88%, #ecc96a 95%);
}
.soloList li.c03 {
  background-image: linear-gradient(0deg, #96c4a1 88%, #88ac91 95%);
}
.soloList li.c04 {
  background-image: linear-gradient(0deg, #bdcde6 88%, #a3b7d8 95%);
}
.soloList li.c05 {
  background-image: linear-gradient(0deg, #fdd3c0 88%, #f5c5af 95%);
}

.soloList li .soloTxt p {
  font-size: min(1.5vw, 15px);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
.soloList li .soloTxt .articleLogo + p {
  -webkit-line-clamp: 2;
}
.soloList li .soloTxt p.writer {
  padding-left: 1.4em;
  font-size: min(1.1vw, 13px);
  position: relative;
  margin-top: 0.6em;
}
.soloList li .soloTxt p.writer::before {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 0;
}
.soloList li .soloTxt .cat {
  display: inline-block;
  border: #000 solid 1px;
  border-radius: 100px;
  padding: min(0.2vw, 2px) min(2vw, 15px) min(0.4vw, 3px);
  font-size: min(1.1vw, 11px);
  margin-bottom: min(0.8vw, 7px);
}

.soloList li .articleLogo {
  padding-top: 36%;
  position: relative;
  margin-bottom: min(2.2vw, 17px);
}
.soloList li .articleLogo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.soloList li .name {
  font-size: min(1.3vw, 14px);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.soloList li .name::after {
  content: "";
  display: block;
  width: min(1.8vw, 20px);
  aspect-ratio: 1/1;
  background: url("../images/ico_allow.png") no-repeat center center / contain;
}

@media screen and (max-width: 820px) {
  
  .soloList {
    gap: min(6vw, 30px) 0;
    justify-content: space-between;
  }
  .soloList li {
    width: 48.5%;
  }
  .soloList li.new::after {
    width: 4.2em;
    height: 4.2em;
    font-size: 0.8em;
    top: -1.1em;
    right: 0.4em;
  }
  .soloList li .articleLogo {
    padding-top: 30%;
  }
  .soloList li .soloTxt p {
    font-size: min(2.8vw, 17px);
    line-height: 1.3;
    -webkit-line-clamp: 4;
    letter-spacing: 0;
  }
  .soloList li .soloTxt .articleLogo + p {
    -webkit-line-clamp: 2;
  }
  .soloList li .soloTxt p.writer {
    font-size: min(2.1vw, 11px);
  }
  .soloList li .soloTxt .cat {
    font-size: min(2.2vw, 12px);
  }
  
  .soloList li .name {
    font-size: min(2.6vw, 14px);
  }
  .soloList li .name::after {
    width: min(3vw, 20px);
  }
  
}


/* ////////////////////////////////////////////////////////////////////////////////

	solo detail

//////////////////////////////////////////////////////////////////////////////// */

body.cReport {
  background: #ffb2cd;
}

body.hara,
body.c01,
body.c01_b {
  background: #e3bbe8;
}
body.c02 {
  background: #fae19e;
}
body.c03 {
  background: #96c4a1;
}
body.c04 {
  background: #bdcde6;
}
body.c05 {
  background: #fdd3c0;
}
body.hara::before,
body.c01::before,
body.c01_b::before,
body.c02::before,
body.c03::before,
body.c04::before,
body.c05::before {
  display: none;
}
body.hara #soloDetail,
body.c01 #soloDetail {
  color: #8e2395;
}


#soloDetail {
  overflow: hidden;
  max-width: 100%;
  padding: 0 0 min(10vw, 80px);
  font-weight: 500;
  position: relative;
}
#soloDetail::before,
#soloDetail::after {
  content: "";
  width: calc(100% - 60px);
  height: 1px;
  background-color: #000;
  position: absolute;
  left: 30px;
}
#soloDetail::before {
  top: 0;
}
#soloDetail::after {
  top: 10px;
}
#soloDetailSection {
  position: relative;
  border-top: #000 solid 1px;
}
#soloDetailSection::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: 0;
}


.soloDetailWrap {
/*  padding: min(8vw, 80px) min(6vw, 80px);*/
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
/*
.soloDetailWrap.kuwata {
  background-image: linear-gradient(180deg, #c5504c 1%, #c95754 4%);
}
.soloDetailWrap.hara {
  background-image: linear-gradient(180deg, #dea9d0 1%, #e3bbe8 4%);
}
.soloDetailWrap.hara {
  background-image: linear-gradient(180deg, #dea9d0 1%, #e3bbe8 4%);
}
.soloDetailWrap.matsuda {
  background-image: linear-gradient(180deg, #ecc96a 1%, #f0d387 4%);
}
.soloDetailWrap.sekiguchi {
  background-image: linear-gradient(180deg, #a3b7d8 1%, #bdcde6 4%);
}
.soloDetailWrap.nozawa {
  background-image: linear-gradient(180deg, #488156 1%, #619b6f 4%);
}
*/

.soloDetailHead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: min(3vw, 15px) 0;
  margin-bottom: min(6vw, 30px);
  padding: 0 min(6vw, 30px);
  width: 100%;
}
.soloDetailHead .cat {
  display: block;
  border: #000 solid 1px;
  border-radius: 100px;
  padding: min(0.2vw, 2px) min(3vw, 15px) min(0.4vw, 3px);
  font-size: min(2.4vw, 12px);
  font-weight: bold;
}
.hara .soloDetailHead .cat,
.c01 .soloDetailHead .cat {
  border: #8e2395 solid 1px;
}
.soloDetailHead .name {
  font-size: min(3.2vw, 14px);
  font-weight: bold;
}
.soloDetailHead h3,
.contentBlock h3 {
  width: 100%;
  font-size: min(5.4vw, 34px);
  line-height: 1.6;
}
.contentBlock h3 {
  margin-bottom: min(7vw, 40px);
}
.contentBlock h3 span.credit {
  display: block;
  font-size: min(3.4vw, 16px);
  margin-top: 1em;
}

.soloDetailHead .credit {
  font-size: min(3.2vw, 14px);
}

.soloDetailHead .headImg {
  padding-top: min(8vw, 60px);
  border-top: #000 solid 1px;
  margin-top: min(4vw, 20px);
  line-height: 0;
  width: 100%;
  text-align: center;
}
.soloDetailHead .headImg img {
  max-width: 660px;
  width: 80%;
}

.soloDetailHead .reviewIntro {
  border-bottom: #000 solid 1px;
  width: 100%;
  padding-bottom: min(6vw, 30px);
  margin-top: min(8vw, 60px);
}


.soloDetailBody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(8vw, 60px) 0;
}

.contentBlock {
/*  margin-bottom: min(10vw, 80px);*/
  position: relative;
  width: 100%;
}
/*
.contentBlock::before,
.contentBlock::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contentBlock::before {
  z-index: 0;
}
.contentBlock.halfLeft::before {
  transform: translate(-10px, 20px) rotate(-7deg);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #e5e5e5 1%, #fff 4%);
}
.contentBlock.halfRight::before {
  transform: translate(10px, -40px) rotate(2deg);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #e5e5e5 1%, #fff 4%);
}
.contentBlock.wideFlex::before {
  transform: translate(-18px, -30px) rotate(1deg);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #e5e5e5 1%, #fff 4%);
}
.contentBlock.wideTxt::before {
  transform: translate(-15px, 10px) rotate(-1deg);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #e5e5e5 1%, #fff 4%);
}
.contentBlock.wideMov::before {
  display: none;
}
.contentBlock::after {
  z-index: 1;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.2);
}
.soloDetailWrap.kuwata .contentBlock::after {
  background-image: linear-gradient(180deg, #c5504c 1%, #c95754 4%);
}
.soloDetailWrap.hara .contentBlock::after {
  background-image: linear-gradient(180deg, #dea9d0 1%, #e3bbe8 4%);
}
.soloDetailWrap.hara .contentBlock::after {
  background-image: linear-gradient(180deg, #dea9d0 1%, #e3bbe8 4%);
}
.soloDetailWrap.matsuda .contentBlock::after {
  background-image: linear-gradient(180deg, #ecc96a 1%, #f0d387 4%);
}
.soloDetailWrap.sekiguchi .contentBlock::after {
  background-image: linear-gradient(180deg, #a3b7d8 1%, #bdcde6 4%);
}
.soloDetailWrap.nozawa .contentBlock::after {
  background-image: linear-gradient(180deg, #488156 1%, #619b6f 4%);
}
*/


.contentBlock h4 {
  color: #fff;
  font-size: min(5.4vw, 28px);
  margin-bottom: min(8vw, 60px);
}
.contentBlock h4:last-child {
  margin-bottom: 0;
}
.hara .contentBlock h4 span,
.c01 .contentBlock h4 span {
  display: inline;
  background-color: #8e2395;
  padding: 0.08em 0.4em 0.1em;
  line-height: 2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hara .contentBlock .clolor2 h4 span,
.c01 .contentBlock .clolor2 h4 span {
  background-color: #3e0e7a;
}

.contentBlock.halfLeft {
  width: 49%;
}
.contentBlock.halfRight {
  width: 49%;
}
.contentBlock.wideFlex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: min(8vw, 60px) 0;
}

.contentBlock .txtBox {
  font-size: min(3.2vw, 14px);
  position: relative;
  z-index: 2;
  padding: min(7vw, 40px) min(6vw, 30px);
}
.hara .contentBlock .clolor2,
.c01 .contentBlock .clolor2 {
  color: #3e0e7a;
}
.contentBlock .txtBox p + p {
  margin-top: min(7vw, 40px);
}



.contentBlock .txtBox p.fl {
  width: 60%;
  margin-right: 40%;
}
.contentBlock .txtBox p.fr {
  width: 60%;
  margin-left: 40%;
}
.contentBlock .txtBox .imgBoxFit {
  margin: min(8vw, 60px) 0;
}

.contentBlock .imgBox {
/*  border: #fff solid 16px;*/
  position: relative;
  line-height: 0;
  z-index: 2;
  text-align: center;
  padding: min(6vw, 30px) min(6vw, 30px) 0;
}
.contentBlock .imgBoxFit {
  position: relative;
  line-height: 0;
  z-index: 2;
  text-align: center;
}
/*
.contentBlock .imgBox img,
.contentBlock .imgBoxFit img {
  max-height: 480px;
}
*/

.contentBlock.wideFlex .imgBox,
.contentBlock.wideFlex .imgBoxFit {
  width: 54%;
}
.contentBlock.wideFlex .txtBox {
  width: 44%;
  padding: 0 min(6vw, 30px);
}

/*
.contentBlock .imgBox::after {
  content: "";
  display: block;
  background: url("../images/tape.png") no-repeat center center / contain;
  width: min(32%, 130px);
  aspect-ratio: 260/88;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -103%);
}
*/

.contentBlock.floatLeft,
.contentBlock.floatRight {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contentBlock.floatRight {
  flex-direction: row-reverse;
}
.contentBlock.floatLeft .txtBox,
.contentBlock.floatRight .txtBox {
  width: 50%;
}
.contentBlock.floatLeft .imgBox,
.contentBlock.floatRight .imgBox {
  width: 45%;
}


.contentBlock.wideMov {
  width: 90%;
  max-width: 980px;
  margin: min(8vw, 60px) auto;
}
.contentBlock.wideMov .movWrap {
  width: 100%;
  position: relative;
  z-index: 2;
}
.contentBlock.wideMov .movWrap > div {
  width: 100%;
  aspect-ratio: 100/56.25;
  position: relative;
}
.contentBlock.wideMov .movWrap > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contentBlock.wideMov p {
  text-align: center;
  font-size: min(3.4vw, 16px);
  margin-top: min(4vw, 30px);
}

.btnWrap {
  padding: 0 min(6vw, 30px);
  margin: min(8vw, 60px) 0;
}
.btnWrap .btnWrapBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(6vw, 30px) 6%;
  border-top: #000 solid 1px;
  gap: min(4vw, 20px);
}
.btnWrap .btnWrapBlock:last-child {
  border-bottom: #000 solid 1px;
}
.btnWrap .btnWrapBlock p {
  display: flex;
  gap: 1em;
}
.btnWrap .btnWrapBlock p + p {
  margin-top: 0.4em;
}
.btnWrap .btnWrapBlock p::before {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 53/56;
  background: url("../images/ico_note.png") no-repeat center center / contain;
}
.btnWrap .btnWrapBlock .btnListFlex {
  display: flex;
  justify-content: space-between;
  min-width: 60%;
}
.btnWrap .btnWrapBlock .btnListFlex li {
  width: 48%;
}
.btnWrap .btnWrapBlock .btnListFlex li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: min(3.5vw, 15px);
  gap: 1em;
  color: #000;
  text-decoration: none;
}


.btnList {
  display: flex;
  justify-content: center;
  gap: min(6vw, 40px);
  width: 100%;
  margin-top: min(6vw, 30px);
  margin-bottom: min(8vw, 60px);
}
.btnList li {
  width: min(75%, 320px);
}
.btnList li a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: min(3.5vw, 15px);
  gap: 1em;
  color: #000;
  text-decoration: none;
}
.btnList li a::before {
  content: "";
  display: block;
  width: 1.2em;
  aspect-ratio: 53/56;
  background: url("../images/ico_note.png") no-repeat center center / contain;
}


/*
.soloFlexWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: min(8vw, 60px);
}
.soloFlexWrap:nth-child(even) {
  flex-direction: row-reverse;
}
.soloFlexWrap .txtBox {
  width: 50%;
  font-size: min(3.2vw, 14px);
}
.soloFlexWrap .txtBox p {
  margin-bottom: min(4vw, 20px);
}
.soloFlexWrap .txtBox p:last-child {
  margin-bottom: 0;
}
.soloFlexWrap .imgBox {
  width: 45%;
  border: #fff solid 16px;
  position: relative;
  line-height: 0;
}
.soloFlexWrap .imgBox::after {
  content: "";
  display: block;
  background: url("../images/tape.png") no-repeat center center / contain;
  width: min(32%, 130px);
  aspect-ratio: 260/88;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -103%);
}

.soloFlexWrap .movWrap {
  width: 45%;
}
.soloFlexWrap .movWrap > div {
  width: 100%;
  aspect-ratio: 100/56.25;
  position: relative;
}
.soloFlexWrap .movWrap > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.soloBlockWrap {
  margin-bottom: min(8vw, 60px);
}
.soloBlockWrap .txtBox {
  width: 100%;
  font-size: min(3.2vw, 14px);
}
.soloBlockWrap .txtBox p {
  margin-bottom: min(4vw, 20px);
}
.soloBlockWrap .txtBox p:last-child {
  margin-bottom: 0;
}

.soloBlockWrap .imgBox {
  width: 100%;
  border: #fff solid 16px;
  position: relative;
  line-height: 0;
}
.soloBlockWrap .imgBox img {
  width: 100%;
}
.soloBlockWrap .imgBox::after {
  content: "";
  display: block;
  background: url("../images/tape.png") no-repeat center center / contain;
  width: min(32%, 130px);
  aspect-ratio: 260/88;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -103%);
}

.soloBlockWrap .movWrap {
  width: 100%;
}
.soloBlockWrap .movWrap > div {
  width: 100%;
  aspect-ratio: 100/56.25;
  position: relative;
}
.soloBlockWrap .movWrap > div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
*/


.bnrList {
  max-width: 800px;
  margin: min(8vw, 60px) auto 0;
  display: flex;
  flex-direction: column;
  gap: min(6vw, 30px);
  line-height: 0;
  padding: 0 min(6vw, 60px);
}


@media screen and (max-width: 820px) {
  .contentBlock.halfLeft {
    width: 100%;
    margin-bottom: min(4vw, 60px);
  }
  .contentBlock.halfRight {
    width: 100%;
    margin-top: min(4vw, 60px);
  }
  .contentBlock.wideFlex {
    flex-direction: column;
    padding: 0;
  }
  .contentBlock.wideFlex .imgBox,
  .contentBlock.wideFlex .txtBox {
    width: 100%;
  }
  .contentBlock.wideFlex .txtBox {
    padding: min(7vw, 40px) min(6vw, 30px);
  }
  
  .contentBlock.halfLeft::before {
    transform: translate(-4px, 20px) rotate(-3deg);
  }
  .contentBlock.halfRight::before {
    transform: translate(8px, -15px) rotate(1.6deg);
  }
  .contentBlock.wideFlex::before {
    transform: translate(-14px, -15px) rotate(1deg);
  }
  .contentBlock.wideTxt::before {
    transform: translate(-10px, 15px) rotate(-0.6deg);
  }
  
  .contentBlock.wideFlex .imgBox,
  .contentBlock.wideFlex .imgBoxFit {
    width: 100%;
  }
  
  .contentBlock .txtBox p.fl {
    width: 75%;
    margin-right: 25%;
  }
  .contentBlock .txtBox p.fr {
    width: 75%;
    margin-left: 25%;
  }
  
  #soloDetail .albumLink {
    padding-left: min(8vw, 60px);
    padding-right: min(8vw, 60px);
  }
  
  #soloDetail::before,
  #soloDetail::after {
    width: calc(100% - 8vw);
    left: 4vw;
  }
  #soloDetail::before {
    top: 0;
  }
  #soloDetail::after {
    top: 5px;
  }
  
  .btnList {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .btnWrap .btnWrapBlock {
    flex-direction: column;
    padding: min(5vw, 30px) 0;
  }
  .btnWrap .btnWrapBlock .btnListFlex {
    min-width: 100%;
  }
  
/*
  .soloFlexWrap,
  .soloFlexWrap:nth-child(even) {
    flex-direction: column;
    gap: min(8vw, 60px);
  }
  .soloFlexWrap .txtBox {
    width: 100%;
  }
  .soloFlexWrap .imgBox {
    width: 100%;
    border: #fff solid 14px;
  }
*/
  
  
}

