@charset "UTF-8";
/* ========================================
  基本設定
======================================== */

/* ----------------------
変数 
---------------------- */
:root {
  /* color */
  --text-color: #333; 
  --link-color: #43a5af;
  --link-hover: #28686f;

  /* スケール係数 */
  --scale: 1;

  /* font-size */
  --fs-base-base: 1.6rem;
  --fs-sm-base: 1.4rem;
  --fs-h1-base: 4.0rem;
  --fs-h2-base: 3.2rem;
  --fs-h3-base: 2.4rem;
  --fs-h4-base: 2.0rem;
  --fs-h5-base: 2.0rem;
  --fs-heading-base: 3.6rem;   /* .heading のサイズ */
  --fs-heading-front-base: 4.0rem;   /* トップページ用 .heading.front */

  --fs-base: calc(var(--fs-base-base) * var(--scale));
  --fs-sm: calc(var(--fs-sm-base) * var(--scale));
  --fs-h1: calc(var(--fs-h1-base) * var(--scale));
  --fs-h2: calc(var(--fs-h2-base) * var(--scale));
  --fs-h3: calc(var(--fs-h3-base) * var(--scale));
  --fs-h4: calc(var(--fs-h4-base) * var(--scale));
  --fs-h5: calc(var(--fs-h5-base) * var(--scale));


  /* spacing */
  --sp-xs-base: 8px;
  --sp-sm-base: 16px;
  --sp-md-base: 24px;
  --sp-lg-base: 40px;
  --sp-xl-base: 60px;
  --sp-xxl-base: 100px;

  --sp-xs: calc(var(--sp-xs-base)  * var(--scale));
  --sp-sm: calc(var(--sp-sm-base)  * var(--scale));
  --sp-md: calc(var(--sp-md-base)  * var(--scale));
  --sp-lg: calc(var(--sp-lg-base)  * var(--scale));
  --sp-xl: calc(var(--sp-xl-base)  * var(--scale));
  --sp-xxl: calc(var(--sp-xxl-base) * var(--scale));
}



html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-size: 10px;
  box-sizing: border-box;
}
body {
  font-family: "Inter","Noto Sans JP","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic","verdana", sans-serif;
  margin: 0;
  background: url("images/common/bg25_2.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
section {
  padding-top: var(--sp-lg);
}
a {
  color: var(--link-color);
  display: block;
  list-style: none;
  text-decoration: none;
  font-weight: 600;
}
.visuallyhidden {
  width: 1px;
  height: 1px;
  border: 0;
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  overflow: hidden;
  padding: 0;
  position: absolute;
}
h1, h2, h3, h4, h5, h6, p {
  color: var(--text-color);
  letter-spacing: 0.05em;
  line-height: 160%;
}
h2 {
  font-size: var(--fs-h2)
}
h3 {
  font-size: var(--fs-h3);
}
h4 {
  font-size: var(--fs-h4);
}
h5 {
  font-size: var(--fs-h5)
}
p {
  font-size: var(--fs-base);
}
.container {
  width: 80%;
  max-width: 1480px;
  box-sizing: border-box;
  padding: var(--sp-lg) var(--sp-xl);
  border-radius: 10px;
  margin: 0 auto var(--sp-xl);
  background-color: rgba(255, 255, 255, 0.8);
}
.heading {
  font-family: 'Cal Sans','Noto Sans JP',sans-serif;
  color: var(--text-color);
  font-weight: 800;
  font-size: var(--fs-h1);
  text-align: center;
  margin: 0 auto;
}
.heading.front {
  font-size: var(--fs-h1);
  margin-bottom: var(--sp-md);
  font-weight: 800;
}
.sub-ttl {
  font-weight: 600;
  font-size: var(--fs-base);
  text-align: center;
  margin-bottom: var(--sp-lg);
}
.contents-ttl {
  font-size: var(--fs-h3);
  font-weight: 600;
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--sp-sm);
}
a:visited {
  color: var(--link-color);
}
a:hover {
  color: var(--link-hover);
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 400;
  width: fit-content;
  padding: 8px 16px;
  border: solid 2px #333;
  background-color: #fff;
  border-radius: 5px;
  color: var(--text-color);
  margin: 40px auto 0;
}
.btn:hover {
  background-color: #333;
  color: #fff;
  transition: .3s;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}



/* ==================================================
  ヘッダー / HEADER　||  header.php & header-01.php
================================================== */
.header {
  /* position: fixed; */
  align-items: center;
  width: 100%;
  top: 0;
  text-align: center;
  z-index: 100;
  display: flex;
  padding: var(--sp-sm) var(--sp-md);
  transition: none;
  background-color: #111;
  box-shadow: 0 0 7px #ccc;
}
.header-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
}
.header-logo {
  flex: 0 0 auto;
}
.header-logo img {
  width: 160px;
}
.header-logo img:hover {
  opacity: 0.8;
  transition: .3s;
}
.header-nav {
  display: flex;
  flex: .7;
}
.header-nav .header-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-nav .header-menu li {
  list-style: none;
  display: flex;
  text-align: center;
  justify-content: center;
}
.header-nav .header-menu a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: var(--fs-base);
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #fff;
}
.header-nav .header-menu a:hover {
  color: var(--link-color);
  transition: .3s;
}

