@charset "utf-8";

/*
============================ CSS ============================
*/

main {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}
main a {
  color: #b98c82 !important;
}
#kvArea {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
}

#loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8d5cf;
}

#loading.is-loaded {
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s;
}

#loading .loader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  height: 500px;
}

#loading .loader img {
  width: 100%;
}

#loading .loader__logo {
  position: absolute;
  top: 10%;
  left: 25%;
  width: 270px;
}

#loading-progress {
  position: absolute;
  width: 400px;
  height: 8px;
  top: 50%;
  left: 10%;
  margin: 20px;
}

#loading .percent-symbol {
  font-size: 2rem; /* 数値の半分くらいのサイズ */
  font-weight: normal; /* パーセント記号だけ細くする場合 */
}

/* ===== menu ===== */
.header__toggle {
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 1000;
  display: block;
  width: 10vw;
  max-width: none;
  height: 10vw;
  padding: 0;
  overflow: visible;
  cursor: pointer;
  background: none;
  border: 0;
  appearance: none;
}
.header__toggle.is-fixed {
  position: fixed;
}
.header__toggle__bars {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.8s, background 0.4s, color 0.4s;
}
.header__toggle__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  margin-left: -10px;
  background: #f0e6e3;
  transition: all 0.8s, background 0.4s, color 0.4s;
  transform-origin: center left;
}
.header__toggle__bar:nth-child(1) {
  transform: translate(0, -5px) scale(1, 1);
}
.header__toggle__bar:nth-child(2) {
  transform: translate(0, 0) scale(0.8, 1);
}
.header__toggle__bar:nth-child(3) {
  transform: translate(0, 5px) scale(0.9, 1);
}
.is-nav-open .header__toggle__bar {
  transform-origin: center center;
  background: #b98c82;
}
.is-nav-open .header__toggle__bar:nth-child(1) {
  transform: translate(0, 0) scale(1, 1) rotate(45deg);
}
.is-nav-open .header__toggle__bar:nth-child(2) {
  transform: translate(0, 0) scale(0, 1) rotate(0deg);
}
.is-nav-open .header__toggle__bar:nth-child(3) {
  transform: translate(0, 0) scale(1, 1) rotate(-45deg);
}
.header__toggle__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-color: #b98c82;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}
.header__toggle__bg svg {
  width: 70px;
  height: 70px;
  margin: -5px 0 0 -5px;
  opacity: 0;
  transition: all 0.8s, background 0.4s, color 0.4s;
}
.header__toggle__bg path {
  fill: none;
  stroke: #b98c82;
  stroke-miterlimit: 10;
  stroke-width: 2px;
  transition: all 0.4s ease-in-out;
}
.header__toggle__txt {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  height: auto;
  margin-top: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1;
  color: #b98c82;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transform: translate(-86px, -50%);
  opacity: 0;
  transition: all 0.8s, background 0.4s, color 0.4s;
}
.is-nav-open .header__toggle__txt {
  left: 50%;
  right: auto;
  transform: translate(-86px, -50%);
  opacity: 1;
}
.is-nav-open .header__toggle__bg {
  background-color: rgba(0, 0, 0, 0);
}
.is-nav-open .header__toggle__bg svg {
  opacity: 1;
}
.is-nav-open .header__toggle:hover .header__toggle__bg path {
  stroke: #b98c82;
}

