@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Old+Mincho&display=swap');
:root {
  --mainColor: #46bfa7;
  --mainColor-pale: #a4dfd3;
  --mainColor-crr: #06a585;
  --subColor: #f44b0f;
  --subColor-crr: #e04009;
  --bgColor: #f5f1e9;
}
/*--------------------------------------------------
    style
=================================================*/
/*  共通
**********************************/
.zen-mincho {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
#demo06 {
  /*font-family: "Zen Old Mincho", serif;*/
}
#demo06 .inner {
  max-width: 1280px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
#demo06 .attentionDemo {
  background: #FFEDED;
  color: #C5090D;
  font-weight: 600;
  padding: 0.5em 1em;
  text-align: center;
  position: fixed;
  right: 0;
  bottom: 0;
  font-size: .875rem;
  z-index: 1000;
}
@media (min-width:481px) { /* for PC */
}
/*  ヘッダー
  **********************************/
#demo06 .headerArea {
  position: relative;
  z-index: 1;
}
#demo06 .hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
#demo06 .hamburger span {
  display: block;
  width: 6vw;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s;
}
#demo06 .headerArea .navWrapper ul.mainNav li {
  text-align: center;
}
#demo06 .headerArea .navWrapper ul.mainNav li span {
  display: block;
  width: 100%;
  font-size: .75rem;
}
#demo06 .headerArea .navWrapper ul.subNav {
  gap: 0.8em;
}
#demo06 .headerArea .navWrapper ul.subNav li {
  font-size: 0.875rem;
  background: #000;
  backdrop-filter: blur(10px);
  padding: 0.4em 1.5em;
  color: #fff;
}
@media (min-width:481px) { /* for PC */
  #demo06 .headerArea {
    padding: 2em 0 1.5em 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    width: 96%;
    margin: 0 auto;
    z-index: 10;
    min-width: 1000px;
  }
  #demo06 .headerArea .navWrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
  }
  #demo06 .headerArea .navWrapper ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2em;
  }
  #demo06 .headerArea .navWrapper ul.mainNav {
    font-weight: 500;
  }
  #demo06 .headerArea .navWrapper ul.mainNav li {
    font-size: 0.9375rem;
    line-height: 1.2;
    color: #fff;
  }
}
@media (max-width:480px) { /* for SP */
  #demo06 .headerArea {
    position: relative;
    padding: 1.5em 1.2em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index: 100;
  }
  #demo06 .headerArea .logo {
    width: 30vw;
    line-height: 0;
  }
  #demo06 .navWrapper.active {
    display: flex;
  }
  #demo06 .hamburger {
    display: block;
    position: absolute;
    top: 1.5vw;
    right: 2vw;
    padding: 0.5em;
  }
  #demo06 .navWrapper {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 100%; /* ヘッダーの下 */
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 1em;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
  }
  #demo06 .mainNav li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.2);
    padding: 0.8em 0.5em;
    color: #fff;
  }
  #demo06 .headerArea .navWrapper ul.subNav {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1em;
    gap: 0.8em;
  }
  #demo06 .headerArea .navWrapper ul.subNav li {
    padding: 0.5em 1em;
    flex: 1;
    text-align: center;
  }
}
/*  背景変更
**********************************/
#demo06 .bgCange {
  position: relative;
}
#demo06 .bgCange::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 64, 146, 0.2) 0%,
    rgba(0, 64, 146, 0.3) 30%,
    rgba(0, 64, 146, 0.5) 80%,
    rgba(0, 64, 146, 0.8) 100%
  );
  backdrop-filter: blur(10px);
  transition: opacity 0.8s ease;
  z-index: 0;
}
#demo06 .bgCange.show-bg::before {
  opacity: 1;
}
/*  メインビジュアル 
**********************************/
#demo06 .mainVisual {
  position: fixed; /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 全画面 */
  z-index: -1; /* 背面に固定 */
  background: #000;
}
#demo06 .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*  疑似メインビジュアル 
**********************************/
#demo06 .mainWrap {
  position: relative;
}
@media (min-width:1281px) { /* for PC */
  #demo06 .mainWrap {
    height: 100vh;
  }
}
@media (max-width:480px) { /* for SP */
  #demo06 .mainWrap {
    padding-top: 100vh;
  }
}
/*  メインビジュアルテキスト部分
**********************************/
#demo06 .mainArea .mvText {
  position: absolute;
  z-index: 20;
}
#demo06 .mainArea .mvText h1 {
  color: #fff;
  letter-spacing: 0.4em;
  text-indent: -0.4em;
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.5rem);
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  margin-top: -1em;
}
#demo06 .mainArea .arrowLink  {
  margin-top: 2em;
  text-align: center;
}
#demo06 .mainArea .arrowLink a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  border: #fff solid 1px;
  font-size: .875rem;
  padding: 1em 2em;
  min-width: 20em;
  letter-spacing: 0.5em;
  text-indent: 0.8em;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}
