@charset "UTF-8";



/*----------------------------------------
RESET
----------------------------------------*/
* {
  font-size: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
}
a img {
  border: 0;
}
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
*:focus {
  outline: none;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}



/*----------------------------------------
基本設定
----------------------------------------*/
:root {
  --gold:#D4AF37;
  --blue: #0067C0;
  --red: #C94A43;
  --grey: #666666;
}



/*----------------------------------------
共通設定
----------------------------------------*/
#wrapper {
  width: 100%;
  min-height: 100%;
  position: relative;
  color: #333333;
}
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd, th, td {
  font-size: 100%;
  line-height: normal;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
}
a:hover {
  text-decoration: underline;
}
.hvr {
  opacity: 1;
}
.hvr:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  body {
    overflow-y: visible !important;
  }
  #wrapper {
    padding: 65px 0 0;
  }
  #subpage_cnt {
    width: 96%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 80px 0 120px;
    position: relative;
  }
  .br_sp, .img_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    padding: 60px 0 0;
  }
  #subpage_cnt {
    width: 92%;
    margin: 0 auto;
    padding: 35px 0 60px;
  }
  .br_pc, .img_pc {
    display: none;
  }
}



/*----------------------------------------
ヘッダー
----------------------------------------*/
@media screen and (min-width: 768px) {
  header {
    width: 100%;
    height: 65px;
    position: fixed;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header #hdr_logo {
    width: 160px;
    line-height: 0;
    opacity: 1;
  }
  header #hdr_logo:hover {
    opacity: 0.8;
  }
  header #hdr_logo img {
    width: 100%;
    height: auto;
  }
  header #hmbgr_btn_wrap, header #hmbgr_menu_slide_bg {
    display: none;
  }
  header #hdr_nav {
    width: auto !important;
    display: block !important;
  }
  header #hdr_nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  header #hdr_nav ul li a {
    text-decoration: none;
    letter-spacing: 1px;
    color: #333333;
    font-size: 90%;
    line-height: 1;
  }
  header #hdr_nav ul li a:hover {
    color: var(--blue);
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header #hdr_logo {
    width: 120px;
    line-height: 0;
    margin: 0 0 0 2%;
    opacity: 1;
  }
  header #hdr_logo:hover {
    opacity: 0.8;
  }
  header #hdr_logo img {
    width: 100%;
    height: auto;
  }
  #hmbgr_btn_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    z-index: 120;
  }
  #hmbgr_btn {
    display: inline-block;
    position: relative;
    width: 28px;
    height: 28px;
    cursor: pointer;
  }
  #hmbgr_btn_inner {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 2px;
    margin: -1px 0 0 -14px;
    background: #006FB4;
    transition: 0.2s;
  }
  #hmbgr_btn_inner:before, #hmbgr_btn_inner:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 2px;
    background: #006FB4;
    transition: 0.3s;
  }
  #hmbgr_btn_inner:before {
    margin-top: -10px;
  }
  #hmbgr_btn_inner:after {
    margin-top: 8px;
  }
  #hmbgr_btn .close {
    background: transparent;
  }
  #hmbgr_btn .close:before, #hmbgr_btn .close:after {
    margin-top: 0;
  }
  #hmbgr_btn .close:before {
    transform: rotate(-45deg);
  }
  #hmbgr_btn .close:after {
    transform: rotate(-135deg);
  }
  #hmbgr_menu_slide_bg {
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
  }
  #hdr_nav {
    display: none;
    width: 80%;
    max-width: 500px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 115;
    overflow: hidden;
    background-color: #F9F9F9;
  }
  #hdr_nav_inner {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 100%;
    width: 100%;
    padding: 60px 20px 100px;
  }
  #hdr_nav_inner ul {
    width: 100%;
  }
  #hdr_nav_inner ul li {
    margin: 0 0 25px;
  }
  #hdr_nav_inner ul li a {
    text-decoration: none;
    letter-spacing: 1px;
    color: #333333;
    font-size: 90%;
    line-height: 1;
  }
  #hdr_nav_inner ul li a:hover {
    color: var(--blue);
    text-decoration: none;
  }
}



