@charset "UTF-8";
/* color */
/* フォント */
/* 段落 */
/* mixin */
@media screen and (max-width: 1119px) {
  ._sp {
    display: none;
  }
}
html,
.root {
  font-size: 16px;
}
@media screen and (max-width: 320px) {
  html,
  .root {
    font-size: 12px;
  }
}

html {
  scroll-behavior: smooth;
}

body,
.article {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: #5e5f6e;
  overflow-x: hidden;
}
@media screen and (min-width: 560px) {
  body,
  .article {
    line-height: 1.8;
  }
}

h1,
.h1 {
  font-size: 7vw;
  line-height: 1.2;
  margin-top: 1.8125rem;
  margin-bottom: 3.625rem;
}
@media screen and (min-width: 560px) {
  h1,
  .h1 {
    font-size: 5vw;
  }
}
@media screen and (min-width: 960px) {
  h1,
  .h1 {
    font-size: 2.8125rem;
  }
}

h2,
.h2 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 1.8125rem;
  margin-bottom: 1.8125rem;
}
@media screen and (min-width: 960px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-top: 1.8125rem;
  margin-bottom: 0rem;
}
@media screen and (min-width: 1125px) {
  h3,
  .h3 {
    font-size: 1.4375rem;
  }
}

h4,
.h4 {
  font-size: 1rem;
  margin-top: 1.8125rem;
  margin-bottom: 0rem;
}

h5,
.h5 {
  font-size: 1rem;
  margin-top: 1.8125rem;
  margin-bottom: 0rem;
}

p,
ul,
ol,
dl,
pre,
table,
blockquote {
  margin-top: 0rem;
  margin-bottom: 1.8125rem;
}

