@charset "UTF-8";
/* BREAK POINT */
/* BUTTON */
.button-block {
  width: 25%;
  margin: 2rem auto; }
  @media (max-width: 767px) {
    .button-block {
      width: 60% !important; } }
  @media (max-width: 399px) {
    .button-block {
      width: 80%; } }

.button {
  display: inline-block;
  width: 100%;
  /*color: #fff;
  background-color: var(--maincolor);*/
  /*font-size: 1.250rem;*/
  /*font-weight: 700;*/
  text-align: center;
  border-radius: 60px;
  padding: 1rem;
  transition: opacity 0.7s ease; }
  @media (max-width: 399px) {
    .button {
      /*font-size: 87.5%;*/ } }

.button.button--primary {
  color: var(--maincolor);
  font-weight: 600;
  background-color: #fff;
  border: solid 3px var(--maincolor); }

.button.button--secondary {
  color: var(--secondcolor);
  font-weight: 600;
  background-color: #fff;
  border: solid 3px var(--secondcolor); }

.button.button--tertiary {
  color: var(--thirdcolor);
  font-weight: 600;
  background-color: #fff;
  border: solid 3px var(--thirdcolor); }

.button.button--youtube {
  color: #da1725;
  font-weight: 600;
  background-color: #fff;
  border: solid 3px #da1725; }

.button.button--blog {
  color: #c0d58c;
  font-weight: 600;
  background-color: #fff;
  border: solid 3px #c0d58c; }

.button.hover-slide--primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px var(--maincolor); }
  .button.hover-slide--primary::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--maincolor);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--primary:hover {
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--primary:hover::after {
      transform: scale(1, 1); }

.button.hover-slide--secondary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px var(--secondcolor); }
  .button.hover-slide--secondary::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--secondcolor);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--secondary:hover {
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--secondary:hover::after {
      transform: scale(1, 1); }

.button.hover-slide--tertiary {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px var(--thirdcolor); }
  .button.hover-slide--tertiary::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--thirdcolor);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--tertiary:hover {
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--tertiary:hover::after {
      transform: scale(1, 1); }

.button.hover-slide--youtube {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px #da1725; }
  .button.hover-slide--youtube::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #da1725;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--youtube:hover {
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--youtube:hover::after {
      transform: scale(1, 1); }

.button.hover-slide--blog {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px #c0d58c; }
  .button.hover-slide--blog::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #c0d58c;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--blog:hover {
    color: #fff !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--blog:hover::after {
      transform: scale(1, 1); }

.button.hover-slide--sns1 {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: solid 3px #cf2e92; }
  .button.hover-slide--sns1::after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1; }
  .button.hover-slide--sns1:hover {
    color: #cf2e92 !important;
    font-weight: 600;
    opacity: 1 !important; }
    .button.hover-slide--sns1:hover::after {
      transform: scale(1, 1); }

/* Q&A */
details summary {
  /* iOSのデフォルトアイコン非表示 */
  list-style: none; }

summary::-webkit-details-marker {
  /* Safariのデフォルトマーカー非表示 */
  display: none; }

.qa {
  margin-bottom: 1rem;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  background-color: #fff; }

.qa summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 2rem 1rem 3rem;
  color: #000;
  font-weight: 600;
  cursor: pointer; }

.qa summary::before,
.qa p::before {
  position: absolute;
  left: 1rem;
  font-weight: 600;
  font-size: 125%; }

.qa summary::before {
  color: var(--secondcolor);
  content: "Q"; }

.qa summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 3px solid #333;
  border-right: 3px solid #333;
  content: '';
  transition: transform .5s; }

.qa[open] summary::after {
  transform: rotate(225deg); }

.qa p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3rem 3rem 1.5rem;
  color: #000000;
  transition: transform .5s, opacity .5s; }

.qa[open] p {
  transform: none;
  opacity: 1; }

.qa p::before {
  color: var(--thirdcolor);
  line-height: 1.75;
  content: "A"; }

/* STEP */
.flow_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px; }

.step_wrap {
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 1rem; }

.step_number {
  font-family: "Roboto", sans-serif;
  /*font-size: calc(clamp(0.875rem, 0.85rem + 0.13vw, 1rem));*/
  font-weight: 600;
  text-align: center;
  color: var(--thirdcolor);
  line-height: 100%;
  text-transform: uppercase;
  border-bottom: 1px solid var(--thirdcolor);
  padding: 0 0 .5rem; }
  .step_number span {
    font-size: 200%;
    line-height: 100%; }

#concert figure {
  display: block;
  max-width: 50%;
  margin: 0 auto; }
#concert th {
  width: 25%; }

#concert,
#profile {
  /*margin: 2rem 0 4rem;*/ }

#conductor {
  margin: 2rem 0 0;
  /*padding: 2rem 0;*/ }
  #conductor figure.yokokawa img {
    max-width: 50%;
    border-radius: 20px; }