/*----------------------------------------
フッターお問い合わせフォーム
----------------------------------------*/
#ftr_contact {
  width: 100%;
  background-color: #FAFAFA;
  border-top: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid;
  padding: 50px 0 55px;
}
#ftr_contact_inner {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}
#ftr_contact_inner .ftr_contact_midashi {
  text-align: center;
  margin-bottom: 30px;
}
#ftr_contact_inner .ftr_contact_midashi h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 170%;
  line-height: 1.3;
  margin-bottom: 8px;
}
#ftr_contact_inner .ftr_contact_midashi h3 {
  font-weight: 600;
  font-size: 75%;
  line-height: 1;
  color: var(--blue);
  letter-spacing: 2px;
}
#ftr_contact_inner .ftr_contact_field {
  margin-bottom: 25px;
}
#ftr_contact_inner .ftr_contact_field label {
  display: block;
  color: var(--grey);
  font-size: 80%;
  line-height: 1;
  margin-bottom: 6px;
}
#ftr_contact_inner .ftr_contact_field .input, #ftr_contact_inner .ftr_contact_field .textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid;
  outline: none;
  background: #ffffff;
  font-size: 95%;
}
#ftr_contact_inner .ftr_contact_field .textarea {
  height: 180px;
}
#ftr_contact_inner input[type=submit] {
  display: block;
  width: 120px;
  height: 40px;
  margin: 0 auto;
  background-color: var(--blue);
  text-align: center;
  color: #ffffff !important;
  border-radius: 50px;
  border: none;
  font-size: 95%;
  line-height: 1;
  transition: all 0.3s ease-out;
}
#ftr_contact_inner input[type=submit]:hover {
  background-color: var(--gold);
}
@media screen and (max-width: 767px) {
  #ftr_contact {
    padding: 40px 0 45px;
  }
  #ftr_contact_inner {
    width: 92%;
  }
}



/*----------------------------------------
フッター
----------------------------------------*/
@media screen and (min-width: 768px) {
  footer {
    width: 100%;
    background-color: #024D8D;
    padding: 75px 25px 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  footer #ftr_logo {
    width: 170px;
    margin: 0 0 15px;
    opacity: 1;
    line-height: 0;
  }
  footer #ftr_logo:hover {
    opacity: 0.8;
  }
  footer #ftr_logo img {
    width: 100%;
    height: auto;
  }
  footer #ftr_nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  footer #ftr_nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 90%;
    line-height: 1;
  }
  footer #ftr_copy {
    color: #ffffff;
    font-size: 80%;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  footer {
    width: 100%;
    background-color: #024D8D;
    padding: 45px 4% 20px;
  }
  footer #ftr_logo {
    width: 170px;
    margin: 0 auto 40px;
    opacity: 1;
    line-height: 0;
  }
  footer #ftr_logo:hover {
    opacity: 0.8;
  }
  footer #ftr_logo img {
    width: 100%;
    height: auto;
  }
  footer #ftr_nav {
    margin: 0 0 30px;
  }
  footer #ftr_nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 40px;
  }
  footer #ftr_nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 90%;
    line-height: 1;
  }
  footer #ftr_copy {
    text-align: center;
    color: #ffffff;
    font-size: 80%;
    line-height: 1;
  }
}



/*----------------------------------------
下層ページ：メインビジュアル
----------------------------------------*/
@media screen and (min-width: 768px) {
  #subpage_main {
    width: 100%;
    min-height: 250px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#ffffff, #faf7ee);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
  }
  #subpage_main::before, #subpage_main::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
  }
  #subpage_main::before {
    top: -10%;
    right: -20%;
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    background: color-mix(in srgb, var(--gold) 22%, transparent);
    border-radius: 999px;
  }
  #subpage_main::after {
    top: 10%;
    left: -12%;
    width: min(50vw, 700px);
    height: min(50vw, 700px);
    background: color-mix(in srgb, var(--blue) 12%, transparent);
    border-radius: 999px;
  }
  #subpage_main h1 {
    text-align: center;
    font-family: "Noto Serif JP", serif;
    color: var(--blue);
    font-weight: 600;
    font-size: 280%;
    line-height: 1.4;
    position: relative;
    z-index: 5;
  }
  #subpage_main .subpage_dragon_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0.06;
    background: url("../images/dragon-background.png") no-repeat center top -150px;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: 0;
  }
}
@media screen and (max-width: 767px) {
  #subpage_main {
    width: 100%;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#ffffff, #faf7ee);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
  }
  #subpage_main::before, #subpage_main::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
  }
  #subpage_main::before {
    top: -10%;
    right: -20%;
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    background: color-mix(in srgb, var(--gold) 22%, transparent);
    border-radius: 999px;
  }
  #subpage_main::after {
    top: 10%;
    left: -12%;
    width: min(50vw, 700px);
    height: min(50vw, 700px);
    background: color-mix(in srgb, var(--blue) 12%, transparent);
    border-radius: 999px;
  }
  #subpage_main h1 {
    width: 92%;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    color: var(--blue);
    font-weight: 600;
    font-size: 180%;
    line-height: 1.4;
  }
  #subpage_main .subpage_dragon_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0.06;
    background: url("../images/dragon-background.png") no-repeat center center;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: 0;
  }
}