ul ul,
ol ol,
dl dl,
ul ol,
ul dl,
ol ul,
ol dl,
dl ul,
dl ol {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

li > ul,
li > ol {
  margin-left: 2rem;
}

img {
  max-width: 100%;
}

._atte {
  color: #bb0000;
}

a {
  transition: 300ms;
}
@media screen and (min-width: 960px) {
  a:hover {
    text-decoration: underline;
  }
}

.btn {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #2696c3;
  color: #ffffff;
  text-align: center;
}
.btn._bus {
  background-color: #eb91bb;
}
.btn._nagano {
  background-color: #42ab89;
}

.btn2 {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 0.5rem 1rem;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #ffffff;
  color: #2696c3;
  text-align: center;
}

.gelende-link {
  display: block;
  width: 200px;
  margin-top: 1em;
  transform: translate(0, 0);
  transition: transform 0.2s;
}
.gelende-link:hover {
  transform: translate(0, -5px);
}

.header {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width: 1125px) {
  .header {
    position: relative;
  }
}
.header-img {
  width: 30vw;
  max-width: 250px;
}
.header-img img {
  height: 50px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0 1rem;
}
@media screen and (min-width: 1125px) {
  .header-inner {
    position: fixed;
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    background-color: rgba(0, 0, 0, 0.4);
  }
}

.nav-hidden {
  display: none;
}
.nav-open {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 0;
  z-index: 3;
  /* 重なり順を一番上にする */
  background-color: #2696c3;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
}
.nav-open span,
.nav-open span::before,
.nav-open span::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  transition: 0.5s;
  position: absolute;
}
.nav-open span:before {
  bottom: 8px;
}
.nav-open span:after {
  top: 8px;
}
@media screen and (min-width: 1125px) {
  .nav-open {
    display: none;
  }
}
.nav-content {
  width: 100%;
  height: 100%;
  padding: 5rem 2rem 2rem 2rem;
  position: fixed;
  top: 0;
  left: 100%;
  /* メニューを画面の外に飛ばす */
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
}
@media screen and (min-width: 1125px) {
  .nav-content {
    position: relative;
    height: 100px;
    padding: 1rem;
    left: 0;
    background: none;
  }
}
.nav {
  /* アイコンがクリックされたら真ん中の線を透明にする */
}
.nav #drawer_input:checked ~ .nav-open span {
  background: rgba(255, 255, 255, 0);
}
.nav {
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
}
.nav #drawer_input:checked ~ .nav-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.nav #drawer_input:checked ~ .nav-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
.nav #drawer_input:checked ~ .nav-content {
  left: 0;
  /* メニューを画面に入れる */
}
.nav-list {
  color: #ffffff;
}
@media screen and (min-width: 1125px) {
  .nav-list {
    display: flex;
    justify-content: flex-end;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    align-items: center;
  }
}
.nav-item > .nav-list {
  margin-left: 0;
}
.nav-item + .nav-item {
  margin-top: 1.5rem;
}
.nav-item._green {
  border-radius: 5px;
  background: #70b526;
  font-size: 80%;
}
.nav-item._green a {
  display: block;
  padding: 1em;
}
@media screen and (min-width: 1125px) {
  .nav-item._green a {
    padding: 0.5em 1em;
  }
}
.nav-item._green img {
  height: 16px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.nav-item._winter {
  border-radius: 5px;
  background: #2696c3;
  font-size: 80%;
}
.nav-item._winter a {
  display: block;
  padding: 1em;
}
@media screen and (min-width: 1125px) {
  .nav-item._winter a {
    padding: 0.5em 1em;
  }
}
.nav-item._winter img {
  height: 16px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.nav-item._howto {
  margin-top: 5rem;
}
@media screen and (min-width: 1125px) {
  .nav-item._howto .nav-list {
    display: block;
  }
}
.nav-item._mypage {
  margin-top: 5rem;
  text-align: center;
}
.nav-item._mypage a.btn {
  background-color: #ffffff;
  color: #5e5f6e;
}
@media screen and (min-width: 960px) {
  .nav-item._mypage span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.nav-item a {
  color: #ffffff;
}
@media screen and (min-width: 1125px) {
  .nav-item + .nav-item {
    margin-top: 0;
  }
}

.accordion-detail {
  background-color: #e4eeff;
}
.accordion-detail:not([open]) {
  margin-bottom: 1rem;
}
.accordion-detail[open] .accordion-summary::after {
  transform: rotate(225deg);
}
.accordion-detail[open] .accordion-txt {
  transform: none;
  opacity: 1;
}
.accordion-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em;
  border-radius: 5px;
  background-color: #2696c3;
  color: #fff;
  cursor: pointer;
}
.accordion-summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.accordion-summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
  transition: transform 0.3s;
}
.accordion-txt {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em;
  transition: transform 0.5s, opacity 0.5s;
}

.modal-wrap {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 10px;
}
.modal-wrap a {
  text-decoration: none;
}
.modal-wrap:not(:target) {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-wrap:target {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-wrap::after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  vertical-align: middle;
  content: "";
}
.modal-window {
  box-sizing: border-box;
  display: inline-block;
  z-index: 3;
  position: absolute;
  inset: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 90%;
  max-width: 900px;
  padding: 30px 1rem 15px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}
.modal-content {
  max-height: 80vh;
  overflow-y: auto;
}
.modal-overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
}
.modal-close {
  z-index: 4;
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  color: #95979c !important;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
}
.modal-close:hover {
  color: #2b2e38 !important;
}

.tab {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2px;
  column-gap: 4px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.tab > label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: 0.7em 0.8em 0.5em;
  border-radius: 5px 5px 0 0;
  background-color: #e9f0f6;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  line-height: 1.2;
}
.tab > label span {
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .tab > label {
    font-size: 1rem;
  }
}
.tab > label > input {
  display: none;
}
.tab label:has(:checked) {
  background-color: #2696c3;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
.tab label:has(:checked) + .tab-content {
  display: block;
}
.tab-content {
  width: 100%;
  display: none;
}

.main {
  max-width: 1080px;
  margin: auto;
  padding: 0 1rem 80px;
}
@media screen and (min-width: 1125px) {
  .main {
    padding: 0 0 80px;
  }
}
.main-img {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 50vh;
  z-index: 0;
  background-image: url(/img/hero_travel_top_sp.webp);
}
@media screen and (min-width: 960px) {
  .main-img {
    background-image: url(/img/hero_travel_top_pc.webp);
  }
}
.main-img {
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 560px) {
  .main-img {
    height: 500px;
  }
}
.main-img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.main-img._green {
  background-image: url(/img/hero_green_top_sp.webp);
}
@media screen and (min-width: 960px) {
  .main-img._green {
    background-image: url(/img/hero_green_top_pc.webp);
  }
}
.main-img._winter {
  background-image: url(/img/hero_top_sp.webp);
}
@media screen and (min-width: 960px) {
  .main-img._winter {
    background-image: url(/img/hero_top_pc.webp);
  }
}
.main-img._nagano {
  background-image: url(/img/hero_nagano_sp.webp);
}
@media screen and (min-width: 960px) {
  .main-img._nagano {
    background-image: url(/img/hero_nagano_pc.webp);
  }
}
.main-nagano-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 30px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  line-height: 1;
  font-size: clamp(16px, 5.5vw, 25px);
  overflow: hidden;
}
.main-nagano-wrap span {
  font-size: 80%;
}
.main-nagano-tit1 {
  margin: 0;
  font-size: clamp(40px, 9vw, 70px);
  line-height: 1;
}
.main-nagano-txt1 {
  position: relative;
  width: fit-content;
  padding: 0.5em 1em;
  margin: 0 auto 18px;
  border: 2px solid #2696c3;
  font-size: clamp(13px, 3.2vw, 25px);
  text-shadow: none;
  color: #2696c3;
  background-color: #ffffff;
}
.main-nagano-txt1:before, .main-nagano-txt1:after {
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}
.main-nagano-txt1:before {
  top: 100%;
  margin-left: -10px;
  border-color: transparent;
  border-top-color: #2696c3;
  border-right-color: #2696c3;
  border-width: 7px;
}
.main-nagano-txt2 {
  margin-bottom: 10px;
}
.main-nagano-txt3 {
  margin-top: 20px;
  padding: 7.5px 0;
  transform: rotate(-4deg);
  font-size: clamp(13px, 4.3vw, 30px);
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.main-tit1 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 1080px;
  padding: 0 1em;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(1.563rem, 0.694rem + 4.35vw, 3.75rem);
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}
@media screen and (min-width: 1125px) {
  .main-tit1 {
    top: calc(50% + 58px);
  }
}
.main-tit1 span.title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 1.5em;
  margin: 0 auto 10px auto;
  background-color: #2696c3;
  -webkit-clip-path: polygon(0px 100%, 95% 100%, 100% 0, 5% 0);
  clip-path: polygon(0px 100%, 95% 100%, 100% 0, 5% 0);
  font-size: 0.5em;
  text-shadow: initial;
}
.main-tit1 span.subtitle {
  font-size: 60%;
  display: inline-block;
}
.main-tit1 b {
  position: relative;
  display: grid;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 70%;
}
.main-tit1 b::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 100%;
  background-color: #ffffff;
  transform: rotate(-25deg);
  position: absolute;
  left: -0.5em;
}
.main-tit1 b::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 100%;
  background-color: #ffffff;
  transform: rotate(25deg);
  position: absolute;
  right: -0.5em;
}