/* --------------------
  SP ハンバーガーメニュー
-------------------- */
.overlayMenuBtn {
  display: none;
}
.overlayMenu {
  display: none;
  position: fixed;
  width: 100%;
  overflow-y: scroll;
  background-color: rgba(34, 34, 34, 0.6);
  height: 100vh;
  z-index: 101;
  -webkit-overflow-scrolling: touch;
}
.overlayMenuInner {
  margin: var(--sp-lg);
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
}
.overlayMenuItem ul {
  padding: 0;
  list-style: none;
}
.overlayMenuItem ul li {
  border-bottom: #ccc 1px dashed;
}
.overlayMenuItem ul a {
  display: block;
  padding: var(--sp-sm) 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: .3s;
}
.overlayMenuItem ul a:last-child {
  border: none;
}
.overlayMenuItem ul a:hover {
  background-color: #43a5af;
  color: var(--text-color);
  border-radius: 5px;
}
#loader_wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  background: #000;
  z-index: 10000;
}
/* --- PC用：サブメニュー表示用CSS --- */
.header-nav .header-menu li {
  position: relative;
}
.header-nav .header-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px 0;
  z-index: 99;
}
.header-nav .header-menu .sub-menu li {
  padding: 0;
  display: block;
}
.header-nav .header-menu .sub-menu a {
  padding: 10px 20px;
  font-size: 1.3rem;
  color: var(--text-color);
  text-align: left;
  display: block;
  width: 100%;
}
.header-nav .header-menu .sub-menu a:hover {
  background: #555;
  color: #fff;
}
.header-nav .header-menu li:hover > .sub-menu {
  display: block;
}
.menu-item-has-children > a {
  position: relative;
  padding-right: 2em;
}
.menu-item-has-children > a::after {
  content: "\f107"; 
  font-family: "Font Awesome 6 Free"; 
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1em; 
  color: #fff;
  pointer-events: none;
  transition: transform .3s ease;
}
.menu-item-has-children > a:hover::after {
  transform: translateY(-50%) rotate(180deg); 
  color: var(--link-color);
}
.menu-item-has-children > a[aria-expanded="true"]::after {
  content: "\f106"; 
  transform: translateY(-50%) rotate(180deg); 
}

/* ローディングアニメーションの設定 */
.loader > img {
  width: 40vw;
  margin: 0 auto;
  opacity: 0;
  animation: blink 3s infinite linear;
}