/*----------------------------------------
下層ページ：共通スタイルシート
----------------------------------------*/
@media screen and (min-width: 768px) {
  .style_common h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 210%;
    line-height: 1.5;
    border-bottom: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid;
    margin: 60px 0 28px;
    padding: 0 0 20px;
    position: relative;
  }
  .style_common h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--gold) 65%, transparent);
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  .style_common h2:first-child {
    margin-top: 0 !important;
  }
  .style_common h3 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 160%;
    line-height: 1.6;
    border-left: 4px var(--blue) solid;
    margin: 50px 0 26px;
    padding: 1px 0 1px 15px;
  }
  .style_common h4 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 125%;
    line-height: 1.6;
    margin: 50px 0 28px;
    border-bottom: 1px #999999 dashed;
    padding: 0 0 15px;
  }
  .style_common h5 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 110%;
    line-height: 1.6;
    background-color: color-mix(in srgb, var(--gold) 20%, transparent);
    border-radius: 8px;
    margin: 50px 0 20px;
    padding: 6px 12px;
  }
  .style_common h6 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 95%;
    line-height: 1.6;
    border-top: 1px #dddddd solid;
    border-bottom: 1px #dddddd solid;
    margin: 50px 0 15px;
    padding: 6px 0;
  }
  .style_common p {
    font-size: 100%;
    line-height: 1.9;
    margin: 1.5em 0;
  }
  .style_common a {
    color: var(--blue);
    text-decoration: underline;
  }
  .style_common a:hover {
    text-decoration: none !important;
  }
  .style_common ul {
    margin: 1.5em 0;
  }
  .style_common ul li {
    font-size: 90%;
    line-height: 1.9;
    margin: 0 0 10px;
    text-indent: -11px;
    padding-left: 11px;
  }
  .style_common ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--blue);
    border-radius: 100px;
    margin: 0 5px 0 0;
    position: relative;
    top: -2.5px;
  }
  .style_common ol {
    counter-reset: number;
    list-style-type: none;
    margin: 1.5em 0;
  }
  .style_common ol li {
    font-size: 90%;
    line-height: 1.9;
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
  }
  .style_common ol li::before {
    counter-increment: number !important;
    content: counter(number);
    margin: 0 8px 0 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 100%;
    background-color: var(--blue);
    border-radius: 5px;
    padding: 0 8px;
  }
  .style_common dl {
    width: 100%;
    margin: 1.5em 0;
    display: flex;
    flex-wrap: wrap;
  }
  .style_common dl dt {
    width: 30%;
    border-bottom: 1px #cccccc solid;
    box-sizing: border-box;
    padding: 15px;
    font-weight: 600;
    font-size: 90%;
    line-height: 1.9;
  }
  .style_common dl dd {
    width: 70%;
    border-bottom: 1px #cccccc solid;
    box-sizing: border-box;
    padding: 15px;
    font-size: 90%;
    line-height: 1.9;
  }
  .style_common table {
    width: 100%;
    margin: 1.5em 0;
    border-spacing: 0;
    border-top: 1px #cccccc solid;
    border-left: 1px #cccccc solid;
    font-size: 90%;
    line-height: 1.8;
  }
  .style_common table th {
    background-color: color-mix(in srgb, var(--gold) 20%, transparent);
    border-bottom: 1px #cccccc solid;
    border-right: 1px #cccccc solid;
    font-weight: 600;
    padding: 15px 20px;
  }
  .style_common table td {
    background: #ffffff;
    border-bottom: 1px #cccccc solid;
    border-right: 1px #cccccc solid;
    padding: 15px 20px;
  }
  .style_btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: 65px;
  }
  .style_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: var(--blue);
    padding: 0 30px;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 110%;
    line-height: 1;
    transition: all 0.3s ease-out;
  }
  .style_btn a::after {
    content: "";
    display: block;
    width: 19px;
    height: 9px;
    background: url("../images/arrow_white.svg") no-repeat center center;
    background-size: contain;
    margin: 0 0 0 30px;
  }
  .style_btn a:hover {
    background: var(--gold);
  }
}
@media screen and (max-width: 767px) {
  .style_common h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 170%;
    line-height: 1.6;
    border-bottom: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid;
    margin: 50px 0 28px;
    padding: 0 0 18px;
    position: relative;
  }
  .style_common h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: color-mix(in srgb, var(--gold) 65%, transparent);
    position: absolute;
    bottom: -4px;
    left: 0;
  }
  .style_common h2:first-child {
    margin-top: 0 !important;
  }
  .style_common h3 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 155%;
    line-height: 1.6;
    border-left: 4px var(--blue) solid;
    margin: 50px 0 25px;
    padding: 1px 0 1px 12px;
  }
  .style_common h4 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 120%;
    line-height: 1.6;
    border-bottom: 1px #999999 dashed;
    margin: 50px 0 26px;
    padding: 0 0 15px;
  }
  .style_common h5 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 100%;
    line-height: 1.6;
    background-color: color-mix(in srgb, var(--gold) 20%, transparent);
    border-radius: 8px;
    margin: 50px 0 20px;
    padding: 6px 12px;
  }
  .style_common h6 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 90%;
    line-height: 1.6;
    border-top: 1px #dddddd solid;
    border-bottom: 1px #dddddd solid;
    margin: 50px 0 15px;
    padding: 6px 0;
  }
  .style_common p {
    font-size: 90%;
    line-height: 1.8;
    margin: 1.5em 0;
  }
  .style_common a {
    color: var(--blue);
    text-decoration: underline;
  }
  .style_common a:hover {
    text-decoration: none !important;
  }
  .style_common ul {
    margin: 1.5em 0;
  }
  .style_common ul li {
    font-size: 90%;
    line-height: 1.8;
    margin: 0 0 10px;
    text-indent: -11px;
    padding-left: 11px;
  }
  .style_common ul li::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--blue);
    border-radius: 100px;
    margin: 0 5px 0 0;
    position: relative;
    top: -2.5px;
  }
  .style_common ol {
    counter-reset: number;
    list-style-type: none;
    margin: 1.5em 0;
  }
  .style_common ol li {
    font-size: 90%;
    line-height: 1.8;
    margin: 0 0 10px;
    display: flex;
    align-items: flex-start;
  }
  .style_common ol li::before {
    counter-increment: number !important;
    content: counter(number);
    margin: 0 7px 0 0;
    color: #ffffff;
    font-weight: 500;
    font-size: 100%;
    background-color: var(--blue);
    border-radius: 5px;
    padding: 0 8px;
  }
  .style_common dl {
    width: 100%;
    margin: 1.5em 0;
    display: flex;
    flex-wrap: wrap;
  }
  .style_common dl dt {
    width: 30%;
    border-bottom: 1px #cccccc solid;
    box-sizing: border-box;
    padding: 15px 15px 15px 0;
    font-weight: 600;
    font-size: 90%;
    line-height: 1.8;
  }
  .style_common dl dd {
    width: 70%;
    border-bottom: 1px #cccccc solid;
    box-sizing: border-box;
    padding: 15px;
    font-size: 90%;
    line-height: 1.8;
  }
  .style_common table {
    width: 100%;
    margin: 1.5em 0;
    border-spacing: 0;
    border-top: 1px #cccccc solid;
    border-left: 1px #cccccc solid;
    font-size: 90%;
    line-height: 1.8;
  }
  .style_common table th {
    background-color: color-mix(in srgb, var(--gold) 20%, transparent);
    border-bottom: 1px #cccccc solid;
    border-right: 1px #cccccc solid;
    font-weight: 600;
    padding: 10px 15px;
  }
  .style_common table td {
    background: #ffffff;
    border-bottom: 1px #cccccc solid;
    border-right: 1px #cccccc solid;
    padding: 10px 15px;
  }
  .style_btn {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: 60px;
  }
  .style_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    background: var(--blue);
    padding: 0 30px;
    box-sizing: border-box;
    border: none;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 105%;
    line-height: 1;
    transition: all 0.3s ease-out;
  }
  .style_btn a::after {
    content: "";
    display: block;
    width: 16px;
    height: 8.5px;
    background: url("../images/arrow_white.svg") no-repeat center center;
    background-size: contain;
    margin: 0 0 0 20px;
  }
  .style_btn a:hover {
    background: var(--gold);
  }
}
.style_common iframe {
  width: 100%;
}
.style_common img {
  max-width: 100%;
  height: auto;
}



