@charset "utf-8";
/* ↓↓↓ common ↓↓↓ */
body.-noscroll {
  overflow-y: hidden;
}

:root {
  --cate-news: #81392B;
  --cate-event: #C81528;
}

.-back-white {
  background: linear-gradient(transparent 0%, #fff 0%);
}

.more-btn {
  position: relative;
  width: 340px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background-color: #222;
  transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .more-btn {
    width: 302px;
    margin: 0 auto;
  }
}

.more-btn::after {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  background: url(../../img/niizaonsen/common/angle.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
}

@media screen and (max-width: 768px) {
  .more-btn::after {
    right: 17px;
  }
}

@media screen and (min-width: 769px) {
  .more-btn:hover {
    background-color: #656565;
    transition: background-color 0.3s ease;
  }
}

.more-btn.-back::after {
  transform: translateY(-50%) rotate(180deg);
  right: initial;
  left: 20px;
}

.download-btn {
  position: relative;
  width: 262px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  background-color: #222;
  transition: background-color 0.3s ease;
  -webkit-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  transform: translateZ(0);
}

.download-btn::after {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 17px;
  background: url(../../img/niizaonsen/common/icon-pdf.svg) no-repeat;
  background-size: contain;
  width: 15px;
  height: 20px;
}

@media screen and (min-width: 769px) {
  .download-btn:hover {
    background-color: #656565;
    transition: background-color 0.3s ease;
  }
}
/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: #fff;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header {
    height: 70px;
  }
}

@keyframes fadedown {
0% {
  transform: translateY(-100%);
}
100% {
  transform: translateY(0);
}
}

header .emergency-news {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: var(--oyugiwa-red);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1;
}

header .emergency-news::after {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 8px;
  background: url(../../img/niizaonsen/common/angle.svg) no-repeat;
  background-size: contain;
  width: 6px;
  height: 11px;
}

header .emergency-news.-nolink::after {
  content: none;
}

header.-active .emergency-news {
  transform: translateY(0);
  transition: transform 0.4s ease;
}

header .emergency-news .emergency-text {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

header .sns-box {
  cursor: pointer;
  position: fixed;
  height: 88px;
  top: 250px;
  right: 0;
  display: flex;
  border-radius: 5px 0 0 5px;
  background-color: #fff;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 1px 6px rgba(0, 0, 0, 0.1));
  transform: translateX(calc(100% - 30px)) translateZ(0);
  transition: transform 0.5s ease-out;
}

@media screen and (min-width: 769px) {
  header .sns-box:hover {
    transform: translateX(0) translateZ(0);
    transition: transform 0.5s ease-out;
  }
}

@media screen and (max-width: 768px) {
  header .sns-box {
    top: 165px;
  }
}

header .sns-box.-active {
  transform: translateX(0) translateZ(0);
  transition: transform 0.5s ease-out;
}

header .sns-box .btn {
  width: 30px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--oyugiwa-red);
}

header .sns-box .btn img {
  width: 12px;
}

header .sns-box .wrap {
  display: flex;
  align-items: center;
  padding: 0 24px;
}

header .sns-box .wrap .twitter,
header .sns-box .wrap .instagram {
  width: 40px;
  margin-right: 20px;
}

header .sns-box .wrap .line {
  width: 90px;
}

header .inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-40px);
  transition: transform 0.4s ease;
}

header .inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

header.-active .inner {
  transform: translateY(0);
  transition: transform 0.4s ease;
}

header .logo {
  position: relative;
  width: 84px;
  margin: 22px 0 0 28px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  header .logo {
    width: 81px;
    margin: 20px 0 0 20px;
  }
}

header .circle {
  position: absolute;
  transform: translateX(-50%);
  top: -18px;
  left: 50%;
  width: 170px;
  height: 170px;
}

@media screen and (max-width: 768px) {
  header .circle {
    top: 0;
    left: 50%;
    width: 100px;
    height: 100px;
  }
}

header .circle-bg {
  position: relative;
  width: 100%;
  height: 100%;
}

header .circle-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  -moz-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  -ms-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1));
  transform: translateZ(0);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  header .circle-bg::before {
    width: 100px;
    height: 100px;
  }
}

header .circle-logo {
  position: absolute;
  transform: translateX(-50%);
  top: 30px;
  left: 50%;
  width: 104px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  header .circle-logo {
    top: 20px;
    width: 65px;
  }
}

header .menu-btn {
  cursor: pointer;
  position: relative;
  width: 38px;
  margin: 14px 21px 0 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  header .menu-btn {
    width: 34px;
    margin: 12px 18px 0 0;
  }
}

header .menu-bar {
  margin-bottom: 3px;
  transition: transform 0.3s ease;
}

@media screen and (min-width: 769px) {
  header .menu-btn:hover .menu-bar {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
  }
}

@media screen and (max-width: 768px) {
  header .menu-bar {
    margin-bottom: 2px;
  }
}

header .menu-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #F3EBEA;
  visibility: hidden;
  opacity: 0.00001;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 20;
}