@keyframes blink {
  50% {
    opacity: 1;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}


/* ========================================
  TOPページ / front-page.php
======================================== */
.front-page .container {
  margin: 0 auto;
}
/* ~~~~~~~~~~~~~~~~~~~~
  FV
~~~~~~~~~~~~~~~~~~~~ */
.top-box {
  text-align: center;
  position: relative;
}
.top-box .top-image {
  display: block;
  width: 100%;
}
.top-box .top-imagesp {
  display: none;
  width: 100%;
}
/* ~~~~~~~~~~~~~~~~~~~~
  NEWS
~~~~~~~~~~~~~~~~~~~~ */
#front-news {
  background-color: #111;
}
#front-news > .heading.front {
  color: #fff;
  font-size: var(--fs-h1);
}
#front-news .container {
  background-color: unset;
  padding: 0 100px 60px;
}
.news__contents-wrapper {
  padding: 10px 24px;
  display: flex;
  border-bottom: 1px solid #333;
}
.news__content {
  display: flex;
  /* flex-direction: column; */
  width: 100%;
}
.news__date-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 240px;
}
.news__content .date {
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: 400;
  margin-top: 0;
  width: 90px;
}
.news__category {
  display: inline-block;
  font-size: 1.2rem;
  width: 100px;
  text-align: center;
  color: #333;
  background-color: #fff;
  border-radius: 3px;
  font-weight: 400;
  padding: 2px 12px;
  margin: 0;
}
.news__title {
  font-size: var(--fs-base);
  font-weight: 600;
  color: #fff;
}
.news__contents-wrapper .news__title:hover {
  color: var(--link-color);
  transition: .3s;
}
#front-news .btn:visited {
  color: #333;
}
#front-news .btn:hover {
  background-color: #43a5af;
  color: #fff;
}

.front-contact {
  margin-bottom: var(--sp-lg);
}
.front-contact .btn {
  color: var(--text-color);
}
.front-contact .btn:hover {
  color: #fff;
}
/* ~~~~~~~~~~~~~~~~~~~~
  ABOUT
~~~~~~~~~~~~~~~~~~~~ */
.front-about h3 {
  margin-bottom: var(--sp-sm);
}
.about-wrapper {
  text-align: center;
}
.about-inner {
  display: inline-block;
  text-align: left;
  max-width: 768px;
}

/* ~~~~~~~~~~~~~~~~~~~~
  MESSAGE
~~~~~~~~~~~~~~~~~~~~ */
.message > .container {
  background: url("images/top/message-bg.png");
  background-size: cover;
  background-position: center;
}
.message h2,
.message h3,
.message p {
  color: #fff;
}
.message h3 {
  margin-bottom: var(--sp-sm);
}

/* ~~~~~~~~~~~~~~~~~~~~
  VOLUNTEER
~~~~~~~~~~~~~~~~~~~~ */
.top_vol-bnr {
  display: flex;
  margin-bottom: var(--sp-xxl);
  border-radius: 10px;
  justify-content: center;
}
.top_vol-bnr img {
  justify-content: center;
  width: 80%;
  max-width: 1480px;
  border-radius: 10px;
}

/* ========================================
  NEWS SINGLE / ニュース 記事ページ
======================================== */
.single-news .container {
  margin-bottom: var(--sp-md);
}
.single-news .news-title {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: var(--text-color);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--sp-sm);
}
.single-news .btn {
  margin-bottom: var(--sp-lg);
}
.single-news .btn:visited {
  color: #333;
}
.single-news .btn:hover {
  color: #fff;
}
.single-news-contents {
  line-height: 200%;
}
.single-news-contents .wp-block-list {
  letter-spacing: 0.05em;
  line-height: 160%;
  padding-bottom: var(--sp-md);
}
.single-news-contents .wp-block-group .wp-block-heading,
.single-news-contents .news-content > .wp-block-heading strong {
  font-size: var(--fs-h4) !important;
  margin-bottom: var(--sp-xs);
  line-height: 200%;
}
.single-news-contents .wp-block-list li {
  font-size: var(--fs-sm);
  list-style: inside;
  line-height: 160%;
}
.single-news-contents .wp-block-list a {
  display: inline-block;
  color: var(--link-color);
}
.single-news-contents .wp-block-list a:hover {
  display: inline-block;
  color: var(--link-hover);
}
.single-news-contents .wp-block-list a:visited {
  color: inherit;
}
.single-news-contents .wp-block-image {
  margin: var(--sp-sm) auto;
}


/* ========================================
  NEWS ARCHIVE / ニュース アーカイブ
======================================== */
.news-archive {
  padding-top: var(--sp-lg);
}
.archive__news--item {
  margin-bottom: var(--sp-sm);
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid #ccc;
}
.news-archive .news-title:hover {
  color: #43a5af;
  transition: all .3s ease;
}
.archive__news--inner {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
.category-sidebar {
  flex: 0.4;
}
.archive__news-list {
  flex: 1;
}
.category-list li {
  color: var(--text-color);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-sm);
  padding: 0 0 16px 1em;
  border-bottom: 1px solid #ccc;
  list-style: none;
  position: relative;
  line-height: 24px;
}
.category-list li a::after {
  content: "";
  position: absolute;
  right: 1em;
  top: 25%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #333;
  border-top: 2px solid #333;
  transform: rotate(45deg) translateY(-50%);
}
.category-sidebar li a:visited {
  color: inherit;
}
.category-sidebar li a:hover {
  color: #43a5af;
  transition: .3s;
}