/*----------------------------------------
下層ページ：WordPress対応
----------------------------------------*/
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.alignright {
  float: right;
  margin-left: 1.5em;
}
.alignleft {
  float: left;
  margin-right: 1.5em;
}
@media (max-width: 767px) {
  .alignright {
    float: none;
    margin-left: 0;
  }
  .alignleft {
    float: none;
    margin-right: 0;
  }
}
.clear {
  clear: both;
}



/*----------------------------------------
LIVE情報アーカイブ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #subpage_cnt .liveinfo_list {
    max-width: 800px !important;
    margin: 0 auto !important;
  }
  #subpage_cnt .liveinfo_list li {
    padding-left: 0 !important;
  }
  .liveinfo_list {
    width: 100%;
    background: #ffffff;
  }
  .liveinfo_list li {
    width: 100% !important;
    border-bottom: 1px #cccccc dashed !important;
    text-indent: 0 !important;
    font-size: 100% !important;
    margin: 0 !important;
  }
  .liveinfo_list li::before {
    display: none !important;
  }
  .liveinfo_list li:last-child {
    border-bottom: none !important;
  }
  .liveinfo_list li a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 15px 0 !important;
    position: relative !important;
    text-decoration: none !important;
  }
  .liveinfo_list li a:hover {
    text-decoration: none !important;
  }
  .liveinfo_list li a:hover .liveinfo_list_ttl {
    text-decoration: underline !important;
  }
  .liveinfo_list li a .liveinfo_list_date_ttl {
    display: flex !important;
    margin: 0 0 5px !important;
  }
  .liveinfo_list li a .liveinfo_list_date_ttl time {
    color: var(--grey);
    font-size: 85% !important;
    line-height: 1 !important;
    margin: 0 15px 0 0 !important;
    padding: 5px 0 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_date_ttl .liveinfo_list_ttl {
    font-family: "Noto Sans JP", sans-serif !important;
    color: var(--blue);
    font-weight: 600 !important;
    font-size: 105% !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  .liveinfo_list li a .liveinfo_list_venue_time {
    color: #333333 !important;
    font-size: 85% !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_venue_time .liveinfo_list_venue {
    margin: 0 10px 0 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_attention {
    width: 64px !important;
    height: 64px !important;
    line-height: 0 !important;
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    right: -10px !important;
    margin: auto 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_attention img {
    width: 100% !important;
    height: auto !important;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .liveinfo_list li a .liveinfo_list_date_ttl {
    display: block !important;
  }
  .liveinfo_list li a .liveinfo_list_attention {
    width: 45px !important;
    height: 45px !important;
    top: 0 !important;
    right: -10px !important;
    margin: 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_venue_time span {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #subpage_cnt .liveinfo_list {
    margin: 0 !important;
  }
  #subpage_cnt .liveinfo_list li {
    padding-left: 0 !important;
  }
  .liveinfo_list {
    width: 100%;
    background: #ffffff;
  }
  .liveinfo_list li {
    width: 100% !important;
    border-bottom: 1px #cccccc dashed !important;
    text-indent: 0 !important;
    font-size: 100% !important;
    margin: 0 !important;
  }
  .liveinfo_list li::before {
    display: none !important;
  }
  .liveinfo_list li:last-child {
    border-bottom: none !important;
  }
  .liveinfo_list li a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    padding: 12px 0 !important;
    position: relative !important;
    text-decoration: none !important;
  }
  .liveinfo_list li a:hover {
    text-decoration: none !important;
  }
  .liveinfo_list li a:hover .liveinfo_list_ttl {
    text-decoration: underline !important;
  }
  .liveinfo_list li a .liveinfo_list_date_ttl {
    margin: 0 0 5px !important;
  }
  .liveinfo_list li a .liveinfo_list_date_ttl time {
    color: var(--grey);
    font-size: 85% !important;
    line-height: 1 !important;
  }
  .liveinfo_list li a .liveinfo_list_date_ttl .liveinfo_list_ttl {
    font-family: "Noto Sans JP", sans-serif !important;
    color: var(--blue) !important;
    font-weight: 600 !important;
    font-size: 100% !important;
    line-height: 1.4 !important;
    margin: 3px 0 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  .liveinfo_list li a .liveinfo_list_venue_time {
    color: #333333 !important;
    font-size: 80% !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_venue_time span {
    display: block !important;
  }
  .liveinfo_list li a .liveinfo_list_attention {
    width: 45px !important;
    height: 45px !important;
    line-height: 0 !important;
    position: absolute !important;
    top: -3px !important;
    right: -5px !important;
    margin: auto 0 !important;
  }
  .liveinfo_list li a .liveinfo_list_attention img {
    width: 100% !important;
    height: auto !important;
  }
}



/*----------------------------------------
ブログアーカイブ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #subpage_cnt .blog_list {
    max-width: 800px !important;
    margin: 0 auto !important;
  }
  #subpage_cnt .blog_list li {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .blog_list li {
    text-indent: 0 !important;
    font-size: 100% !important;
    border-bottom: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid !important;
    margin: 0 !important;
  }
  .blog_list li::before {
    display: none !important;
  }
  .blog_list li:last-child {
    border-bottom: none !important;
  }
  .blog_list li a {
    display: flex !important;
    align-items: flex-start !important;
    padding: 15px 0 !important;
    text-decoration: none !important;
  }
  .blog_list li a time {
    color: var(--grey) !important;
    font-size: 100% !important;
    line-height: 1.8 !important;
    margin: 0 35px 0 0 !important;
  }
  .blog_list li a h3 {
    font-family: "Noto Sans JP", sans-serif !important;
    border-left: none !important;
    color: #333333 !important;
    font-size: 100% !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .blog_list li a:hover {
    text-decoration: none !important;
  }
  .blog_list li a:hover h3 {
    color: var(--blue) !important;
    text-decoration: underline !important;
  }
}
@media (max-width: 767px) {
  #subpage_cnt .blog_list {
    margin: 0 auto;
  }
  #subpage_cnt .blog_list li {
    padding-left: 0 !important;
  }
  .blog_list li {
    text-indent: 0 !important;
    font-size: 100% !important;
    border-bottom: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid !important;
    margin: 0 !important;
  }
  .blog_list li::before {
    display: none !important;
  }
  .blog_list li:last-child {
    border-bottom: none !important;
  }
  .blog_list li a {
    display: flex !important;
    align-items: flex-start !important;
    padding: 15px 0 !important;
    text-decoration: none !important;
  }
  .blog_list li a time {
    color: var(--grey) !important;
    font-size: 90% !important;
    line-height: 1.8 !important;
    margin: 0 20px 0 0 !important;
  }
  .blog_list li a h3 {
    font-family: "Noto Sans JP", sans-serif !important;
    border-left: none !important;
    color: #333333 !important;
    font-size: 90% !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .blog_list li a:hover {
    text-decoration: none !important;
  }
  .blog_list li a:hover h3 {
    color: var(--blue) !important;
    text-decoration: underline !important;
  }
}



/*----------------------------------------
物販アーカイブ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #subpage_cnt .store_list {
    margin: 0 !important;
  }
  #subpage_cnt .store_list li {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .store_list li {
    text-indent: 0 !important;
    font-size: 100% !important;
    margin: 0 0 25px !important;
  }
  .store_list li::before {
    display: none !important;
  }
  .store_list li a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid !important;
    border-radius: 16px !important;
    padding: 15px !important;
    text-decoration: none !important;
  }
  .store_list li a div {
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
    margin: 0 0 5px !important;
    line-height: 0 !important;
  }
  .store_list li a div img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.2s !important;
  }
  .store_list li a h3 {
    font-family: "Noto Sans JP", sans-serif !important;
    border-left: none !important;
    font-weight: 600 !important;
    color: #333333 !important;
    font-size: 100% !important;
    line-height: 1.6 !important;
    margin: 0 0 5px !important;
    padding: 0 !important;
  }
  .store_list li a p {
    color: var(--grey) !important;
    font-size: 100% !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .store_list li a:hover {
    text-decoration: none !important;
  }
  .store_list li a:hover div img {
    transform: scale(1.2, 1.2) !important;
    transition: transform 0.2s !important;
  }
  .store_list li a:hover h3 {
    color: var(--blue) !important;
    text-decoration: underline !important;
  }
}
@media screen and (max-width: 767px) {
  #subpage_cnt .store_list {
    margin: 0 !important;
  }
  #subpage_cnt .store_list li {
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
  }
  .store_list li {
    text-indent: 0 !important;
    font-size: 100% !important;
    margin: 0 0 20px !important;
  }
  .store_list li::before {
    display: none !important;
  }
  .store_list li a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    border: 1px color-mix(in srgb, var(--gold) 65%, transparent) solid !important;
    border-radius: 10px !important;
    padding: 15px !important;
    text-decoration: none !important;
  }
  .store_list li a div {
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
    margin: 0 0 5px !important;
    line-height: 0 !important;
  }
  .store_list li a div img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.2s !important;
  }
  .store_list li a h3 {
    font-family: "Noto Sans JP", sans-serif !important;
    border-left: none !important;
    font-weight: 600 !important;
    color: #333333 !important;
    font-size: 90% !important;
    line-height: 1.6 !important;
    margin: 0 0 5px !important;
    padding: 0 !important;
  }
  .store_list li a p {
    color: var(--grey);
    font-size: 85% !important;
    line-height: 1 !important;
    margin: 0 !important;
  }
  .store_list li a:hover {
    text-decoration: none;
  }
  .store_list li a:hover div img {
    transform: scale(1.2, 1.2) !important;
    transition: transform 0.2s !important;
  }
  .store_list li a:hover h3 {
    color: var(--blue) !important;
    text-decoration: underline !important;
  }
}



/*----------------------------------------
アーカイブページング
----------------------------------------*/
.c-pagination {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 110% !important;
  line-height: 1 !important;
}
.c-pagination a {
  transition: all 0.3s ease !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 2rem !important;
  height: 2rem !important;
  margin: 6px !important;
  color: #333333 !important;
  text-decoration: none !important;
}
.c-pagination a:hover {
  background-color: var(--blue) !important;
  color: #ffffff !important;
}
.c-pagination--current, .c-pagination__prev.c-pagination--inactive, .c-pagination__next.c-pagination--inactive {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 2rem !important;
  height: 2rem !important;
  margin: 6px !important;
  background-color: var(--blue) !important;
  border: 1px solid var(--blue) !important;
  color: #ffffff !important;
}
@media screen and (min-width: 768px) {
  .c-pagination {
    margin: 35px 0 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin: 20px 0 0 !important;
  }
}