#demo06 .mainArea .arrowLink a::after {
  content: '';
  width: 1px;
  height: 2em;
  position: absolute;
  bottom: -1.5em;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: #fff;
}
@media (min-width:1281px) { /* for PC */
  #demo06 .mainArea {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-end;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 89px);
  }
  #demo06 .mainArea .mvText {
    text-align: center;
    top: 45%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  #demo06 .mainArea .mvText h1 .sp{
    display: none;
  }
  #demo06 .mainArea .arrowLink a {
     transition: all 0.3s ease;
  }
  #demo06 .mainArea .arrowLink a:hover {
     backdrop-filter: blur(5px);
    background: rgba(255,255,255,0.1)
  }
}
@media (max-width:1280px) { /* for tab */
  #demo06 .mainArea {
    padding-top: 40vh;
  }
  #demo06 .mainArea .mvText {
    top: 12vh;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
}
@media (max-width:480px) { /* for SP */
  #demo06 .mainArea {
    margin-top: 3vw;
    padding-top: 0;
  }
  #demo06 .mainArea .mvText {
    top: 20vh;
    width: 100%;
  }
  #demo06 .mainArea .mvText img {
    display: block;
    width: 60vw;
    margin: 0 auto;
  }
  #demo06 .mainArea .mvText h1 {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-top: 0;
    padding-left: 0.4em;
  }
  #demo06 .calWrap {
    padding: 3vw 4vw;
  }
}

/*  カレンダー
**********************************/
#demo06 .calendarWrap{
  position: relative;
}
#demo06 .calendarWrap .inner {
  position: relative;
  z-index: 1;
}
#demo06 .calendarWrap h2{
  font-size: 2.5rem;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  letter-spacing: 0.05em;
  color: #fff;
}
#demo06 .calendarWrap h2 .line {
  font-size: 1rem;
  position: relative;
  padding-left: 3em;
  line-height: 1;
}
#demo06 .calendarWrap h2 .line::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0.45em;
  left: 0;
}
#demo06 .calendarWrap .leading {
  letter-spacing: 0.2em;
  margin-bottom: 2em;
  color: #fff;
}

#demo06 .tab-menu {
  display: flex;
  justify-content: center;
  margin-bottom: 1em;
  gap: 1em;
}
#demo06 .tab-menu button {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: #fff solid 1px;
  padding: 1em 2em;
  cursor: pointer;
  font-weight: 700;
  border-radius: 50px;
  color: #000;
}
#demo06 .tab-menu button.active {
  background: #000;
  color: #fff;
  border-color: #000;
}
#demo06 .tab-content {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: opacity 0.8s ease;
}
#demo06 .tab-content.active {
  opacity: 1;
  visibility: visible;
  height: auto;
  transition: opacity 0.8s ease;
}

#demo06 .tab-content .event-reserve-calendar {
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#demo06 .tab-content.active .event-reserve-calendar {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width:481px) { /* for PC */
  #demo06 .calendarWrap {
    padding: 6em 0 ;
  }
  #demo06 .tab-menu button {
    min-width: 15em;
  }
}
@media (max-width:480px) { /* for SP */
  #demo06 .calendarWrap {
    padding: 0 0 3em 0;
  }
  #demo06 .calendarWrap h2{
    font-size: 2rem;
  }
  #demo06 .tab-menu {
    gap: 0.8em;
  }
  #demo06 .tab-menu button {
    flex: 1;
  }
  #demo06 .event-reserve-calendar .event-reserve-label {
    font-size: 1rem;
  }
}
/*  ニュース
**********************************/
#demo06 .newsWrap {
  position: relative;
  overflow: hidden;
  background: #fff;
}
#demo06 .newsWrap.show-bg::before {
  opacity: 1;
}
#demo06 .newsWrap > * {
  position: relative;
  z-index: 1;
}
#demo06 .newsWrap h2 {
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
#demo06 .newsWrap h2 .line {
  font-size: 1rem;
  position: relative;
  padding-left: 3em;
  line-height: 1;
}
#demo06 .newsWrap h2 .line::before {
  content: '';
  display: inline-block;
  width: 2em;
  height: 1px;
  background: #000;
  position: absolute;
  top: 0.45em;
  left: 0;
}
#demo06 .newsWrap .allLink {
  margin-top: 2em;
}
#demo06 .newsWrap .allLink span {
  display: inline-block;
  position: relative;
  padding-right: 3.5em;
}
#demo06 .newsWrap .allLink span::after {
  content: '';
  display: inline-block;
  width: 2.4em;
  height: 2.4em;
  border: #C8A320 solid 1px;
  border-radius: 50px;
  background: url("../images/demo06/arrow.svg") no-repeat center center / 0.8em auto;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