.category-list li a:hover::after {
  border-right-color: #43a5af;
  border-top-color: #43a5af;
  transition: .3s;
}
.news-archive .news-title {
  font-size: var(--fs-h4);
  font-weight: 400;
}
.date__wrapper {
  display: flex;
  gap: 24px;
  margin-bottom: var(--sp-sm);
}
.archive__news--item .date {
  font-weight: 400;
}
.archive__news--item .category-name {
  font-weight: 400;
  font-size: var(--fs-sm);
  padding: 2px 16px;
  background-color: #eee;
  border: 1px solid #333;
  border-radius: 100px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-md);
  font-size: 1.4rem;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 12px;
  background-color: #fff;
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s;
}
.pagination a:hover {
  background-color: var(--text-color);
  color: #fff;
  transition: .3s;
}
.pagination .current {
  background-color: var(--text-color);
  color: #fff;
  font-weight: 800;
}

/* ========================================
  ARTISTS ARCHIVE / アーティストページ archive.php
======================================== */
.archive-artists-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.archive-artists-contents {
  text-align: center;
  padding: 16px 8px;
}
.archive-artists-contents .thumbnail img {
  width: 100%;
  height: fit-content;
  object-fit: contain;
}
.archive-artists-contents .thumbnail img:hover {
  transition: .3s;
}
.archive-artists-contents .artists-right {
  display: flex;
  justify-content: center;
  width: auto;
}
.archive-artists-contents .artists-right .artists-logo {
  padding: 8px 0;
  height: var(--sp-xl);
  object-fit: contain;
}
.artists-name {
  font-size: var(--fs-h4);
  padding: 8px 0;
  display: flex;
  align-items: center;
  height: var(--sp-xl);
}
.archive-artists-contents .artists-right .artist-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.archive-artists-contents:hover {
  transition: background-color .3s;
  background-color: rgba(170, 204, 221, 0.6);
  border-radius: 5px;
}
.archive-artists-contents:hover .artists-title {
  color: #43a5af;
}


/* ========================================
  アーティスト個別ページ / single-artists.php
======================================== */
.single-artists-container {
  width: 80%;
  max-width: 1480px;
  box-sizing: border-box;
  padding: var(--sp-lg) var(--sp-xl);
  border-radius: 10px;
  margin: 0 auto var(--sp-lg);
  background-color: rgba(255, 255, 255, 0.8);
}
.single-artists-container .single-artists-contents .artist-title {
  padding: 1% 0;
}
.single-artists-photo {
  margin-bottom: 24px;
  min-width: 240px;
  max-width: 720px;
  width: 80%;
}
.single-artists-logo {
  width: 300px;
  margin-bottom: 24px;
}
.artist-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-artists-title {
  margin-bottom: 16px;
}
.single-artists-website {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.single-artists-website a,
.single-artists__sns-wrapper a {
  font-size: var(--fs-base);
  color: var(--text-color);
}
.single-artists-website a:hover,
.single-artists__sns-wrapper a:hover {
  color: var(--link-color);
}
.single-artists__sns-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--sp-lg);
  font-size: 1.8rem;
}
.single-artists .btn {
  margin-bottom: var(--sp-lg);
  color: var(--text-color);
}
.single-artists .btn:hover {
  color: #fff;
}

/* ========================================
  ACCESS / page-access.php
======================================== */