.searchbox {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2px;
  column-gap: 4px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: -30px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 15px -5px #5e5f6e;
}
.searchbox > label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: 0.7em 0.8em 0.5em;
  border-radius: 5px 5px 0 0;
  background-color: #e9f0f6;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  line-height: 1.2;
}
.searchbox > label span {
  display: inline-block;
}
@media screen and (min-width: 960px) {
  .searchbox > label {
    font-size: 1rem;
  }
}
.searchbox > label > input {
  display: none;
}
.searchbox label:has(:checked) {
  background-color: #2696c3;
  border-color: #2589d0 #f0f0f0 #fff;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
.searchbox label:has(:checked) + .search {
  display: block;
}

.search {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  border-radius: 0 0 10px 10px;
  background-color: #2696c3;
}
.search._green {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 1em;
  margin: -30px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 15px -5px #5e5f6e;
  display: block;
  margin-top: 80px;
  background-color: #ffffff;
}
.search-tit2 {
  margin: 0;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
}
.search-tit2._green {
  color: #2696c3;
}
.search-list {
  display: flex;
  -moz-column-gap: 2em;
  column-gap: 2em;
  justify-content: center;
  margin-top: 0.5em;
  color: #ffffff;
  font-weight: bold;
}
.search-item {
  position: relative;
  padding: 0 0.5em;
  border-radius: 5px;
}
.search-item:not(:last-of-type)::after {
  content: "＋";
  display: inline-block;
  position: absolute;
  margin: 0 1em;
  color: #ffffff;
  font-weight: bold;
}
.search-item._bus {
  background-color: #1cbdb4;
}
.search-item._lift {
  background-color: #d3d126;
}
.search-item._stay {
  background-color: #eb91bb;
}
.search-item._kuro:not(:last-of-type)::after {
  color: #5e5f6e;
}
.search-form {
  display: grid;
  -moz-column-gap: 1em;
  column-gap: 1em;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 960px) {
  .search-form {
    grid-auto-flow: column;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-template-rows: auto 1fr;
  }
}
.search-form {
  padding: 1em;
  margin-top: 1rem;
  background-color: #ffffff;
  border-radius: 5px;
}
.search-form._oneday {
  grid-template-columns: 1fr;
}
.search label {
  font-size: 80%;
  font-weight: bold;
}
.search input,
.search select {
  width: 100%;
  margin-bottom: 1rem;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 960px) {
  .search input,
  .search select {
    margin-bottom: 0;
  }
}
.search input {
  grid-row: 2;
  grid-column: 1;
}
.search-plan, .search-meal {
  grid-column: 1/-1;
}
@media screen and (min-width: 960px) {
  .search-plan, .search-meal {
    grid-column: initial;
  }
}
.search button {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  grid-column: 1/-1;
}
@media screen and (min-width: 960px) {
  .search button {
    grid-column: initial;
    grid-row: 2;
  }
}

.ui-datepicker-calendar .holiday a {
  background-color: #ffc1c1;
}
.ui-datepicker-calendar .saturday a {
  background-color: #c1e0ff;
}

.sche {
  margin-top: 1em;
}
.sche span.marker {
  background: linear-gradient(transparent 50%, #d3d126 50%);
  padding-bottom: 0.3em;
  font-weight: bold;
}
.sche summary {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  font-weight: bold;
  cursor: pointer;
  color: #ffffff;
}
.sche summary::-webkit-details-marker {
  display: none;
}
.sche summary::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-25%) rotate(45deg);
  transition: transform 0.3s;
}
.sche[open] summary::after {
  transform: rotate(225deg);
}
.sche-table {
  width: 100%;
  font-size: 14px;
  background-color: #ffffff;
}
.sche-ttit {
  padding: 0.5em;
  text-align: center;
  background-color: #f1f1f1;
}
.sche-ttit:not(:last-of-type) {
  white-space: nowrap;
  border-right: 1px solid #cccccc;
}
.sche-tdata {
  padding: 0.5em;
  border-top: 1px solid #cccccc;
}
.sche-tdata:not(:last-of-type) {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border-right: 1px solid #cccccc;
}
.sche-list {
  margin: 0;
}
.sche-item:not(:first-of-type):before {
  content: "↓";
  display: block;
}
.sche-txt {
  margin: 0;
}
.sche ._br {
  margin-top: 1em;
}

.ui-datepicker {
  z-index: 2 !important;
  width: 100%;
  max-width: 17em;
}
.ui-datepicker-current {
  display: none;
}

.naganobanner {
  text-align: center;
  width: 100vw;
  padding: 80px 1rem;
  margin: 80px calc(50% - 50vw) 0;
  background-color: #f1f1f1;
}
.naganobanner-tit2 {
  margin-top: 0;
  font-weight: bold;
}

.catch {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 0;
  background-image: linear-gradient(45deg, rgb(65, 164, 253), rgb(70, 211, 131));
}
.catch-inner {
  max-width: calc(1330px + 2rem);
  margin: 0 auto;
  padding: 3rem 1rem 0;
  background: url(/img/catch.webp) no-repeat;
  background-size: auto 80%;
  background-position: calc(50% + 13rem) 6rem;
}
@media screen and (min-width: 560px) {
  .catch-inner {
    background-size: auto 110%;
    background-position: calc(50% + 17rem) 1rem;
  }
}
.catch-tit2 {
  margin-top: 0;
  font-size: clamp(1.25rem, 0.966rem + 2.27vw, 2.5rem);
  font-weight: bold;
  color: #ffffff;
}
.catch span {
  display: inline-block;
}
.catch-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-indent: -1em;
  margin-left: 1em;
  font-size: clamp(1.125rem, 0.728rem + 1.99vw, 2rem);
  font-weight: bold;
  line-height: 1.5;
  color: #ffffff;
}
.catch-item span {
  display: inline;
  background: linear-gradient(transparent 50%, #eb91bb 0%);
}
.catch-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 0;
}

