@charset "UTF-8";

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

	全ページ共通

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

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

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

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

body {
  color: #000;
  line-height: 1.9;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "hiragino-mincho-pron", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg img {
  width: 100%;
  height: auto;
  min-height: 100%;
  display: block;
}

.globalmenu,
main,
footer {
  position: relative;
  z-index: 1;
}

.hakushu {
  font-family: "ah-hakushu-school-prs", sans-serif;
  font-style: normal;
  font-weight: 300;
}

footer {
  margin-top: auto;
}

/* ↓ 共通アニメーション------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-section {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(6px);
  transition: opacity 1s ease, transform 1s ease, filter 1s ease;
  will-change: opacity, transform, filter;
}

.fade-section.is-inview {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

.pcWidth-l {
  max-width: 1024px;
  width: 85%;
  margin: 0 auto;
}

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

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

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

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

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

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

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

a:hover {
  opacity: 0.6;
}

img {
  width: 100%;
}

.fade-img {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 2s ease, transform 2s ease;
}

/* 表示状態 */
.fade-img.is-inview {
  opacity: 1;
  transform: scale(1);
}

/* ↓ ナビゲーションバー ------------------------*/
.globalmenu {
  position: fixed;
  width: 100%;
  padding: 1rem;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

@media screen and (max-width: 540px) {
  .globalmenu {
    padding: 0.1rem 0.5rem;
  }
}

.globalmenu-left {
  width: 4rem;
}

.globalmenu-right ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

/* ハンバーガーボタン */
.hamburger {
  display: none;
}

.hamburger {
  display: block;
  position: relative;
  z-index: 1001;
  right: 0;
  top: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  transform: scale(0.6);
  background-color: transparent;
  border: none;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #555;
  transition: 0.3s ease-in-out;
  margin: 0.5rem 0;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 31px;
}

.hamburger.active span:nth-child(1) {
  top: 20px;
  background: #000;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 20px;
  background: #000;
  transform: rotate(45deg);
}

/* スマホメニュー */
nav.globalmenu-sp {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  color: #fff;
  background-image: url(../img/back_note.jpg);
  background-size: 100% auto;
  background-repeat: repeat-y;
  text-align: center;
  width: 100%;
  height: 100vh;

  /* アニメーション用 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}

.globalmenuSp-inner {
  width: 100%;
  color: #000;
  text-align: left;
  display: flex;
  align-items: center;
  position: absolute;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 540px) {
  .globalmenuSp-inner {
    flex-direction: column;
    top: 40%;
  }
}

nav.globalmenu-sp.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 900;
}

.globalmenuSp-list {
  font-size: 3.7vw;
  line-height: 2;
  width: 37vw;
  text-align: center;
}
.globalmenuSp-inner .logo {
  width: 37vw;
  margin-right: 12vw;
}

.globalmenuSp-list .long {
  font-size: 3.2vw;
}
@media screen and (max-width: 540px) {
  .globalmenuSp-inner .logo {
    width: 60vw;
    margin-bottom: 2rem;
    margin-right: initial;
  }
  .globalmenuSp-list {
    font-size: 2rem;
    width: 80%;
  }

  .globalmenuSp-list li {
    margin-bottom: 1rem;
  }
}
/*---------------------------------------------

	FV

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

.fv {
  margin-bottom: 4rem;
}
@media screen and (max-width: 540px) {
  .fv {
    margin-bottom: 3rem;
    margin-top: 5rem;
    width: 90%;
    margin: auto;
  }
}

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

	message

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

.message {
  margin-bottom: 8rem;
}
@media screen and (max-width: 540px) {
  .message {
    margin-bottom: 6rem;
  }
}
.message_inner {
  background-color: rgba(238, 238, 238, 0.8);
  padding: 4.5vw 1vw;
  line-height: 1.7;
  padding-left: 12vw;
  font-size: 2.2vw;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 540px) {
  .message_inner {
    font-size: 1.2rem;
    padding: 2rem 1rem;
    padding-left: 5.5rem;
  }
}

.text_first {
  width: 6.2vw;
  position: absolute;
  left: 5.5vw;
  transform: translateX(-50%);
}

@media screen and (min-width: 1200px) {
  .text_first {
    width: 80px;
  }

  .message_inner {
    font-size: 25px;
  }
}
@media screen and (max-width: 540px) {
  .text_first {
    width: 2.8rem;
    position: absolute;
    left: 2.75rem;
    transform: translateX(-50%);
  }
}
/*---------------------------------------------

	news

---------------------------------------------*/
.news {
  margin-bottom: 10rem;
}
@media screen and (max-width: 540px) {
  .news {
    margin-bottom: 6rem;
  }
}

.news .inner {
  width: 100%;
  font-weight: bolder;
  background-image: url(../img/back_news.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 0rem 1rem 2rem;
  background-color: #eeeeee;
  position: relative;
}

.news .head {
  font-size: 2.2rem;
  font-weight: bolder;
  text-align: center;
}

.news .back_news_object {
  position: absolute;
}

.news .back_news_object.top {
  width: 100%;
  left: 0;
  top: 0;
  transform: translateY(-100%);
}

.news .back_news_object.bottom {
  width: 122%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
}

.news .back_news_object.left {
  width: auto;
  height: 100%;
  left: 0;
  top: 0;
  transform: translateX(-100%);
}

.news .back_news_object.right {
  width: auto;
  height: 100%;
  right: 0;
  top: 0;
  transform: translateX(100%);
}

@media screen and (max-width: 540px) {
  .news .back_news_object.bottom {
    width: 100%;
  }

  .news .back_news_object.left {
    display: none;
  }

  .news .back_news_object.right {
    display: none;
  }
}
.news .back_news_object.left img,
.news .back_news_object.right img {
  width: auto;
  height: 100%;
}

.news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #ad0000;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
}

.news ul li .left {
  width: 75%;
  font-size: 1rem;
}

.news ul li .left .day {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: #ad0000;
}

.news ul li .btn {
  width: 18%;
  background-color: #ad0000;
  display: inline-block;
  color: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .news ul li .btn {
    width: 23%;
    padding: 0.5rem 0rem;
  }
}

.news ul li .btn p {
  text-wrap: nowrap;
  margin: 0;
}

/* =========================
   modal
========================= */
.news-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

.news-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.news-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 760px);
  max-height: 80vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 3.5rem 2rem 2rem;
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 540px) {
  .news-modal__content {
    width: calc(100% - 2rem);
    padding: 3rem 1.25rem 1.5rem;
    border-radius: 0.75rem;
  }
}

.news-modal.is-open {
  pointer-events: auto;
}

.news-modal.is-open .news-modal__overlay {
  opacity: 1;
}

.news-modal.is-open .news-modal__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.news-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: #ad0000;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}

.news-modal__date {
  color: #ad0000;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.news-modal__title {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.news-modal__body {
  font-size: 1rem;
  line-height: 1.9;
  font-weight: normal;
}

.news-modal__body p:first-child {
  margin-top: 0;
}

.news-modal__body p:last-child {
  margin-bottom: 0;
}

body.is-fixed {
  overflow: hidden;
}
/*---------------------------------------------

	schedule

---------------------------------------------*/
.sec_head {
  height: 3.5rem;
  text-align: center;
  margin-bottom: 2.75rem;
}

.sec_head_long {
  height: 7rem;
  text-align: center;
  margin-bottom: 2.75rem;
}

@media screen and (max-width: 540px) {
  .sec_head {
    height: 3.2rem;
  }

  .sec_head_long {
    height: 6.4rem;
  }
}
.sec_head img {
  width: auto;
  height: 100%;
}

.scedule_head {
  position: relative;
}

.schedule_item {
  margin-bottom: 5rem;
}

.scedule_head_s {
  margin-right: 0rem;
  margin-left: auto;
  width: 97%;
  background-color: #ad0000;
  color: #fff;
  display: flex;
  padding: 0.8rem 0;
  align-items: center;
  justify-content: space-between;
  padding-left: 3rem;
  position: relative;
  z-index: 10;
  margin-right: 0.5rem;
}
@media screen and (max-width: 540px) {
  .scedule_head_s {
    margin-right: -1rem;
    margin-left: 2rem;
    width: 91%;
    padding-left: 2rem;
  }
}

.scedule_head_s2 {
  background-color: #270059;
}

.scedule_head_s .scedule_head_paper {
  position: absolute;
  left: 0;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  z-index: 10;
}
.scedule_head_s .scedule_head_paper img {
  width: auto;
  height: 100%;
}
.scedule_head_s .scedule_head_rope1 {
  position: absolute;
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  z-index: 20;
}
.scedule_head_s .scedule_head_rope2 {
  position: absolute;
  left: -1.8rem;
  top: 60%;
  transform: translateY(-50%);
  width: 3.7rem;
  z-index: -1;
}

.scedule_head_s .left {
  font-size: 1.6rem;
  width: 15%;
  text-wrap: nowrap;
}
.scedule_head_s .right {
  line-height: 1.4;
  width: 78%;
  font-size: 1.1rem;
}
@media screen and (max-width: 540px) {
  .scedule_head_s .right {
    line-height: 1.4;
    width: 78%;
    font-size: 0.9rem;
  }
}
.scedule_content {
  background-color: #fff;
  padding: 1rem 3rem;
  font-weight: 300;
  font-size: 0.8rem;
  width: 94%;
  margin: auto;
  line-height: 1.7;
}

@media screen and (max-width: 540px) {
  .scedule_content {
    width: 85%;
    padding: 1rem 1rem;
  }
}
.scedule_content a {
  text-decoration: underline;
}
.scedule_content iframe {
  width: 100%;
  margin: 1rem 0;
}
/*---------------------------------------------

	ticket

---------------------------------------------*/
.ticket {
  background-color: rgba(110, 66, 25, 0.8);
  padding: 4rem 0;
  color: #490000;
}
.ticket_box {
  margin-bottom: 3.5rem;
}

.no_mb {
  margin-bottom: 0;
}

.ticket_box .head {
  background-color: #ad0000;
  color: #fff;
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
}
.ticket_box .content {
  padding: 1rem 1.5rem 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.ticket_box .content small {
  line-height: 0.8;
}

.ticket_box2 .content {
  padding: 1.75rem 1.5rem 2rem;
}
.ticket_box .content span {
  margin-bottom: 0.5rem;
  display: inline-block;
}
.ticket_box .content h4 {
  background-color: #490000;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.ticket_box .content .emphasis {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 540px) {
  .ticket_box .content .emphasis {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.ticket_box .btn {
  text-align: center;
  margin-bottom: 1.25rem;
}

.ticket_box .btn a {
  color: #fff;
  display: inline-block;
  padding: 0.75rem 0;
  width: 80%;
  max-width: 420px;
  background-color: #727171;
}

.ticket_box .note {
  font-size: 0.95rem;
}

.img-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.img-modal.is-open {
  display: block;
}

.img-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

.img-modal-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.img-modal-inner img {
  max-width: 90%;
  max-height: 90%;
  cursor: grab;
  transition: transform 0.08s ease;
  transform-origin: center center;
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.img-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 24px;
  line-height: 1;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}
/*---------------------------------------------

	goods

---------------------------------------------*/
.goods {
  padding: 4rem 0 0;
}

.goods .contentns {
  padding: 4rem 0;
  background-color: rgba(255, 255, 255, 0.55);
}

.goods .contentns .inner {
  padding: 5rem 0;
  background-color: #fff;
  border: 1px solid;
  text-align: center;
  font-size: 2rem;
}

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

	drink

---------------------------------------------*/
.drink .catch {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #ad0000;
}

@media screen and (max-width: 540px) {
  .drink .catch {
    text-align: left;
    font-size: 1.1rem;
  }
}

.drink .image img {
  margin-bottom: 3rem;
}

.drink .text {
  text-align: center;
  color: #251713;
}

.drink .btn {
  background-color: #ad0000;
  padding: 0.5rem 3rem;
  color: #fff;
  display: inline-block;
  margin: 1.25rem 0;
  font-size: 1.1rem;
}
.contact .contentns .note {
  font-size: 0.9rem;
}

.btn_center {
  text-align: center;
}

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

	contact

---------------------------------------------*/
.contact {
  padding: 4rem 0;
  color: #490000;
}
.contact .contentns {
  text-align: center;
}
.contact .contentns h4 {
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (max-width: 540px) {
  .contact .contentns h4 {
    font-size: 1rem;
    line-height: 1;
  }
}
.contact .contentns .btn {
  background-color: #ad0000;
  padding: 0.5rem 3rem;
  color: #fff;
  display: inline-block;
  margin: 1.25rem 0;
  font-size: 1.1rem;
}
.contact .contentns .note {
  font-size: 0.9rem;
}
/*---------------------------------------------

	footer

---------------------------------------------*/
.footerMenu-logo {
  font-size: 1.3rem;
  color: #fff;
}

.footer-menu {
  background-color: rgba(110, 66, 25, 0.8);
  text-align: center;
  padding: 2rem 1rem;
}

.footer-menu a {
  color: #fff;
}

.footerMenu-menus_sns {
  text-align: center;
  padding: 0.75rem 0rem;
  font-size: 1.2rem;
  color: #fff;
}

.footer-menu_share {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.footer-menu_share a {
  background-color: #ad0000;
  color: #fff;
  padding: 0.5rem 2rem;
  align-items: center;
  display: flex;
  margin: 0 0.5rem;
  font-size: 1.1rem;
}
@media screen and (max-width: 540px) {
  .footer-menu_share a {
    padding: 0.5rem 1rem;
  }
}
.footer-menu_share img {
  width: 1.3rem;
  margin-right: 0.75rem;
}

.footerMenu-menus {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.footerMenu-menus_sub {
  font-size: 0.75rem;
  color: white;
  font-weight: 300;
}
@media screen and (max-width: 540px) {
  .footerMenu-menus_sub {
    font-size: 1rem;
  }
}
.footerMenu-copy {
  font-size: 0.8rem;
  letter-spacing: normal;
  color: white;
  font-weight: 300;
}

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

	page

---------------------------------------------*/
.news_detail {
  background-color: rgba(238, 238, 238, 0.8);
  padding: 3rem;
  line-height: 1.7;
  font-size: 2.2vw;
  position: relative;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 540px) {
  .news_detail {
    padding: 1.5rem;
    padding-bottom: 3rem;
  }
}
.page_content {
  padding: 5rem 0;
}

.news_detail .title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px dashed #ad0000;
}
.news_detail .day {
  font-size: 0.9rem;
  color: #ad0000;
}

.news_detail p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.news_detail img {
  margin-bottom: 2rem;
}
.news_detail h2 {
  font-size: 1.3rem;
  font-weight: bolder;
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  border-left: 4px solid #ad0000;
  line-height: 1.2;
}

.news_detail h3 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  background-color: #490000;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 1rem;
}

.topbtn_wrap {
  text-align: center;
}

.topbtn {
  border: 1px solid #ad0000;
  padding: 0.75rem 2rem;
  display: inline-block;
  font-size: 0.9rem;
  transition: 0.3s ease;
  margin-top: 2rem;
}
.topbtn:hover {
  background-color: #ad0000;
  color: #fff;
  transition: 0.3s ease;
  opacity: 1;
}

.error404-page {
  padding: 8rem 1.5rem;
  text-align: center;
}

.error404-page__inner {
  max-width: 640px;
  margin: 0 auto;
}

.error404-page__code {
  margin: 0 0 1rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
}

.error404-page__title {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.error404-page__text {
  margin: 0 0 2rem;
  line-height: 1.8;
}

.error404-page__button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.error404-page__button:hover {
  background: #000;
  color: #fff;
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

.spArea {
  display: none;
}

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

  .spArea {
    display: block;
  }
}

/* --- a11y: skip link (added in refactor) --- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #000;
  z-index: 9999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