/*----------------------------------------
パンくずリスト
----------------------------------------*/
#breadcrumb {
  width: 96%;
  max-width: 1000px;
  margin: 12px auto 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#breadcrumb li {
  color: var(--grey);
  font-size: 80%;
  line-height: 1.9;
  display: flex;
  align-items: center;
}
#breadcrumb li::before {
  content: ">";
  margin: 0 9px;
}
#breadcrumb li a {
  text-decoration: underline;
  color: var(--grey);
}
#breadcrumb li a:hover {
  text-decoration: none;
  color: var(--blue);
}
#breadcrumb li:first-child::before {
  display: none;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    width: 96%;
    max-width: 1000px;
  }
}
@media screen and (max-width: 767px) {
  #breadcrumb {
    width: 92%;
  }
}



/*----------------------------------------
掲示板
----------------------------------------*/
.bbp-breadcrumb {
  display: none;
}
#bbpress-forums {
  box-sizing: border-box !important;
}
#bbpress-forums li {
  text-indent: 0 !important;
  padding-left: 0;
  line-height: 1.7 !important;
}
#bbpress-forums li::before {
  display: none !important;
}
.bbp-template-notice.info {
  border-radius: 10px;
  margin: 10px 0 50px !important;
  padding: 6px 15px !important;
}
.bbp-template-notice.info ul li {
  font-size: 110% !important;
}
.bbp-template-notice.info ul li a {
  text-decoration: underline;
  color: var(--blue);
}
.bbp-pagination {
  font-size: 110% !important;
  margin-bottom: 12px !important;
}