.catch2 {
  margin-top: 80px;
  text-align: center;
  font-weight: bold;
}
.catch2 span {
  display: inline-block;
}
.catch2-tit {
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 560px) {
  .catch2-tit {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.catch2-list {
  font-size: clamp(1.125rem, 0.728rem + 1.99vw, 2rem);
  line-height: 1.5;
  display: grid;
  row-gap: 1em;
  max-width: 500px;
  margin: 0 auto;
}
.catch2-item {
  padding: 0.5em 0;
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  border-radius: 50px;
  color: #ffffff;
  font-size: min(3.5vw, 16px);
}
.catch2-txt {
  background: linear-gradient(to right, #00a1e5, #00ffbc);
  background: -webkit-linear-gradient(to right, #00a1e5, #00ffbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.point {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em 5%;
}
.point-box {
  width: max(30%, 310px);
  text-align: center;
}
.point-wrap {
  position: relative;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
}
.point-wrap._blue {
  background-color: #def3fe;
}
.point-wrap._orange {
  background-color: #fefadc;
}
.point-wrap._green {
  background-color: #dbfbec;
}
.point-inner {
  position: absolute;
  top: 50%;
  display: grid;
  row-gap: 1rem;
  padding: 1em;
  transform: translateY(-50%);
}
.point-tit2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.3rem;
  font-weight: bold;
}
.point-tit2._blue {
  color: #2696c3;
}
.point-tit2._orange {
  color: #ff8f00;
}
.point-tit2._green {
  color: #70b526;
}
.point-txt {
  margin: 0;
}
.point-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.point a.btn._blue {
  background-color: #2696c3;
}
.point a.btn._orange {
  background-color: #ff8f00;
}
.point a.btn._green {
  background-color: #70b526;
}

.sec {
  margin-top: 80px;
  scroll-margin-top: calc(116px + 1rem);
}
.sec ._note {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
  display: inline-block;
}
.sec ._nowrap {
  white-space: nowrap;
}
.sec ._right {
  text-align: right;
}
.sec._narrow {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.sec a.txt {
  text-decoration: underline;
  color: #4169e1;
}
.sec a.txt:hover {
  text-decoration: none;
}
.sec a._tel {
  font-weight: bold;
  font-size: 1.3rem;
}
.sec-wrap {
  display: flex;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  flex-wrap: wrap;
}
.sec-wrap._tokuten {
  row-gap: 3rem;
}
.sec-wrap > * {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .sec-wrap > * {
    width: calc(50% - 1rem);
  }
}
.sec-tit2 {
  position: relative;
  padding-bottom: 2.5rem;
  text-align: center;
  font-weight: bold;
}
.sec-tit2::before {
  content: attr(data-en);
  display: block;
  color: #2696c3;
  font-size: 20px;
  font-size: 1.25rem;
  font-style: italic;
  text-transform: uppercase;
}
.sec-tit2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 30px;
  background-color: #2696c3;
}
.sec-tit2 span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  color: #2696c3;
}
.sec-tit3 {
  font-weight: bold;
}
.sec-list._note {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8125;
}
@media screen and (min-width: 560px) {
  .sec-list._note {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.sec-list._list .sec-item {
  margin-left: 1.5rem;
  list-style: initial;
}
.sec-list._list .sec-item._ol {
  list-style: auto;
}
.sec-list._tyu .sec-item {
  margin-left: 2rem;
  text-indent: -2rem;
  list-style: none;
}
@media screen and (min-width: 560px) {
  .sec-list._tyu .sec-item {
    margin-left: 2.3rem;
    text-indent: -2.3rem;
  }
}
.sec-list._ol {
  margin-left: 2rem;
}
.sec-list._ol .sec-item {
  list-style-type: decimal;
}
.sec-list._iroha .sec-item {
  list-style-type: katakana-iroha;
}
.sec-def._waku {
  padding: 1rem;
  margin-bottom: 0;
  background-color: #e4eeff;
}
@media screen and (min-width: 960px) {
  .sec-def {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .sec-def._company {
    gap: 3rem 6rem;
  }
}
.sec-data + .sec-dtit {
  margin-top: 1.5rem;
}
@media screen and (min-width: 960px) {
  .sec-data + .sec-dtit {
    margin-top: 0;
  }
}
.sec-data span {
  display: inline-block;
}
.sec-table {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8125;
}
@media screen and (min-width: 560px) {
  .sec-table {
    font-size: initial;
  }
}
.sec-ttit, .sec-tdata {
  padding: 0.5rem;
  border: 1px solid #cccccc;
}
.sec-ttit {
  text-align: center;
  vertical-align: middle;
  background-color: #e4eeff;
}
.sec-txt._atte {
  padding: 1rem;
  background-color: #ffdcdc;
}
.sec-txt._center {
  text-align: center;
}
.sec-txt strong {
  color: #2696c3;
}
.sec-img {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.sec-btn {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.howticket-wrap {
  padding: 1em;
  background-color: #e4ffe7;
}
.howticket-wrap._winter {
  margin-top: 2em;
  background-color: #e4eeff;
}
.howticket-tit3 {
  margin: 0 0 0.5em;
  font-weight: bold;
  font-size: 1rem;
  color: #70b526;
}
.howticket-tit3._winter {
  color: #2696c3;
}
.howticket-def {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
}
.howticket-data + dt {
  margin-top: 1em;
}
@media screen and (min-width: 560px) {
  .howticket-def {
    grid-template-columns: 22ch 1fr;
    row-gap: 1em;
  }
  .howticket-dtit {
    grid-column: 1;
  }
  .howticket-data {
    grid-column: 2;
  }
  .howticket-data + dt {
    margin-top: 0;
  }
}

.hotel-tit3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #2696c3;
  display: flex;
  justify-content: space-between;
}
.hotel-tit3 span {
  color: #5e5f6e;
  font-size: 70%;
}
.hotel-tit4 {
  text-align: center;
  font-weight: bold;
  font-size: 120%;
  line-height: 1;
}
.hotel-tit4:not(:first-of-type) {
  margin-top: 3em;
}
.hotel-img {
  margin-bottom: 0;
}
.hotel-img img {
  width: 100%;
  height: auto;
}
.hotel-list {
  display: grid;
  gap: 3em 4em;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.hotel-item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;
}
.hotel-txt {
  margin-bottom: 0;
}
.hotel-wrap {
  padding: 1em 0.5em;
  background-color: #e4eeff;
  display: grid;
}
.hotel-btn {
  margin-top: 1em;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0.5em;
  align-items: baseline;
}
.hotel-btn_txt {
  margin-right: 1em;
  color: #2696c3;
}

.icon-list {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #eb91bb;
}
.icon-list img {
  width: auto;
  height: 24px;
}
.icon-item {
  display: flex;
  align-items: center;
  padding: 0 3px;
  border: 1px solid #eb91bb;
  border-radius: 5px;
  line-height: 0;
  background-color: #ffffff;
}

@media screen and (min-width: 560px) {
  .flow-list {
    display: grid;
    grid-template-columns: repeat(4, auto);
    row-gap: 2rem;
  }
}
@media screen and (min-width: 960px) {
  .flow-list {
    grid-template-columns: repeat(8, auto);
  }
}
.flow-item {
  position: relative;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  padding: 0.5rem;
  border: 1px solid #cccccc;
}
@media screen and (min-width: 560px) {
  .flow-item {
    display: block;
  }
}
@media screen and (min-width: 960px) {
  .flow-item {
    width: 208px;
  }
}
.flow-img {
  grid-row: 1/3;
  margin: -0.5rem 0 -0.5rem -0.5rem;
}
@media screen and (min-width: 560px) {
  .flow-img {
    margin: -0.5rem -0.5rem 0 -0.5rem;
  }
}
.flow-tit3 {
  margin-top: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
.flow-txt._arrow {
  width: 0;
  height: 0;
  margin: 1rem auto;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #cccccc transparent transparent transparent;
}
@media screen and (min-width: 560px) {
  .flow-txt._arrow {
    margin: 0 1rem;
    border-width: 30px 0 30px 30px;
    border-color: transparent transparent transparent #cccccc;
    align-self: center;
  }
}

.info {
  display: grid;
  gap: 2rem;
}
.info-tit2 {
  margin: 0;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 960px) {
  .info {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 1rem;
  }
  .info-tit2 {
    grid-column: 1/3;
  }
  .info-iframe {
    grid-column: 1/-1;
  }
}

.tab {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
.tab > label {
  flex: 1 1;
  order: -1;
  opacity: 0.5;
  min-width: 70px;
  padding: 0.6em 1em;
  border-radius: 5px 5px 0 0;
  background-color: #2696c3;
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
}
.tab > label:hover {
  opacity: 0.8;
}
.tab span {
  display: inline-block;
}
.tab input {
  display: none;
}
.tab > .op {
  display: none;
  width: 100%;
  background-color: #fff;
}
.tab label:has(:checked) {
  opacity: 1;
}
.tab label:has(:checked) + .op {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
}

.op-box {
  padding: 0.5rem 1rem;
  border: 1px solid #cccccc;
}
.op-tit3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  margin: -20px 0 1rem;
  font-weight: bold;
  background-color: #ffffff;
}
.op-tit3 span {
  font-weight: normal;
  font-size: 80%;
}
.op-wrap {
  margin-top: 3rem;
}
.op-wrap._lift {
  padding: 3em 1em 1em 1em;
  margin-top: 0;
  border: 1px solid #cccccc;
}
.op-box {
  width: 100%;
}
.op-box._margintop {
  margin-top: 3rem;
}
@media screen and (min-width: 700px) {
  .op-box._lift {
    width: calc(50% - 1em);
  }
}
.op-def {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  margin-bottom: 0;
}
.op-def + .op-def {
  margin-top: 1.5rem;
}
.op-dtit {
  font-weight: normal;
}
.op-data {
  font-weight: bold;
}
.op-list._price {
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  align-items: center;
}
.op-list._price + .op-list._price {
  margin-top: 1em;
}
.op-item {
  margin-left: 1rem;
  text-indent: -1rem;
}
.op-item strong {
  color: #bb0000;
}
.op-item._cale {
  margin-left: 0;
}
.op-btn {
  width: fit-content;
  margin: 2em auto;
}

.sumop {
  margin-top: 80px;
  scroll-margin-top: calc(116px + 1rem);
}
.sumop:nth-of-type(even) {
  scroll-margin-top: 20px;
  width: 100vw;
  padding: 80px 1rem;
  margin: 0 calc(50% - 50vw);
  background-color: #e4eeff;
  position: relative;
}
.sumop:nth-of-type(even) > * {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
.sumop ._note {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
  display: inline-block;
}
.sumop-map iframe {
  height: 300px;
}

.opticket {
  scroll-margin-top: calc(116px + 1rem);
  display: grid;
}
@media screen and (min-width: 960px) {
  .opticket {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
  }
}
.opticket-wrap {
  padding: 1em 0.5em;
  margin-top: -40px;
  background-color: rgba(255, 255, 255, 0.9);
}
.opticket-wrap._even {
  background-color: rgba(228, 238, 255, 0.9);
}
@media screen and (min-width: 960px) {
  .opticket-wrap {
    padding: 0;
    margin-top: 0;
  }
}
.opticket-tit3 {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-bottom: 1rem;
  color: #2696c3;
  font-weight: bold;
}
.opticket-tit3::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 0 90px 60px;
  border-color: transparent transparent #a3d0e4 transparent;
  position: absolute;
  z-index: -1;
  transform: rotate(30deg);
  top: -50px;
  left: 20px;
}
.opticket-def {
  display: grid;
}
@media screen and (min-width: 960px) {
  .opticket-def {
    grid-template-columns: 12em 1fr;
    -moz-column-gap: 2px;
    row-gap: 2px;
  }
}
.opticket-def {
  margin-bottom: 0.5em;
}
.opticket-dtit {
  padding: 1em;
  background-color: #2696c3;
  color: #ffffff;
  font-weight: normal;
}
.opticket-data {
  padding: 1em;
  background-color: #f1f1f1;
}
.opticket-data._price {
  font-weight: bold;
}
.opticket-list._ol .opticket-item {
  list-style-type: decimal;
  padding-left: 0;
  text-indent: 0;
}
.opticket-item {
  margin-left: 1em;
  text-indent: -1em;
}
.opticket-pic {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 960px) {
  .opticket-pic {
    width: initial;
    margin: initial;
  }
}
.opticket-pic img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.opticket-pic figcaption {
  font-size: 80%;
  text-align: right;
}
.opticket-txt._center {
  text-align: center;
}

.opintro {
  margin: 2em 0 4em 0;
}
.opintro-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1em 3em;
}
.opintro-wrap + .opintro-wrap {
  margin-top: 80px;
}
.opintro-tit3 {
  position: relative;
  z-index: 0;
  padding: 0.6em 0.4em 0.4em 0.7em;
  margin-top: 0;
  margin-bottom: 1em;
  font-weight: bold;
}
.opintro-tit3::before, .opintro-tit3::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}
.opintro-tit3::before {
  left: 8px;
  top: 8px;
  background: #ddd;
  z-index: -2;
}
.opintro-tit3::after {
  left: 0;
  top: 0;
  border: 2px solid #5e5f6e;
  z-index: -1;
}
.opintro-tit4 {
  font-weight: bold;
}
.opintro-txt a {
  display: flex;
  align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1em 3.5em 1em 1em;
  border: 2px solid #5e5f6e;
}
.opintro-txt a::after {
  content: "";
  position: absolute;
  right: 1em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: 0.5em;
  background-color: #5e5f6e;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
}
.opintro-txt a:hover {
  background-color: #000000;
}
.opintro-txt a:hover::after {
  background-color: #ffffff;
}
.opintro-txt a:hover {
  color: #ffffff;
}
.opintro-txt._note {
  display: block;
  padding: 0.5em;
  font-size: 14px;
  line-height: 1.5;
  background-color: #f1f1f1;
}
.opintro-pic {
  display: grid;
  align-items: flex-end;
}
.opintro-pic:not(:first-of-type) {
  margin-top: 1em;
}
.opintro-pic img {
  grid-area: 1/1;
}
.opintro-pic figcaption {
  grid-area: 1/1;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-align: right;
  font-size: 80%;
  line-height: 1.1;
}
.opintro-pic a {
  grid-area: 1/1;
}
.opintro-pic a + figcaption {
  grid-area: 2;
  margin-bottom: 2em;
  background-color: initial;
  color: #5e5f6e;
}

.yahoosp-box {
  padding: 1em;
  margin-bottom: 4em;
  border: 3px solid #5e5f6e;
}
.yahoosp-tit4 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 120%;
  font-weight: bold;
}
.yahoosp-tit4 span {
  color: #2696c3;
}
.yahoosp-txt span {
  font-weight: bold;
  color: #2696c3;
}
.yahoosp-list {
  margin-left: 1em;
  margin-bottom: 0;
  font-size: 14px;
  text-indent: -1em;
  line-height: 1.5;
}

.ticket {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.ticket-box {
  padding: 0 1em 1.5em;
  margin-top: 50px;
  background-color: #e4ffe7;
  border-radius: 5px;
}
.ticket-img {
  width: 70%;
  margin: -50px auto 0;
}
.ticket-tit3 {
  text-align: center;
  color: #70b526;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.ticket-tit3._happy {
  color: #eb91bb;
}
.ticket-txt {
  margin: 1rem 0 0;
}
.ticket-txt._sub {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
  display: inline-block;
}

.active-wrap {
  margin-top: 80px;
}
.active-tit3 {
  font-weight: bold;
  text-align: center;
}
.active-tit4 {
  color: #2696c3;
}
.active-box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
}
.active-pic {
  display: grid;
  align-items: flex-end;
}
.active-pic img {
  grid-area: 1/1;
}
.active-pic figcaption {
  grid-area: 1/1;
  padding: 0.5em;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  text-align: right;
  font-size: 80%;
  line-height: 1.1;
}
.active-txt {
  padding: 0.5em;
  font-size: 14px;
  background-color: #f1f1f1;
}
.active-note {
  font-size: 12px;
}

.agenda1 {
  margin: 2rem auto 0;
}
.agenda1 span {
  display: inline-block;
}
.agenda1 span.onlypc {
  display: none;
}
@media screen and (min-width: 960px) {
  .agenda1 span.onlypc {
    display: block;
  }
}
.agenda1-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}
.agenda1-item {
  margin: 0 -0.5px;
  text-align: center;
  border-right: 1px solid #5e5f6e;
  border-left: 1px solid #5e5f6e;
  line-height: 1.4;
  font-weight: bold;
  display: grid;
  align-content: space-between;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
.agenda1-item a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
}
.agenda1-item a:hover {
  text-decoration: none;
}
.agenda1-item a:hover .agenda1-arrow {
  transform: translateY(5px);
}
.agenda1-arrow {
  position: relative;
  align-items: center;
  width: 2px;
  height: 16px;
  margin-top: 8px;
  background-color: #5e5f6e;
  transition: transform 0.5s ease;
}
.agenda1-arrow::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #5e5f6e;
  vertical-align: middle;
  content: "";
}

.lift-wrap {
  display: flex;
  overflow-x: auto;
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.lift-table {
  flex: 1;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 960px) {
  .lift-table {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.lift-table caption {
  background-color: #2696c3;
  color: #ffffff;
  text-align: center;
}
.lift-ttit, .lift-tdata {
  padding: 0 0.2rem;
  border: 1px solid #cccccc;
  text-align: center;
}
.lift-ttit {
  font-weight: normal;
  background-color: #e4eeff;
}
.lift-tdata._yellow {
  background-color: #fff690;
}
.lift-tdata._blue {
  background-color: #80baff;
}
.lift-tdata._green {
  background-color: #a2ffc4;
}
.lift-tdata._red {
  background-color: #ffaaaa;
}

.status {
  margin-bottom: 1rem;
}
.status-txt {
  margin: 1rem 0 0 0;
}

.pay {
  display: flex;
  gap: 3rem 2rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 560px) {
  .pay {
    flex-wrap: nowrap;
  }
}
.pay > * {
  width: 100%;
}
.pay-box {
  padding: 0.5rem 1rem;
  border: 1px solid #cccccc;
}
.pay-tit3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  margin: -20px 0 1rem;
  font-weight: bold;
  background-color: #ffffff;
}
.pay-tit3 span {
  font-weight: normal;
  font-size: 80%;
}
.pay-list {
  display: flex;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.pay-item {
  display: flex;
}
.pay-item img {
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 35px;
}

.box-box {
  padding: 0.5rem 1rem;
  border: 1px solid #cccccc;
}
.box-tit3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0.5rem;
  margin: -20px 0 1rem;
  font-weight: bold;
  background-color: #ffffff;
}
.box-tit3 span {
  font-weight: normal;
  font-size: 80%;
}
.box-box._margintop {
  margin-top: 3rem;
}

.nagano-point {
  width: fit-content;
  margin: 0 auto;
}
.nagano-point-def {
  padding: 2em 1em;
  border: 4px solid #2696c3;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2em 1em;
  background-color: #f0f8ff;
}
.nagano-point-dtit {
  position: relative;
  width: fit-content;
  padding: 5px 12px 10px;
  background-color: #2696c3;
  color: #fff;
}
.nagano-point-dtit::after {
  content: "";
  position: absolute;
  top: calc(100% - 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 45px;
  clip-path: polygon(50% 0%, 3% 28%, 100% 28%);
  z-index: 1;
  background-color: #f0f8ff;
  /*背景と同じ色に変更してください*/
}
.nagano-point-data b {
  color: #2696c3;
}
.nagano-btn {
  width: fit-content;
  margin: 2em auto;
}
.nagano-banner {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 50px 20px;
  background-color: #e4eeff;
}
.nagano-banner-tit2 {
  margin: 0 0 5px;
  text-align: center;
  color: #2696c3;
  font-weight: bold;
}
.nagano-banner-pic {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.nagano-plan-tit2 {
  text-align: center;
  width: fit-content;
  margin: 80px auto 1em;
  font-weight: bold;
  font-size: clamp(20px, 6vw, 40px);
  color: #2696c3;
}
.nagano-plan-tit2 span {
  font-size: 80%;
  display: block;
  color: #5e5f6e;
}
.nagano-plan-box {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.nagano-plan-wrap {
  transform: rotate(-5deg);
}
.nagano-plan-tit3 {
  margin: 0;
  font-weight: bold;
  text-align: center;
  text-decoration: underline wavy #2696c3;
  text-underline-offset: 0.3em;
}
.nagano-plan-txt {
  margin-top: 1em;
  grid-column: 1;
  text-align: center;
  font-weight: bold;
}
.nagano-plan img {
  grid-column: 2;
  grid-row: 1;
}
.nagano-plan label {
  font-size: 110%;
}
.nagano-plan-content {
  padding: 1em;
  background-color: #2696c3;
  border-radius: 0 0 5px 5px;
}
.nagano-plan-table {
  width: 100%;
  background-color: #ffffff;
  border-top: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.nagano-plan-table caption {
  text-align: center;
  color: #ffffff;
}
.nagano-plan-ttit, .nagano-plan-tdata {
  padding: 0.5em 1em;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}
@media screen and (min-width: 960px) {
  .nagano-plan-ttit, .nagano-plan-tdata {
    display: table-cell;
  }
}
.nagano-plan-ttit {
  text-align: center;
  vertical-align: middle;
  background-color: #f1f1f1;
}
.nagano-plan-list {
  display: grid;
  margin: 0;
}
.nagano-plan-item {
  font-weight: bold;
}
.nagano-plan-item._access {
  font-weight: normal;
}
.nagano-plan-item._kanko {
  padding: 0.2em 0.5em;
  margin: 1em 0;
  border: 1px solid #cccccc;
  background-color: #e4eeff;
}
.nagano-plan-btn {
  margin: 2em auto 0;
  max-width: 300px;
}
.nagano-hotel {
  margin-top: 80px;
}
.nagano-spot {
  margin-top: 80px;
}
.nagano-spot-box {
  display: grid;
  gap: 30px;
}
@media screen and (min-width: 960px) {
  .nagano-spot-box {
    grid-template-columns: 40% 1fr;
    grid-template-rows: repeat(2, auto);
    align-items: start;
  }
}
.nagano-spot-tit3 {
  position: relative;
  padding: 0.2em 0.5em 0.2em 2.5em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.nagano-spot-tit3:not(:first-of-type) {
  margin-top: 80px;
}
.nagano-spot-tit3::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 0;
  width: 10px;
  height: 100%;
  border-left: 1px solid #2696c3;
  border-right: 1px solid #2696c3;
  transform: skewX(-30deg);
}
.nagano-spot-pic {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.nagano-spot-pic figcaption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: 0.5em;
  text-align: right;
  font-size: small;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}
.nagano-spot-pic._row3 {
  grid-row: 2;
}
.nagano-spot-txt {
  margin-bottom: 0;
}
.nagano-spot-def {
  padding: 1em;
  margin: 0;
  font-size: 80%;
  background-color: #f1f1f1;
}
.nagano-spot-dtit {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
}
.nagano-spot-dtit img {
  width: 20px;
  height: 20px;
}
.nagano-spot-btn {
  margin-top: 1em;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 450px;
}

.inquiry-tit3 {
  text-align: center;
}
.inquiry-txt {
  text-align: center;
}

.sign {
  padding: 0.5rem;
  border: 1px solid #cccccc;
}
.sign-tit {
  text-align: center;
}
.sign-def {
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.sign-dtit {
  text-align: right;
}

@media screen and (min-width: 960px) {
  .pagetop {
    width: 1080px;
    margin: 0 auto;
  }
}
.pagetop a {
  color: #000000;
  position: fixed;
  bottom: 0;
  right: 60px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
  opacity: 0;
  transition: opacity 0.4s ease-in;
  z-index: 2;
}
.pagetop a.fadein {
  opacity: 1;
}
@media screen and (min-width: 1125px) {
  .pagetop a {
    right: calc(50vw - 490px);
  }
}
.pagetop-arrow1 {
  width: 48px;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 50%;
  right: 62px;
}
.pagetop-arrow2 {
  width: 1px;
  height: 12px;
  background: #000000;
  position: absolute;
  top: calc(50% + 1px);
  right: 109px;
  transform: rotate(-130deg);
  transform-origin: top left;
}

.footer {
  position: relative;
  padding: 1rem;
  border-top: 1px solid #cccccc;
  font-size: 12px;
  font-size: 0.75rem;
}
.footer-inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .footer-inner {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto auto;
    grid-auto-flow: column;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footer-tit2 {
  margin: 0;
  font-weight: bold;
}
.footer-tit2 img {
  width: 40vw;
  max-width: 250px;
}
.footer-txt._time {
  margin-bottom: 0;
}
.footer-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 480px;
  margin-top: 40px;
}
@media screen and (min-width: 960px) {
  .footer-list {
    grid-row: 2;
    margin: 0;
  }
}
.footer-item::after {
  content: "│";
}
.footer-cf {
  margin: 40px 0 0 0;
}
@media screen and (min-width: 960px) {
  .footer-cf {
    margin: 0;
    text-align: right;
    grid-row: 4;
    align-self: end;
  }
}

.p-grnop-agenda_list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  margin: 1em calc(50% - 50vw) 0;
}
@media screen and (min-width: 1080px) {
  .p-grnop-agenda_list {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-grnop-agenda_list._onlypc {
  display: none;
}
@media screen and (min-width: 1080px) {
  .p-grnop-agenda_list._onlysp {
    display: none;
  }
  .p-grnop-agenda_list._onlypc {
    display: grid;
  }
}
.p-grnop-agenda_item {
  display: grid;
  padding: 0 0.2em;
  line-height: 1.2;
  font-size: clamp(14px, 2.3vw, 16px);
  text-align: center;
}
.p-grnop-agenda_item:not(:first-of-type) {
  border-left: 1px solid #cccccc;
}
.p-grnop-agenda a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
}
.p-grnop-agenda a:hover {
  text-decoration: none;
}
.p-grnop-agenda a:hover span {
  transform: translateY(5px);
}
.p-grnop-agenda span {
  display: inline-block;
  align-self: end;
  position: relative;
  align-items: center;
  width: 2px;
  height: 16px;
  margin-top: 8px;
  background-color: #5e5f6e;
  transition: transform 0.5s ease;
}
.p-grnop-agenda span::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #5e5f6e;
  vertical-align: middle;
  content: "";
}

.p-grntkt-agenda_list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  margin: 1em calc(50% - 50vw) 0;
}
@media screen and (min-width: 1080px) {
  .p-grntkt-agenda_list {
    max-width: 1080px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-grntkt-agenda_item {
  display: grid;
  padding: 0 0.2em;
  line-height: 1.2;
  font-size: clamp(14px, 2.3vw, 16px);
  text-align: center;
}
.p-grntkt-agenda_item:not(:first-of-type) {
  border-left: 1px solid #cccccc;
}
.p-grntkt-agenda a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
}
.p-grntkt-agenda a:hover {
  text-decoration: none;
}
.p-grntkt-agenda a:hover span {
  transform: translateY(5px);
}
.p-grntkt-agenda span {
  display: inline-block;
  align-self: end;
  position: relative;
  align-items: center;
  width: 2px;
  height: 16px;
  margin-top: 8px;
  background-color: #5e5f6e;
  transition: transform 0.5s ease;
}
.p-grntkt-agenda span::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  border-style: solid;
  border-color: #5e5f6e;
  vertical-align: middle;
  content: "";
}

.p-grntkt-tkt_menus {
  margin-top: 2em;
  padding: 1em;
  background-color: #e4ffe7;
}
.p-grntkt-tkt_menus._happy {
  background-color: #ffdcdc;
}
.p-grntkt-tkt_menu {
  background-color: #ffffff;
  border: 1px solid #70b526;
  font-size: 80%;
}
.p-grntkt-tkt_menu._happy {
  border-color: #eb91bb;
}
.p-grntkt-tkt_tit3 {
  grid-column: 1/-1;
  color: #70b526;
}
.p-grntkt-tkt_tit3._happy {
  color: #eb91bb;
}