#join {
  /*padding: 2rem 0 4rem;*/ }
  #join h4 {
    text-align: center;
    color: var(--invertcolor);
    border-bottom: solid 2px var(--secondcolor);
    padding: 0 0 .25rem; }

.post-title {
  text-align: center !important; }
  @media (max-width: 767px) {
    .post-title {
      text-align: left !important; } }

#link-block ul#menu-sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none !important; }
  #link-block ul#menu-sns li i {
    font-size: 300%;
    line-height: 1.5; }
  #link-block ul#menu-sns li:first-child i {
    color: #cf2e92; }
  #link-block ul#menu-sns li:nth-child(2) i {
    color: #1877f2; }
  #link-block ul#menu-sns li:last-child i {
    color: #0F1419; }

/* PART */
.part_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 1rem; }
  @media (max-width: 767px) {
    .part_wrap {
      grid-template-columns: repeat(2, 1fr);
      gap: .5rem; } }

.part_card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 1rem; }
  @media (max-width: 767px) {
    .part_card {
      padding: .5rem; } }
  .part_card .part_name {
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--invertcolor);
    background-color: var(--secondcolor);
    border-radius: 60px; }
  .part_card .part_current {
    width: 100%;
    font-weight: 600; }
  .part_card .part_recruit {
    width: 100%;
    font-weight: 600; }
  .part_card .part_remarks {
    width: 100%;
    font-size: 85% !important;
    line-height: 1.5 !important; }

.rehea_wrap,
.faq_wrap,
.privacy_wrap {
  max-width: 66.7vw;
  margin: 0 auto;
  	/*display: grid;
  	gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));*/
  /*@include respond-to(767)  {
    grid-template-columns: 1fr !important;
  }*/ }
  @media (max-width: 767px) {
    .rehea_wrap,
    .faq_wrap,
    .privacy_wrap {
      max-width: 96vw; } }

.rehea_card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 1rem; }
  .rehea_card .rehea-map {
    width: 100%;
    max-width: 100%; }
    .rehea_card .rehea-map iframe {
      width: 100% !important;
      max-width: 100% !important;
      height: auto;
      border-radius: 10px; }

/* ACTIVITY */
.timeline_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; }

.timeline-setlist_wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem; }
  @media (max-width: 767px) {
    .timeline-setlist_wrap {
      grid-template-columns: 1fr; } }

h4.timeline-date::before {
  content: "\f073";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  padding: 0 .5rem 0 0;
  color: var(--secondcolor); }

h4.timeline-date {
  color: var(--secondcolor);
  font-weight: 600;
  font-size: 125% !important;
  border-top: 1px solid var(--secondcolor);
  border-bottom: 1px solid var(--secondcolor);
  margin: 1rem 0;
  padding: .25rem 0; }

.timeline-content a {
  color: #1a0dab;
  text-decoration: underline; }
.timeline-content li {
  line-height: 1.5; }

.timeline-setlist tr {
  vertical-align: top; }
.timeline-setlist th {
  width: 25%;
  padding: .5rem 0; }
.timeline-setlist td {
  padding: .5rem 0; }
  .timeline-setlist td li {
    line-height: 1.5; }
@media (max-width: 767px) {
  .timeline-setlist th {
    width: 100%;
    padding: .5rem; } }

.grid_wrap_4col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; }

.grid_wrap_3col {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0 0; }
  .grid_wrap_3col iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 25vh;
    border-radius: 10px; }
  @media (max-width: 767px) {
    .grid_wrap_3col {
      grid-template-columns: 1fr; } }

.grid_wrap_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem 0 0; }

.concert th {
  width: 30%; }
  @media (max-width: 767px) {
    .concert th {
      grid-template-columns: 1fr;
      width: 100%; } }

.concert_img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block; }

.rehea-data {
  text-align: center;
  line-height: 1; }

.rehea-place {
  text-align: center;
  line-height: 1; }

.contact-btn_wrap {
  margin: 2rem auto; }
  .contact-btn_wrap ul {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    gap: 16px;
    list-style: none; }

/* MAP */
.map_wrap {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem 0 0; }
  .map_wrap iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 25vh;
    border-radius: 10px; }
  @media (max-width: 767px) {
    .map_wrap {
      grid-template-columns: 1fr; } }

.map_inner .grid_wrap_2col {
  gap: 1rem;
  padding: 1rem 0 0; }
.map_inner h4 {
  margin: 0 0 .5rem; }

h4.map-name a {
  font-size: calc(clamp(1.1rem, 1.07rem + 0.15vw, 1.25rem));
  line-height: 1.5;
  color: var(--secondcolor) !important; }

.map-info {
  margin: 1rem 0; }

.map_btn {
  display: inline-block;
  font-size: 100%;
  color: var(--invertcolor);
  background-color: var(--secondcolor);
  text-align: center;
  padding: 0 .5rem;
  border-radius: 4px; }
  .map_btn a {
    display: block;
    color: var(--invertcolor) !important; }