#bbpress-forums div.odd, #bbpress-forums ul.odd {
  background-color: #ffffff !important;
}
#bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums ul.bbp-topics {
  border: 1px #cccccc solid !important;
  margin: 0 0 11px !important;
}
#bbpress-forums div.bbp-forum-header, #bbpress-forums div.bbp-reply-header, #bbpress-forums div.bbp-topic-header {
  background-color: #fafafa !important;
  font-size: 120% !important;
  border-top: 1px #cccccc solid;
}
div.bbp-forum-header, div.bbp-reply-header, div.bbp-topic-header, li.bbp-body div.hentry {
  padding: 15px !important;
}
#bbpress-forums .bbp-header {
  background-color: color-mix(in srgb, var(--gold) 20%, transparent) !important;
  border-top: none !important;
  padding: 15px !important;
  font-size: 140% !important;
  font-weight: 500 !important;
}
#bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic {
  background-color: #ffffff !important;
  font-size: 140% !important;
  border-top: 1px #cccccc solid !important;
  padding: 25px 15px !important;
}
#bbpress-forums li.bbp-body .bbp-reply-content {
  font-size: 140% !important;
  padding: 8px 0 !important;
}
#bbpress-forums li.bbp-body .bbp-reply-content p {
  margin: 0 !important;
}
#bbpress-forums .bbp-footer {
  background-color: #ffffff !important;
  border-top: 1px #cccccc solid !important;
  padding: 15px !important;
}
#bbpress-forums .bbp-footer .bbp-reply-author, #bbpress-forums .bbp-footer .bbp-reply-content {
  font-size: 140% !important;
  font-weight: 500 !important;
} 