body.is-scroll-locked {
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.nav-panel {
  position: fixed;
  top: 0 !important;
  right: auto;
  left: 0;
  z-index: 850;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  background: #e8d5cf url(../img/nav_bg.png) 0 10px no-repeat;
  background-size: auto 86vh;
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0s linear 0.8s;
  transform: translate(0, 100%);
}
.nav-panel.is-fixed {
  top: 0;
  right: auto;
}
.is-nav-open .nav-panel,
.is-nav-closing .nav-panel {
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0s;
}
.is-nav-open .nav-panel {
  transform: translate(0, 0);
}
.is-nav-closing .nav-panel {
  transform: translate(0, 100%);
}
.nav-panel__inner {
  display: flex;
  align-items: center;
  width: 78%;
  height: 100vh;
  min-height: 100vh;
  padding: 10% 10%;
  overflow-y: auto;
  background: #fff;
}
.nav-backdrop {
  display: none;
}
ul.nav li {
  margin: 0 0 20px;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(22px);
  will-change: transform, opacity;
}
ul.nav li a {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  color: #000 !important;
}
ul.nav li a:hover {
  color: #b98c82 !important;
}

.is-nav-open ul.nav li {
  opacity: 1;
  transform: translateY(0);
}

.is-nav-open ul.nav li:nth-child(1) {
  transition-delay: 0.68s;
}
.is-nav-open ul.nav li:nth-child(2) {
  transition-delay: 0.74s;
}
.is-nav-open ul.nav li:nth-child(3) {
  transition-delay: 0.8s;
}
.is-nav-open ul.nav li:nth-child(4) {
  transition-delay: 0.86s;
}
.is-nav-open ul.nav li:nth-child(5) {
  transition-delay: 0.92s;
}
.is-nav-open ul.nav li:nth-child(6) {
  transition-delay: 0.98s;
}
.is-nav-open ul.nav li:nth-child(7) {
  transition-delay: 1.04s;
}
.bg01 {
  position: relative;
  z-index: 1;
  padding: 40px 12%;
  margin: 0 0 30px;
  color: #fff;
  background: #5bb0bf;
}
.bg02 {
  position: relative;
  z-index: 1;
  padding: 60px 3% 1px 5%;
  margin: 0 0 30px;
  background: #e8d5cf;
}
.bg03 {
  position: relative;
  z-index: 1;
  padding: 40px 6% 60px;
  margin: 0 0 30px;
  color: #fff;
  background: #5bb0bf;
}
.bg04 {
  position: relative;
  z-index: 1;
  padding: 20px 3% 1px 5%;
  margin: 0 0 30px;
  background: #e8d5cf;
}
.readTit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 30px;
}
.read {
  margin: 0 0 30px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.2;
  text-align: center;
}
.date01 {
  width: 95%;
  margin: 0 auto 10px;
}
.date02 {
  width: 100%;
  margin: 0 auto 10px;
}
.date03 {
  width: 70%;
  margin: 0 auto 20px;
}
.date04 {
  width: 40%;
  margin: 0 auto 10px;
}
.date05 {
  width: 85%;
  margin: 0 auto 40px;
}
.date06 {
  width: 85%;
  margin: 0 auto 20px;
}
.date07 {
  width: 85%;
  margin: 0 auto 20px;
}
.date08 {
  width: 40%;
  margin: 0 auto 20px;
}
.date09 {
  width: 100%;
  margin: 0 auto 20px;
}
.date10 {
  width: 82%;
  margin: 0 auto 15px;
}
.date11 {
  width: 88%;
  margin: 0 auto 15px;
}
.date12 {
  width: 82%;
  margin: 0 auto 15px;
}
.box01 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 9% 40px 7%;
  margin: 0 auto 80px;
  background: url(../img/box01.png) 0 0 repeat-y;
  background-size: 100% auto;
}
.box01:before {
  position: absolute;
  top: -30px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 681/120;
  margin: 0 auto;
  content: "";
  background: url(../img/box01-top.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
.box01:after {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 681/120;
  margin: 0 auto;
  content: "";
  background: url(../img/box01-bottom.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
.box02 {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 9% 40px 7%;
  margin: 0 auto 80px;
  background: url(../img/box02.png) 0 0 repeat-y;
  background-size: 100% auto;
}
.box02:before {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 681/120;
  margin: 0 auto;
  content: "";
  background: url(../img/box02-top.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
.box02:after {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  aspect-ratio: 681/120;
  margin: 0 auto;
  content: "";
  background: url(../img/box02-bottom.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
.img01 {
  width: 100%;
  margin: 0 auto 20px;
}
.img02 {
  width: 100%;
  margin: 0 auto 10px;
}
.img03 {
  width: 80%;
  margin: 0 auto 10px;
}
.img04 {
  width: 100%;
  margin: 0 auto 40px;
}
.img07 {
  width: 100%;
  margin: 0 auto 10px;
}
.img08 {
  width: 100%;
  margin: 0 auto 10px;
}
.img09 {
  width: 100%;
  margin: 0 auto 40px;
}
.img10 {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
.img11 {
  width: 100%;
  margin: 0 auto 30px;
  text-align: center;
}
#openImg[hidden] {
  display: none;
}
#openImg.is-open {
  display: block;
}
#openImg > img {
  width: 80%;
  margin: 0 auto 30px;
}
#workshopImg[hidden] {
  display: none;
}
#workshopImg.is-open {
  display: block;
}
#workshopImg > img {
  width: 80%;
  margin: 0 auto 30px;
}

.btnImg {
  display: block;
  width: 90%;
  margin: 0 auto 20px;
}

.btnImg10 {
  display: block;
  width: 90%;
  margin: 0 auto 10px;
}

.btn-toggle {
  padding: 0;
  cursor: pointer;
  background: none;
  border: 0;
}
.ly3 {
  position: relative;
  z-index: 3;
}
.coution {
  font-size: 1.2rem;
  line-height: 1.6;
}
.coution a {
  text-decoration: underline;
}
#anchor06 {
  position: relative;
  z-index: 3;
}
section {
  position: relative;
  z-index: 1;
}
.tit01 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #afd8e0;
  font-size: 2rem;
  padding: 20px 0;
  background: #3e3a39;
}
.stit {
  width: 90%;
  margin: 0 auto 10px;
  background: #b98c82;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  letter-spacing: 0.3em;
}
.stit01 {
  width: 90%;
  margin: 0 auto 15px;
}
.stit02 {
  width: 90%;
  margin: 0 auto 25px;
}
.stit02 img {
  position: relative;
  z-index: 2;
}
.stit02 > div {
  z-index: 1;
}
.stit03 {
  width: 55%;
  margin: 0 auto 25px;
}
.stit04 {
  width: 80%;
  margin: 0 auto 25px;
}
.stit05 {
  width: 40%;
  margin: 0 auto 25px;
}
.stit05 img {
  position: relative;
  z-index: 2;
}
.stit05 > div {
  z-index: 1;
}
.stit06 {
  width: 90%;
  margin: 0 auto 25px;
}
.stit07 {
  width: 100%;
  margin: 0 auto 25px;
}
.stit08 {
  width: 90%;
  margin: 0 auto 55px;
}
.stit09 {
  width: 75%;
  margin: 0 auto 20px;
}
.stit10 {
  width: 65%;
  margin: 0 auto 20px;
}
.stit11 {
  width: 85%;
  margin: 0 auto 20px;
}
.bnrBox {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 30px 13% 40%;
  margin: 0 auto 30px;
  background: url(../img/footer_img.png) 0 bottom no-repeat;
  background-size: 100% auto;
}
ul.facilities {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  width: 100%;
}
ul.facilities li {
  width: calc(100% / 3 - 5px);
  margin: 0 0 8px;
}
/* 最後の要素を左寄せ */
ul.facilities::after {
  content: "";
  width: calc(100% / 3 - 5px);
  margin: 0 0 8px;
}
.facilities23 {
  width: calc(200% / 3 - 5px);
}

.bgWhite {
  position: relative;
  z-index: 5;
  padding: 40px 0 1px;
  margin: 0 auto;
  max-width: 700px;
  background: #fff;
}
footer {
  overflow: hidden;
  background: #fff;
}

#sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#sns ul.sns:last-child {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  gap: 9.5%;
}
ul.sns {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center; /* 垂直方向の揃え */
  justify-content: space-between; /* 水平方向の揃え */
  width: calc(45% - 10px);
  padding: 0;
  margin: 0 auto 30px;
}
ul.sns li {
  width: 27%;
  font-weight: 700;
  white-space: nowrap;
}
ul.sns li a {
  width: 100%;
}
ul.sns li:nth-child(1) {
  width: 100%;
  padding: 0 0 5px;
  font-size: 1.4rem;
  text-align: center;
}

#goTop {
  position: fixed;
  right: calc(50% - 400px + 5vw);
  bottom: 20px;
  z-index: 100000;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  #goTop {
    right: 20px;
  }
}
#goTop.is-visible {
  opacity: 1;
}

.b_box{
  width:90%;
  background: #e8d5cf;
  padding: 10px 20px;
  border-radius: 10px;
  margin:0 auto 20px;
}

/* IE11 */
@media all and (-ms-high-contrast: none) {
  svg {
    display: none;
  }
}
.timeSchedule {
  color: #b98c82;
  border: 1px solid #b98c82;
  padding: 8px 10px;
  text-align: center;
  line-height: 1.2;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}

.red_b {
  color: #ff0805;
  font-weight: 900;
}