header .menu-box.-active {
  visibility: visible;
  opacity: 1;
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

/*Google Chrome、Safariへの対応*/
 header .menu-box.-active::-webkit-scrollbar{
  display: none;
}

header .menu-box .active-head {
  position: fixed;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  background-color: #F3EBEA;
}

header .menu-box .circle-bg::before {
  background-color: #F3EBEA;
  -webkit-filter: initial;
  -moz-filter: initial;
  -ms-filter: initial;
  filter: initial;
}

header .menu-box .close-btn {
  cursor: pointer;
  width: 80px;
  height: 80px;
  
}

header .menu-box .close-btn .menu-close {
  width: 26px;
  margin: 18px auto 0;
  transition: transform 0.4s ease;
}

@media screen and (min-width: 769px) {
  header .menu-box .close-btn:hover .menu-close {
    transform: scale(0.8);
    transition: transform 0.4s ease;
  }
}

header .menu-box .close-btn .menu-text {
  width: 40px;
  margin: 8px auto 0;
}

header .menu-box .menu-nav {
  padding-top: 80px;
  margin-top: auto;
}

header .menu-box .nav-list {
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: calc(105px * 3 + 177px);
  margin: 0 auto;
  padding: 100px 20px 13px;
}

@media screen and (max-width: 768px) {
  header .menu-box .nav-list {
    max-width: 520px;
    width: 80.534%;
    height: auto;
    padding: 40px 0 0;
  }
}

header .menu-box .nav-list .item {
  height: 105px;
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  header .menu-box .nav-list .item {
    height: auto;
    margin-bottom: 33px;
  }
}

header .menu-box .nav-list .item.-toplink {
  min-width: 160px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  header .menu-box .nav-list .item.-toplink {
    min-width: initial;
  }
}

header .menu-box .nav-list .item:nth-child(4) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  header .menu-box .nav-list .item:nth-child(4) {
    margin-bottom: 33px;
  }
}

header .menu-box .nav-list .item .link {
  display: flex;
  align-items: center;
}

header .menu-box .nav-list .item .link .image {
  width: 140px;
  overflow: hidden;
  border-radius: 15px;
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  header .menu-box .nav-list .item .link .image {
    width: calc((140 - 110) * ((100vw - 769px) / (1280 - 769)) + 110px);
  }
}

@media screen and (min-width: 769px) {
  header .menu-box .nav-list .item .link .image img {
    transition: transform 0.3s ease;
  }
  header .menu-box .nav-list .item .link:hover .image img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
}

header .menu-box .nav-list .item .link-page {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--oyugiwa-red);
  padding-left: 20px;
}

@media screen and (max-width: 1280px) {
  header .menu-box .nav-list .item .link-page {
    font-size: calc((24 - 18) * ((100vw - 769px) / (1280 - 769)) + 18px);
  }
}

@media screen and (max-width: 768px) {
  header .menu-box .nav-list .item .link-page {
    font-size: 2.4rem;
    padding-left: 0;
  }
}


header .menu-box .menu-bottom {
  width: 100%;
  justify-content: space-between;
  background-color: #fff;
  margin-top: auto;
}

header .menu-box .menu-bottom .wave {
  width: 100%;
}

header .menu-box .menu-bottom .menu-footer {
  max-width: 1152px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  color: var(--oyugiwa-red);
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  header .menu-box .menu-bottom .menu-footer {
    flex-direction: column;
    height: 152px;
    padding: 30px 20px 21px;
    text-align: center;
  }
}

header .menu-box .menu-bottom .menu-footer .link {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

header .menu-box .menu-bottom .menu-footer .link::after {
  content: '';
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: -15px;
  width: 7px;
  height: 12px;
  background: url(../../img/niizaonsen/common/menu-angle.svg) no-repeat;
  background-size: cover;
}

header .menu-box .menu-bottom .menu-footer .copyright {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ sns ↓↓↓ */
.-under .sns {
  position: relative;
  background-color: var(--oyugiwa-bg);
}

.-under .sns::before {
  content: '';
  position: absolute;
  top: calc(-5.079vw + 1px);
  left: 0;
  width: 100%;
  height: 5.079vw;
  background: url(../../img/niizaonsen/common/sns-wave.svg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .-under .sns::before {
    height: 13.334vw;
    top: calc(-13.3334vw + 1px);
    background: url(../../img/niizaonsen/common/sns-wave_sp.svg) no-repeat;
    background-size: cover;
  }
}


.-under .sns .title-group .title {
  font-size: 2.4rem;
}

.-under .sns .container .inner {
  padding: 0 20px 5vw;
}

@media screen and (max-width: 768px) {
  .-under .sns .container .inner {
    max-width: 520px;
    width: 80.534%;
    padding: 0 0 10.6667vw;
    margin: 0 auto;
 }
}


.-under .sns .container .sns-group {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.-under .sns .container .sns-group a {
  min-width: 32px;
  height: 32px;
  margin-right: 24px;
}

.-under .sns .container .sns-group .line {
  min-width: 103px;
  margin-right: 0;
}

@media screen and (min-width: 769px) {
  .-under .sns .container .sns-group a:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
  }
  .-under .sns .container .sns-group a img {
    transition: transform 0.3s ease;
  }
}
/* ↑↑↑ sns ↑↑↑ */