table.rehea_table {
  max-width: 66.7vw;
  margin: 0 auto; }
  table.rehea_table tr:first-child {
    border-top: none;
    border-bottom: none; }
  table.rehea_table tr {
    border-color: #e1e1e1; }
  table.rehea_table th {
    background-color: #f1f1f1;
    text-align: left; }
  @media (max-width: 767px) {
    table.rehea_table {
      max-width: 100%; }
      table.rehea_table th {
        max-width: 33.3%;
        display: inline-block; }
      table.rehea_table td {
        width: 33.3%;
        display: inline-block; } }

/* SEARCH */
.search-block {
  width: 13.54vw;
  min-width: 12.5rem; }

.search_form {
  position: relative;
  width: 100%; }

.search-block input {
  width: 100%;
  min-width: 9.25rem;
  border: solid 1px #CCC;
  border-radius: 0.313rem;
  padding: .5rem 2.5rem 0.5rem .75rem;
  display: block; }

.search-block button {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0; }

.search-block button::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  color: var(--secondcolor);
  font-size: 1rem; }

@media (max-width: 767px) {
  .search-block {
    width: auto;
    min-width: initial;
    margin-right: 45px; }

  .search-block input {
    padding: 0.5rem 2rem 0.5rem 0.75rem; }

  .search-block button {
    right: 0.75rem; }

  .search-block.active input {
    width: 100%;
    border: none;
    border-radius: 0;
    padding: 0.5rem 1rem; } }
@media (max-width: 399px) {
  .search-block {
    width: 100%;
    margin: 0 auto; }

  .search-block input {
    width: 100%;
    padding-right: 2rem; }

  .search-block button {
    right: 0.75rem; } }
.search-result-page {
  max-width: var(----maxwidthinner);
  margin: 0 auto; }

.search-hit-count {
  font-size: calc(clamp(0.875rem, 0.85rem + 0.13vw, 1rem));
  color: #666;
  margin-bottom: 2rem; }

.search-results-list {
  margin-bottom: 2rem; }

.search-result-item {
  margin-bottom: 2rem; }

/* タイトル（青リンク） */
.search-result-item h3 {
  text-align: left;
  margin: 0; }

.search-title a {
  color: #1a0dab;
  font-size: calc(clamp(1.1rem, 1.07rem + 0.15vw, 1.25rem));
  line-height: 1.5;
  text-decoration: underline; }

.search-title a:hover {
  opacity: .6; }

.search-url {
  font-size: calc(clamp(0.75rem, 0.725rem + 0.13vw, 0.875rem));
  color: #006621;
  line-height: 2;
  word-break: break-all; }

.search-excerpt {
  color: #444;
  font-size: calc(clamp(0.875rem, 0.85rem + 0.13vw, 1rem));
  line-height: 1.5; }

.search-tags a {
  color: #666;
  margin-right: .4rem; }

.search-tags a:hover {
  text-decoration: underline; }

.search-pagination a,
.search-pagination span {
  margin: 0 .3rem;
  padding: .4rem .7rem;
  border-radius: 4px;
  color: #1a0dab; }

.search-pagination .current {
  background: #e8e8e8; }

/* SETLIST ARC */
.arc_setlist .arc-view-switch,
.arc_activity .arc-view-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 2rem; }
.arc_setlist .arc-view-switch a,
.arc_activity .arc-view-switch a {
  display: inline-block;
  color: var(--secondcolor);
  font-weight: 600;
  background-color: var(--invertcolor);
  border: 2px solid var(--secondcolor);
  border-radius: 8px;
  padding: .5rem 1rem;
  transition: all .3s ease; }
  .arc_setlist .arc-view-switch a:hover,
  .arc_activity .arc-view-switch a:hover {
    color: var(--invertcolor);
    background-color: var(--secondcolor); }
  .arc_setlist .arc-view-switch a.active,
  .arc_activity .arc-view-switch a.active {
    color: var(--invertcolor);
    border-color: var(--secondcolor);
    background-color: var(--secondcolor); }
.arc_setlist .arc_wrap,
.arc_activity .arc_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem; }
  @media (max-width: 767px) {
    .arc_setlist .arc_wrap.full-view,
    .arc_activity .arc_wrap.full-view {
      grid-template-columns: 1fr;
      gap: 1rem; } }
.arc_setlist .arc_wrap.card-view .arc-title,
.arc_activity .arc_wrap.card-view .arc-title {
  background-color: rgba(46, 117, 181, 0.1);
  border-radius: 0 8px 8px 0;
  border-left: 4px solid var(--secondcolor);
  padding: .75rem 1rem; }
  .arc_setlist .arc_wrap.card-view .arc-title a,
  .arc_activity .arc_wrap.card-view .arc-title a {
    display: block;
    color: #333;
    font-size: 115%;
    font-weight: 600; }
    .arc_setlist .arc_wrap.card-view .arc-title a:hover,
    .arc_activity .arc_wrap.card-view .arc-title a:hover {
      opacity: .6; }