#demo06 .newsWrap ul {
  border-top: rgba(0, 0, 0, 0.1) solid 1px;
}
#demo06 .newsWrap ul li {
  border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
  padding: 3em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5em;
  font-size: .9375rem;
  background: url("../images/demo06/arrow.svg") no-repeat right 1em center / 0.8em auto;
}
#demo06 .newsWrap ul li time {
  font-size: .875rem;
  color: #9A9A9A;
}
#demo06 .newsWrap ul li i {
  display: inline-block;
  font-size: .75rem;
  color: #C8A320;
}
#demo06 .newsWrap ul li i::before {
  content: '#'
}
#demo06 .newsWrap p {
  font-weight: 500;
}
@media (min-width:481px) { /* for PC */
  #demo06 .newsWrap {
    padding: 10em 0;
  }
  #demo06 .newsWrap .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2em;
  }
  #demo06 .newsWrap .inner .leftWrap {
    width: 12em;
  }
  #demo06 .newsWrap .inner ul {
    flex: 1;
  }
}
@media (max-width:480px) { /* for SP */
  #demo06 .newsWrap {
    padding: 4em 0;
  }
  #demo06 .newsWrap .inner {
    position: relative;
  }
  #demo06 .newsWrap .leftWrap {
    margin-bottom: 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #demo06 .newsWrap h2 {
    font-size: 2rem;
  }
  #demo06 .newsWrap .allLink span {
    padding:  0 4em 0 1em;
    text-align: right;
  }
  #demo06 .newsWrap ul li {
    gap: 0.5em 1em;
    padding: 1.5em 0;
  }
}
/*  入力画面
**********************************/
#demo06.inputPage .headerArea {
  position: absolute;
}
#demo06.inputPage .headImg {
  width: 100%;
  background: url("../images/demo06/mainvisual.jpg") no-repeat center center / cover;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}
#demo06.inputPage .headImg::after {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
#demo06.inputPage .headImg h1 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.2em;
  font-weight: 500;
  max-width: 1080px;
  width: 92%;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#demo06.inputPage .inner {
  max-width: 1080px;
  width: 92%;
  margin: 0 auto;
  padding-bottom: 5em;
}
#demo06.inputPage .inner #eventReserve-formTable {
  width: 100%;
}
#demo06.inputPage .inner #eventReserve-formTable th {
  font-weight: 600;
}
#demo06.inputPage .inner #eventReserve-formTable td {
  border-bottom: #D4D0CE solid 1px;
}
#demo06.inputPage .inner #eventReserve-formTable input {
  border: #B4A49C solid 1px;
  padding: 1em 1em;
}
#demo06.inputPage .inner #eventReserve-formTable input::placeholder {
  color: #D4D0CE;
}
#demo06.inputPage .inner #eventReserve-formTable select {
  padding: 0.5em 2em 0.5em 1em;
  border: #B4A49C solid 1px;
  -webkit-appearance: none;
  appearance: none;
  background: url("../images/demo06/arrow_btm.svg") no-repeat right 0.5em top 50% / 0.5em;
}
#demo06.inputPage .inner .reserveNun span {
  display: inline-block;
  width: 4em;
}
#demo06.inputPage .inner .buttonFlxArea button#confirmBtn {
  background: #000;
  font-size: 1rem;
  pointer-events: none;
}
#demo06.inputPage .inner .buttonFlxArea .confirmBtn {
  font-family: inherit;
  display: inline-block;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 3px;
  padding: 1em 1.5em 1em 1.5em;
  transition: background-color 0.3s, color 0.3s;
  background: #000;
  font-size: 1rem;
  pointer-events: none;
  min-width: 200px;
  color: #fff;
  text-align: center;
}
#demo06.inputPage .inner .btnAttention {
  font-size: .875rem;
  margin-top: 1em;
  text-align: center;
  font-weight: 600;
  color: #C5090D;
}
@media (min-width:481px) { /* for PC */
  #demo06.inputPage .headImg {
    height: 20em;
    margin-bottom: 3em;
  }
  #demo06.inputPage .inner #eventReserve-formTable th {
    padding: 2em 1.2em !important;
    border-bottom: #D4D0CE solid 1px;
  }
  #demo06.inputPage .inner #eventReserve-formTable td {
    padding: 2em 1.2em !important;
  }
}
@media (max-width:480px) { /* for SP */
  #demo06.inputPage .headerArea {
    width: 100%;
    z-index: 1;
  }
  #demo06.inputPage .headImg {
    padding: 4em 0 2em 0;
    margin-bottom: 2em;
  }
  #demo06.inputPage .inner #eventReserve-formTable {
    margin-top: 0;
  }
  #demo06.inputPage .inner #eventReserve-formTable th {
    padding: 1.2em 1em 0 1em !important;
  }
  #demo06.inputPage .inner #eventReserve-formTable td {
    padding: 1em 1em 2em 1.2em !important;
  }
  #demo06.inputPage .inner #eventReserve-formTable .regular-text {
    width: 100%;
  }
  #demo06.inputPage .inner .buttonFlxArea {
    margin-top: 1.5em;
  }
}