.bbp-reply-form, .bbp-topic-form, .bbp-topic-tag-form {
  padding: 60px 0 0;
}
#bbpress-forums form > fieldset.bbp-form {
  border: 1px #cccccc solid !important;
  padding: 20px 20px 25px !important;
}
#bbpress-forums form > fieldset.bbp-form > legend {
  display: block !important;
  width: 100%;
  margin: 0 0 25px !important;
  padding: 5px 0 25px !important;
  border-bottom: 1px #cccccc dashed !important;
  font-size: 175% !important;
}
.bbp-form .bbp-form {
  border: none !important;
  padding: 0 !important;
}
.bbp-form .bbp-form legend {
  color: #888888;
  font-size: 90% !important;
  padding: 0 !important;
}
.bbp-form .bbp-form p:nth-child(3), .bbp-form .bbp-form p:nth-child(4) {
	display: none;
}
.bbp-form label {
  color: #333333;
  font-size: 105% !important;
  font-weight: 500;
  margin: 0 0 3px !important;
}
.bbp-form input {
  width: 100%;
  height: 42px !important;
  padding: 10px 12px !important;
  border-radius: 6px;
  border: 1px #cccccc solid;
  outline: none;
  background: #ffffff;
  font-size: 125% !important;
}
.bbp-form .bbp-form p input {
  width: 50%;
}
.bbp-form textarea {
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px #cccccc solid;
  outline: none;
  background: #ffffff;
  font-size: 125% !important;
}
.bbp-the-content-wrapper {
  margin: 10px 0 0 !important;
}
div.bbp-submit-wrapper {
  float: none !important;
  margin: 15px 0 0 !important;
}
.bbp-form button {
  display: block;
  width: 120px;
  height: 40px;
  margin: 0 auto;
  background-color: #000000;
  text-align: center;
  color: #ffffff !important;
  border-radius: 50px;
  border: none;
  font-size: 120%;
  line-height: 1;
  transition: all 0.3s ease-out;
}
.bbp-form button:hover {
  background-color: var(--gold);
}

