@charset "UTF-8";

/*---------------------------------------------

	全ページ共通

---------------------------------------------*/
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: -webkit-fill-available;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 17px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.5vw;
    /*文字量L-3.3vw/文字量M-3.5vw  */
  }
}

body {
  color: #000;
  letter-spacing: 0.1rem;
  line-height: 1.7;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

.mont {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  letter-spacing: 0.35rem;
  font-style: normal;
}

footer {
  margin-top: auto;
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/
.pcWidth-xl {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-l {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-m {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.pcWidth-s {
  max-width: 760px;
  width: 90%;
  margin: 0 auto;
}
.pcWidth-ss {
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1450px) {
  .pcWidth-xl {
    max-width: 1600px;
  }

  .pcWidth-l {
    max-width: 1400px;
  }

  .pcWidth-m {
    max-width: 1100px;
  }

  .pcWidth-s {
    max-width: 960px;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
}

/*---------------------------------------------

fv

-----------------------------------------------------------*/
.header_logo {
  margin: 4rem auto 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 17rem;
}
@media screen and (max-width: 540px) {
  .header_logo {
    width: 13rem;
    margin: 3rem auto 2rem;
  }
}

.fv {
  position: relative;
}

.fv .image {
  width: 70%;
  margin: 6rem auto;
}

@media screen and (max-width: 540px) {
  .fv {
    position: relative;
  }

  .fv .image {
    height: auto;
    width: 90%;
    margin: 4rem auto;
  }

  .fv .image img {
    height: auto;
    width: 100%;
  }
}
.fv .artist_photo {
  margin-bottom: 4rem;
  position: relative;
  top: 0;
}

.fv .artist_photo .orange {
  background-color: #e15421;
  position: absolute;
  height: 20rem;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (max-width: 540px) {
  .fv .artist_photo {
    margin-bottom: 1rem;
  }

  .fv .artist_photo .orange {
    height: 10rem;
  }
}

.fv .text {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}

.fv .text .day {
  font-size: 2rem;
}

.fv .text small {
  font-size: 1rem;
  display: block;
  font-weight: 500;
  margin-top: 1rem;
}
.fv .text span {
  width: 35rem;
  display: inline-block;
  margin: 1rem;
}
@media screen and (max-width: 540px) {
  .fv .text {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
  }
  .fv .text .day {
    font-size: 1.1rem;
  }
  .fv .text span {
    width: 90%;
  }
  .fv .text small {
    font-size: 0.9rem;
  }
}
/*縦線が動いてスクロールを促す*/

.scrolldown1 {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 50px;
}

/*Scrollテキスト*/
.scrolldown1 span {
  position: absolute;
  left: -50%;
  transform: translateX(-50%);
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 540px) {
  .scrolldown1 span {
    position: absolute;
    top: -20px;
    color: #eee;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/*---------------------------------------------

	sec_about

---------------------------------------------*/
.sec_about {
  color: #fff;
  background-color: #000;
  padding: 6rem 0 7rem;
  background-size: cover;
  position: relative;
}

.sec_about .disc {
  font-size: 1.75rem;
  text-align: center;
  font-weight: bold;
  line-height: 2;
  text-shadow: 0 0 10px rgba(197, 112, 21, 0.7),
    0 0 50px rgba(197, 112, 21, 0.7);
}
.sec_about .disc_s {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  text-align: left;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 540px) {
  .sec_about {
    padding: 5rem 0;
  }
  .sec_about .disc {
    font-size: 1.5rem;
    line-height: 1.8;
  }
}
.sec_about .list_area {
  width: 90%;
  max-width: 820px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 540px) {
  .sec_about .list_area {
    margin-bottom: 3rem;
  }
}
.movie_area {
  width: 90%;
  max-width: 820px;
  margin: auto;
}

.movie_item .movie_wrap {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

/* .movie_item:first-child {
  margin-bottom: 5rem;
} */

.movie_item iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.movie_info .title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

@media screen and (max-width: 540px) {
  .movie_info .title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
  }
}

.sec_about .list_area .contents {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}

.sec_about .list_area .contents .left {
  margin-right: 3rem;
}
@media screen and (max-width: 540px) {
  .sec_about .list_area .contents {
    flex-direction: column;
    padding: 2rem 3rem;
  }
  .sec_about .list_area .contents .item {
    display: inline-block;
  }
}

.info_list .item .contents .sold {
  pointer-events: none;
}
/*---------------------------------------------

	sec_information

---------------------------------------------*/
.sec_information {
  padding: 8rem 0 2.5rem;
  background-color: #af8d51;
}

.all_info {
  margin-bottom: 4rem;
}

.sec_information .sec_head {
  font-size: 4.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 4.5rem;
  color: #fff;
  text-shadow: 0 0 2rem #fff;
}
.sec_information .sec_head span {
  font-size: 1.3rem;
  font-weight: 400;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .sec_information {
    padding: 4rem 0 2rem;
  }
  .sec_information .sec_head {
    font-size: 2.5rem;
    text-shadow: 0 0 1rem #fff;
    margin-bottom: 3rem;
  }
  .sec_information .sec_head span {
    font-size: 1rem;
  }
}
.info_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.info_list .item {
  display: flex;
  flex-direction: column; /* 要素を縦方向に配置 */
  background-color: #fff;
  width: 47.5%;
  margin-bottom: 3.5rem;
}

.info_list .item .contents {
  flex-grow: 1; /* コンテンツ領域を最大に広げる */
  padding: 1rem; /* 適切な余白を設定 */
  display: flex; /* 子要素をFlexboxとして配置 */
  flex-direction: column; /* 子要素を縦方向に配置 */
}

.info_list .item .contents a {
  align-self: flex-end; /* ボタンを下部に配置 */
  margin-top: auto; /* ボタン上の余白を調整 */
}

@media screen and (max-width: 540px) {
  .info_list {
    display: block;
  }
  .info_list .item {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.info_list .item:nth-child(odd) {
  margin-right: 5%;
}
.info_list .item .head {
  background-color: #000;
  padding: 1.5rem 0.5rem;
  font-size: 1.2rem;
  color: #fff;
  border-bottom: 1px solid;
  text-align: center;
}

.info_list .item .head small {
  font-size: 0.8rem;
  color: #f86a6a;
  line-height: 1.4;
  display: inline-block;
}

.info_list .item .contents {
  padding: 3rem;
}
@media screen and (max-width: 540px) {
  .info_list .item .contents {
    padding: 2rem;
    padding-bottom: 3rem;
  }
}
.info_list .item .contents .album {
  margin-bottom: 2.5rem;
}

.info_list .item .contents .album img {
  box-shadow: 0 0 2.5rem #5c5c5c25;
}

.info_list .item .contents .album .img_first {
  margin-bottom: 2rem;
}
.info_list .item .contents .text {
  margin-bottom: 2.5rem;
}

.track_list_title {
  color: #e15421;
  text-align: center;
  display: flex;
  align-items: center;
}
.track_list_title p {
  margin: 0 1rem;
}
.track_list_title span {
  flex: 1;
  height: 1px;
  width: 100%;
  background-color: #e15421;
}
/*---------------------------------------------

	トレカ

---------------------------------------------*/

.cald_info {
  padding: 5rem 0 3rem;
  background-color: #fff;
  box-shadow: 0 0 2.5rem #ffffff8d;
  border-radius: 1rem;
}
@media screen and (max-width: 540px) {
  .cald_info {
    padding: 2rem 0 1rem;
    background-color: #fff;
    box-shadow: 0 0 1rem #ffffff8d;
  }
}
.cald_info .inner {
  width: 80%;
  max-width: 960px;
  margin: auto;
}
@media screen and (max-width: 540px) {
  .cald_info .inner {
    width: 90%;
  }
}
.sec_card {
  background-color: #af8d51;
  padding-bottom: 5rem;
}
.sec_card .sec_head_card {
  margin-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
  padding: 1rem 0;
  border-top: 2px solid #49221f;
  border-bottom: 2px solid #49221f;
  color: #49221f;
}

.sec_card .sec_head_card small {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 150%;
  display: block;
  color: #49221f;
}

@media screen and (max-width: 540px) {
  .sec_card {
    background-color: #af8d51;
    padding-bottom: 3rem;
  }
  .sec_card .sec_head_card {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    padding: 1.5rem 0;
  }
}
.sec_card .image1 {
  margin-bottom: 6rem;
}
@media screen and (max-width: 540px) {
  .sec_card .image1 {
    margin-bottom: 6rem;
  }
}
.sec_card .image3 {
  margin-bottom: 0rem;
}
@media screen and (max-width: 540px) {
  .sec_card .image3 {
    margin-bottom: 2rem;
  }
}
.tokuten_firstdisc {
  margin-bottom: 3rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tokuten_firstdisc a {
  display: block;
  width: 12rem;
  margin-top: 0.75rem;
}

.text_contents {
  margin-bottom: 2.5rem;
}

.text_contents .item a img {
  width: 14rem;
  margin: auto;
  margin-top: 0.75rem;
}

.text_contents .item {
  width: 100%;
  margin-bottom: 3.5rem;
  letter-spacing: 0;
}

.text_contents .item .head_s {
  padding: 0.3rem;
  margin-bottom: 1rem;
  color: #fff;
  display: inline-block;
  text-align: center;
  display: flex;
  align-items: center;
}
.text_contents .item .head_s .text {
  background-color: #000;
  display: inline-block;
  flex-shrink: 0;
  padding: 0.5rem 1.5rem;
  text-indent: initial !important;
}
.text_contents .item .head_s span {
  height: 1px;
  width: 100%;
  background-color: #000;
}
.text_contents .item .head_ss {
  display: block;
  border-left: 3px solid;
  padding-left: 0.5rem;
  font-weight: bold;
  text-indent: initial !important;
}

.text_contents .item .list {
  font-weight: 400;
  margin-bottom: 2.5rem;
}
.text_contents .item .list p {
  margin-bottom: 0.75rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 540px) {
  .text_contents .item .list p {
    padding-left: 0.5rem;
  }
}
/*---------------------------------------------

	sec_meeting

---------------------------------------------*/

.sec_meeting {
  background-color: #af8d51;
  padding-bottom: 6rem;
}

.sec_meeting_info {
  padding: 3.5rem;
  box-shadow: 0 0 2.5rem #ffffff8d;
  border: 1px solid #fff;
  border-radius: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 540px) {
  .sec_meeting {
    background-color: #af8d51;
    padding-bottom: 3rem;
  }
  .sec_meeting_info {
    padding: 2rem 1rem 1rem;
    box-shadow: 0 0 1rem #ffffff8d;
  }
}

.sec_meeting_info .head_wrap {
  text-align: center;
}

.sec_meeting_info .head_wrap .logo {
  width: 30%;
  margin: auto;
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .sec_meeting_info .head_wrap .logo {
    width: 40%;
    margin-bottom: 1rem;
  }
}
.sec_meeting_info .head {
  width: 100%;
  font-size: 4.5vw;
  font-weight: bold;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-shadow: 0 0 2rem #fff;
  color: #000;
  background-color: #fff;
  padding: 1.5rem 2rem;
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 4rem;
}

.sec_meeting_info .head small {
  font-size: 2vw;
}

@media screen and (min-width: 1070px) {
  .sec_meeting_info .head {
    font-size: 48px;
    line-height: 1.2;
  }
  .sec_meeting_info .head small {
    font-size: 18px;
  }
}

@media screen and (max-width: 540px) {
  .sec_meeting_info .head {
    font-size: 5.2vw;
    padding: 1rem;
    line-height: 1.5;
  }
  .sec_meeting_info .head small {
    font-size: 3vw;
    margin-top: 0.8rem;
    display: inline-block;
  }
}

.sec_meeting_info .head_s {
  display: flex;
  align-items: center;
}

.sec_meeting_info .head_s {
  display: flex;
  align-items: center;
}

.sec_meeting_info .head_s .line {
  height: 1px solid #fff;
  width: 100%;
  background-color: #fff;
}

.sec_meeting_info .benefit_item {
  border: 1px solid #000;
  position: relative;
  padding-bottom: 2.5rem;
  border-radius: 1rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 540px) {
  .sec_meeting_info .benefit_item {
    margin-bottom: 3rem;
  }
}
.sec_meeting_info .logo_s {
  color: #000;
  background-color: #fff;
  font-size: 2rem;
  padding: 0.5rem 3rem;
  width: auto;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 540px) {
  .sec_meeting_info .logo_s {
    font-size: 1.4rem;
  }
}
.sec_meeting_info .head_s .logo_s img {
  height: 100%;
  width: auto;
}

.sec_meeting_info .benefit_head {
  padding: 3rem 0 1.5rem;
  font-size: 2.2rem;
  color: #e15421;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 0 0 2rem #ffc4ae;
}

@media screen and (max-width: 540px) {
  .sec_meeting_info .benefit_head {
    padding: 3rem 0 1.5rem;
    font-size: 1.2rem;
    color: #e15421;
    font-weight: bold;
    line-height: 1.5;
    text-shadow: 0 0 2rem #ffc4ae;
  }
}
.sec_meeting_info .benefit_disc {
  font-size: 1.2rem;
  padding: 0 1.5rem;
}

.sec_meeting_info .benefit_disc small {
  font-size: 0.8rem;
  text-align: left;
  padding: 0 2rem;
  display: block;
}
.sec_meeting_info .benefit_disc small p {
  text-indent: -1em;
  padding-left: 1em;
}
.sec_meeting_info .benefit_disc small p a {
  color: #49221f;
  border-bottom: 1px solid #49221f;
}
@media screen and (max-width: 540px) {
  .sec_meeting_info .benefit_disc {
    padding: 0 1.5rem;
    font-size: 0.95rem;
  }

  .sec_meeting_info .benefit_disc small {
    display: block;
    text-align: left;
    padding: 0rem;
  }
}
.benefit_deadline {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  text-shadow: 0 0 2rem #fff;
  margin-bottom: 4rem;
}

.benefit_deadline small {
  font-size: 0.9rem;
  display: inline-block;
  margin-top: 1rem;
  text-shadow: initial;
}
@media screen and (max-width: 540px) {
  .benefit_deadline {
    font-size: 1.2rem;
    margin-bottom: 4rem;
  }
  .benefit_deadline small {
    font-size: 0.75rem;
  }
}
.benefit_note {
  background-color: #ffffff2b;
  border-radius: 1rem;
  color: #000;
  text-align: left;
  padding: 0 3rem;
  border: 1px solid #fff;
}
@media screen and (max-width: 540px) {
  .benefit_note {
    padding: 0rem 1rem;
    border: 1px solid #fff;
  }
}
.benefit_note p {
  text-indent: -1em;
  padding-left: 1em;

  font-size: 0.95rem;
}
@media screen and (max-width: 540px) {
  .benefit_note p {
    font-size: 0.8rem;
  }
}

.benefit_note_head {
  text-align: center;
}
.benefit_note_head p {
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 540px) {
  .benefit_note_head p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}

.benefit_linkarea {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
  padding: 0 3rem;
}
.benefit_linkarea p {
  margin-bottom: 1rem;
}
@media screen and (max-width: 540px) {
  .benefit_linkarea {
    margin-top: 0.5rem;
  }
}
.benefit_linkarea p a {
  display: inline-block;
  color: #49221f;
  border-bottom: 1px solid #49221f;
  margin-bottom: 0.5rem;
}
/*---------------------------------------------

	sec_note

---------------------------------------------*/
.sec_note {
  padding-bottom: 5rem;
  background-color: #af8d51;
  color: #fff;
}
.sec_note .head {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.sec_note .head p {
  background-color: #fff;
  color: #000;
  white-space: nowrap;
  padding: 0.25rem 1.5rem;
}
.sec_note .head .line {
  height: 1px;
  width: 100%;
  background-color: #fff;
}

.sec_note .text p {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0.5rem;
}
.sec_note .text a {
  color: #49221f;
  border-bottom: 1px solid #49221f;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/*---------------------------------------------

	footer

---------------------------------------------*/
.footer-menu {
  background: #000;
  text-align: center;
  padding: 4rem 1rem 2rem;
}

.footerMenu-logo img {
  width: 15rem;
  margin: auto;
  margin-bottom: 0.5rem;
}

.footerMenu-menus {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.footerMenu-menus a {
  color: white;
  width: 2.75rem;
  margin-bottom: 3rem;
  margin: 1rem;
}
@media screen and (max-width: 540px) {
  .footerMenu-menus a {
    color: white;
    width: 2.5rem;
  }
}
.footerMenu-copy {
  font-size: 0.8rem;
  letter-spacing: normal;
  text-align: center;
  color: white;
  background-color: #000;
  padding-bottom: 0.8rem;
}

/* ↓ PCとSP表示切り替え ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

@media screen and (max-width: 540px) {
  .pcArea {
    display: none;
  }

  .spArea {
    display: block;
  }
}