.access__howto {
  margin-bottom: var(--sp-lg);
}
.access__venue {
  margin-bottom: var(--sp-xl);
}
.access__venue h3,
.access__howto h3 {
  font-weight: 600;
  color: #333;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 16px;
}
.access h4 {
  color: #e62121;
  margin-bottom: 8px;
}
.access__venue > p {
  font-size: var(--fs-base);
  letter-spacing: 0.03rem;
  margin-bottom: var(--sp-md);
}
.inner-head {
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: var(--sp-md);
}
.access__venue > a {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
}
.access__venue--map {
  width: 100%;
}
.access__venue--map > iframe {
  width: 100%;
}
.shuttle-bus__item-wrapper {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.train__item {
  margin-bottom: var(--sp-md);
}
.train__item a {
  display: inline-block;
}
.item__desc {
  margin-bottom: var(--sp-md);
}

/* ========================================
  TICKET / page-ticket.php
======================================== */
.pre-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 400;
  width: fit-content;
  padding: 8px 16px;
  background-color: #333;
  border-radius: 5px;
  color: #fff;
  margin: 40px auto 0;
}

.ticket .contents-ttl {
  font-weight: 600;
  padding-bottom: var(--sp-sm);
  border-bottom: 1px solid #ccc;
  margin-bottom: var(--sp-sm);
}
.ticket .content {
  margin-bottom: var(--sp-lg);
}
.ticket .period h4 {
  color: var(--link-color);
}
.ticket .period p {
  font-size: var(--fs-sm);

}
.inner-container {
  margin-bottom: var(--sp-md);
}
.ticket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-md);
}
.ticket-block {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: var(--sp-md);
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ticket-name {
  font-size: var(--fs-h3);
  padding:0 .4em .2em;
  border-bottom: 3px dotted #43a5af;
  margin-bottom: var(--sp-sm);
}
.ticket-block .price {
  font-size: var(--fs-h4);
}
.ticket-block .note {
  font-size: var(--fs-sm);
  color: #555;
  padding-top: var(--sp-sm);
}
.ticket-block .btn {
  margin: var(--sp-md) auto 0;
}
.ticket-block .btn:visited {
  color: var(--text-color);
}
.ticket-block .btn:hover {
  color: #fff;
}
.caution {
  margin: var(--sp-sm) auto var(--sp-md);
  background-color: #eee;
  padding: var(--sp-md) var(--sp-sm);
  font-size: 1.2rem;
  letter-spacing: .05rem;
  line-height: 160%;
}
.caution__ttl {
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 16px;
}
.caution ul li {
  list-style: none;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-xs);
  padding-left: var(--sp-xs);
  letter-spacing: .03rem;
}
.bbq-set {
  margin-top: var(--sp-sm);
}
.bbq-set h5 {
  font-size: 1.8rem;
  margin-bottom: var(--sp-xs);
}
.bbq-set .note {
  padding-top: 0;
}
/* ========================================
  VOLUNTEER / page-volunteer.php
======================================== */
.volunteer .desc {
  margin-bottom: var(--sp-md);
}
.volunteer img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.volunteer .btn {
  color: var(--text-color);
}
.volunteer .btn:hover {
  color: #fff;
}

/* ========================================
  NOTICE / page-notice.php
======================================== */
.notice__head {
  text-align: center;
  padding-bottom: 40px;
}
.notice__area {
  padding-bottom: 40px;
}
.notice__area ul {
  padding-left: 30px;
}
.notice__area ul li {
  font-size: var(--fs-base);
  line-height: 200%;
  list-style-position: outside;
}
.notice__area .txt-small {
  font-size: 1.2rem;
  font-weight: 600;
}
.notice a:hover {
  opacity: 0.5;
}

/* ========================================
  SHOP / page-shop.php
======================================== */
.shop-wrapper {
  margin: 0 auto;
}
.shop__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 40px 32px;
}
.shop-desc {
  font-size: 1.4rem;
  line-height: 180%;
}
.shop__img > img {
  width: 50%;
}
.shop__name {
  font-size: 2.4rem;
  border-bottom: solid 2px #43a5af;
	padding-bottom: 10px;
  margin-bottom: 24px;
}
.shop__name span {
  font-size: 1.2rem;
  display: block;
	color: #43a5af;  
}