@media screen and (max-width: 767px) {
  .bbp-template-notice.info {
    margin: 0 0 45px !important;
  }
  .bbp-pagination {
    margin-bottom: 8px !important;
  }
  #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results, #bbpress-forums ul.bbp-topics {
    margin: 0 0 7px !important;
  }
  #bbpress-forums form > fieldset.bbp-form {
    padding: 15px 15px 20px !important;
  }
  #bbpress-forums .bbp-header {
    font-size: 110% !important;
    padding: 10px !important;
  }
  #bbpress-forums li.bbp-body ul.forum, #bbpress-forums li.bbp-body ul.topic {
    font-size: 110% !important;
    padding: 15px 10px !important;
  }
  .bbp-topic-title a {
    font-size: 110% !important;
  }
  #bbpress-forums div.bbp-forum-header, #bbpress-forums div.bbp-reply-header, #bbpress-forums div.bbp-topic-header {
    padding: 12px 12px 12px !important;
  }
  #bbpress-forums form > fieldset.bbp-form > legend {
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    font-size: 130% !important;
  }
  #bbpress-forums .bbp-footer .bbp-reply-author, #bbpress-forums .bbp-footer .bbp-reply-content {
    font-size: 110% !important;
  }
  div.bbp-forum-header, div.bbp-topic-header, li.bbp-body div.hentry {
    padding: 12px 2px 12px !important;
  }
  span.bbp-admin-links {
    margin-left: 15px;
  }
   span.bbp-admin-links a {
    font-size: 95% !important;
   }
   .bbp-reply-form, .bbp-topic-form, .bbp-topic-tag-form {
    padding: 40px 0 0 !important;
   }
  .bbp-form .bbp-form p input {
    width: 100% !important;
  }
}