/* ========================================
  CONTACT / page-contact.php
======================================== */
.contact-desc {
  font-size: var(--fs-sm);
  line-height: 150%;
  margin-bottom: var(--sp-lg);
  text-align: center;
}
.cf7_table {
  margin: 0 auto;
  max-width: 800px;
}
tbody {
  max-width: 800px;
}
.cf7_table p {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}
.cf7_table tr {
  margin-bottom: var(--sp-sm);
}
.cf7_table td {
  width: 400px;
}
.cf7_table td,
.cf7_table th {
  background: none;
  border: none;
  padding-left: var(--sp-md);
}
input,textarea {
  border: 1px solid #ccc;
  background-color: #fff;
  padding: 8px 16px;
  width: 100%;
  margin-bottom: 16px;
}
.submit {
  display: flex;
  font-size: 1.4rem;
  font-weight: 400;
  width: fit-content;
  padding: 8px 32px;
  border: solid 2px #333;
  background-color: #fff;
  border-radius: 5px;
  color: #333;
  margin: var(--sp-md) auto 0;
}
.submit:hover {
  background-color: #333;
  color: #fff;
  transition: .3s;
}
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7-response-output {
  border: none;
  padding: 0;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
  color: #e10000;
}
.wpcf7 form.sent .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
}
/* ========================================
  FOOTER
========================================*/

/* 固定ボタン */
.top-btn {
  width: 100%;
  text-align: right;
}
.top-btn #top-btn {
  display: block;
  position: fixed;
  bottom: 50px;
  right: 50px;
  cursor: pointer;
  z-index: 10000;
  opacity: 0;  /* 初期状態では透明 */
  transition: opacity 0.5s ease-in-out;  /* アニメーションを滑らかに */
}
.top-btn #top-btn.show {
  opacity: 1;  /* スクロール時に表示 */
}
.top-btn #top-btn:hover {
  opacity: 0.6;
  transition: .3s;
}
footer {
  background-color: #111;
  /* position: relative; */
}
footer img {
  width: 100%;
}
.footer__logo--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  padding: 20px;
}
.footer__logo--wrapper img {
  width: 200px;
  height: auto;
}
.footer__logo--wrapper a {
  display: block;
}
.footer__sns-wrapper img {
  width: 30px;
}
.footer__copyright {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 20px 0;
}
.nav__sns {
  display: flex;
  justify-content: center;
  gap: var(--sp-sm);
}
.nav__sns i {
  color: #fff;
}


/* ========================================
  404 / 404.php
========================================*/
.error-message {
  font-size: var(--fs-h4);
  text-align: center;
  margin-bottom: var(--sp-sm);
}


/* ~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=
  1024px
~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= */
@media screen and (max-width: 1024px) {
  .archive-artists-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

/* ~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=
  768px
~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= */

@media screen and (max-width: 768px) {
  :root {
    --scale: 0.875;
  }
  /* main {
    position: relative;
    background: none;
  }
  main::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -100;
    background-image: url("images/24back.png");
    background-size: cover;
    background-position: -1px 0;
  } */
  section {
    padding-top: var(--sp-lg);
  }
  .container {
    padding: var(--sp-md) var(--sp-md);
  }
  .sub-ttl {
    margin-bottom: 24px;
  }
  .btn {
    margin: 24px auto 0;
  }
  .header {
    padding: 8px 24px;
  }
  .overlayMenuItem .sub-menu {
    display: none;
    padding-left: 20px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .overlayMenuItem .sub-menu a {
    font-size: var(--fs-base);
    padding: 12px 0;
    color: #fff;
  }
  .overlayMenuItem .menu-item-has-children > a::after {
    content: "▶";
    display: inline-block;
    margin-left: 10px;
    font-size: 1.2rem;
    transform: rotate(0deg);
    transition: transform .3s;
  }
  .overlayMenuItem .menu-item-has-children.open > a::after {
    transform: rotate(90deg);
  }
  .site-header {
    height: 60px;
    padding: 0 24px;
  }
  .header-list {
    justify-content: space-between;
  }
  .home-icon {
    width: 100px;
  }
  .header-logo img {
    width: 15vw;
  }
  .header-nav {
    display: none;
  }
  .overlayMenuBtn {
    display: block !important;
    top: 0;
    right: 0;
    height: 50px;
    cursor: pointer;
  }
  .overlayMenuBtn span {
    position: relative;
    display: block;
    width: 26px;
    border: 1px solid #43a5af;
    transition: .3s;
  }
  .overlayMenuBtn span:nth-child(1) {
    top: 17px;
  }
  .overlayMenuBtn span:nth-child(2) {
    top: 25px;
  }
  .overlayMenuBtn span:nth-child(3) {
    top: 32px;
  }
  .top-box .top-image {
    display: none;
  }
  .top-box .top-imagesp {
    display: block;
  }
  .single-news {
    padding-bottom: 0;
  }
  .single-artists-container {
    padding: var(--sp-md) var(--sp-lg);
  }
  .single-news-contents .wp-block-list {
    line-height: 200%;
  }
  .single-news-contents .wp-block-group .wp-block-heading,
  .single-news-contents .news-content > .wp-block-heading strong {
  line-height: 120%;
  }
  #front-news {
    padding: 40px 0;
  }
  .news__content {
    flex-direction: column;
  }
  #front-news .container {
    background-color: unset;
    padding: 0;
    margin: 0 auto;
  }
  .news__date-wrapper {
    margin-bottom: 8px;
  }
  .top_vol-bnr {
  margin-bottom: 40px;
  }
  .archive-artists-contents .artists-right .artists-title {
    font-size: var(--fs-base);
  }
  .single-artists-website {
    flex-direction: column;
  }
  .single-artists-logo {
    width: 60%;
  }
  .access__venue h3, .access__howto h3 {
  font-size: 2.0rem;
  padding-bottom: 8px;
  margin-bottom: 16px;
  }
  .access__venue > p {
    font-size: 1.4rem;
  }
  .inner-head {
    font-size: var(--fs-base);
    margin-bottom: 8px;
  }
  .volunteer img {
    width: 100%;
  }
  .img_vol {
    margin: 0 auto;
    width: 100%;
  }
  .vol-btn-wrp {
    width: 100%;
    margin: 10px auto 40px;
  }
  .vol-btn-wrp .vol-btn {
    font-size: 10px;
  }
  .notice__head {
    font-size: 2.0rem;
  }
  .contact-container {
    padding: 40px 20px 10px;
  }
  .top-btn #top-btn {
    bottom: 40px;
    right: 20px;
    width: 100px;
    z-index: 10000;
  }
  .footer-container {
    font-size: 1.2rem;
  }
  .footer__logo--wrapper img {
    width: 160px;
  }
  .ticket-grid {
    grid-template-columns: 1fr;
  }
}


/* ~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=
  425px
~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~= */
@media screen and (max-width: 425px) {
  .container {
    width: 85%;
  }
  .sub-ttl {
    margin-bottom: var(--sp-sm);
  }
  /* TOPページ */
  .heading.front {
    font-size: 2.4rem;
    margin-bottom: 16px;
    text-align: center;
  }
  /* FRONT-INFORMATION */
  .news__contents-wrapper {
    padding: 10px;
  }
  .news__content {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .news__date-wrapper {
    gap: 1em;
  }
  .news__category{
    font-size: 1.0rem;
  }
  .news__title {
    font-size: 1.4rem;
  }
  .btn {
    margin: 20px auto 0;
  }
  .archive__news--item .date__wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
  }
  .archive__news--item .category-name {
    width: fit-content;
  }
  .archive__news--inner {
    flex-direction: column;
    gap: 16px;
  }
  .category-list {
    display: flex;
    gap: 8px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .category-list li {
    display: none;
  }
  .category-list li a::after {
    display: none;
  }
  .archive-artists-container .archive-artists-contents {
    width: 100%;
  }
  .archive-artists-container .archive-artists-contents .artists-right .artists-title {
    font-size: 1.4rem;
  }
  .notice__area ul li {
    font-size: 1.4rem;
    line-height: 160%;
    margin-bottom: .5rem;
  }
  .contact-desc {
    font-size: 1.2rem;
    margin-bottom: 24px;
  }
  .cf7_table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--sp-sm);
  }
  .cf7_table th {
    padding: 0 0 8px 0;
  }
  .cf7_table td {
    padding: 0;
    width: 100%;
  }
  .cf7_table p {
    font-size: 1.3rem;
  }
  .submit {
    margin: 0 auto 0;
  }
  .ticket .price {
    font-size: 1.4rem;
  }
}

.btn:link,
.btn:visited {
  color: var(--text-color);
}
a.btn:link,
a.btn:visited {
  color: var(--text-color);
}
a.btn:hover {
  color: #fff;
}