body {
  --page-color: var(--common);
  --page-color_light: var(--common_light);
  --page-color_deep: var(--common_deep);
}

.onsen {
  --page-color: var(--onsen);
  --page-color_light: var(--onsen_light);
  --page-color_deep: var(--onsen_deep);
}

.stay {
  --page-color: var(--stay);
  --page-color_light: var(--stay_light);
  --page-color_deep: var(--stay_deep);
}

.eat {
  --page-color: var(--eat);
  --page-color_light: var(--eat_light);
  --page-color_deep: var(--eat_deep);
}

.activity {
  --page-color: var(--activity);
  --page-color_light: var(--activity_light);
  --page-color_deep: var(--activity_deep);
}

/*----------------------------------------top----------------------------------------*/
#top {
  --side: 2em;
  position: relative;
  padding: 0;
  z-index: 1;
}

#top .base,
#top .movie {
  box-shadow: 0px 0px 16px var(--page-color_deep);
}

#top .base {}

#top .base img {
  width: 100%;
  max-height: 100vh;
  aspect-ratio: 16/9;
  object-fit: cover;
}

#top .movie {
  display: block;
  width: 100%;
  max-height: 100vh;
  overflow: hidden;
}

#top .movie video {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

#top .place_logo {
  bottom: 2em;
  left: var(--side);
  z-index: 1;
}

#top .place_logo img {
  width: 75%;
  max-height: 20vw;
}

#top .place_logo h2 {
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  padding: 0.25em 0;
  margin: 0.5em 0;
  overflow: visible;
  z-index: 0;
}

#top .place_logo h2::before {
  content: "";
  position: absolute;
  top: 0%;
  left: calc(-2 * var(--side));
  display: block;
  width: calc(100% + var(--side) * 3);
  height: 100%;
  background: var(--page-color_deep);
  border-radius: 0.25em;
  z-index: -1;
}

#top .place_logo p {
  color: #fff;
  font-weight: 600;
  text-shadow: 2px 2px 4px #333;
}

/* top_map*/
#top .map_top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

#top .map_top .map {
  top: 50%;
  right: -30%;
  width: 60%;
  z-index: 1;
}



/* ---------- map ---------- */
#top .map_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#top .map_box .map {
  top: -20%;
  right: -10%;
  width: 60%;
}

@media screen and (max-width: 1000px) {
  #top .map_box .map {
    top: -25%;
    right: -20%;
  }
}

/* ---------- btn ---------- */
#top .btn {
  bottom: 2em;
  right: var(--side);
}

#top .btn a {
  display: block;
  padding: 0.5em 1em;
  color: #fff;
  background: var(--page-color_deep);
  font-weight: 600;
  border-radius: 0.5em;
}

/* ---------------------------------------- main ---------------------------------------- */
#main {
  --vw: 180vw;
  padding: 0;
  background: var(--common);
}

#main .big_inner {
  padding: var(--section-margin) 0 calc(var(--section-margin) * 4);
  z-index: 0;
}

#main .main {
  height: var(--vw);
  text-align: center;
}

#main .main h2 {}

#main .main p {
  font-weight: 600;
}

#main .main>*:not(:last-child) {
  margin: 0 auto 4em;
}

#main .box {
  --vw-slide: calc(var(--vw) / 4);
  --slide: 10vw;
  width: 40%;
  border-radius: 0.3em;
  overflow: hidden;
  z-index: 2;
}

#main .box:nth-child(2) {
  top: calc(var(--vw-slide) * 1);
  left: 0%;
}

#main .box:nth-child(3) {
  top: calc(var(--vw-slide) * 2 - var(--slide));
  right: 0;
}

#main .box:nth-child(4) {
  top: calc(var(--vw-slide) * 3 - var(--slide) * 2);
  left: 0%;
}

#main .box:nth-child(5) {
  top: calc(var(--vw-slide) * 4 - var(--slide) * 3);
  right: 0;
}

#main .box a {}

#main .box a img {}

#main .box a h3 {
  position: relative;
  color: #fff;
  font-weight: 600;
  padding: 1em 1em 1em 2em;
}

#main .box a h3:before {
  --radius: 0.6em;
  content: "";
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translate(0%, -50%);
  width: var(--radius);
  height: var(--radius);
  border: 2px solid;
  border-radius: 9em;
}

#main .box:nth-child(2) a h3 {
  background: var(--onsen_deep);
}

#main .box:nth-child(3) a h3 {
  background: var(--stay_deep);
}

#main .box:nth-child(4) a h3 {
  background: var(--eat_deep);
}

#main .box:nth-child(5) a h3 {
  background: var(--activity_deep);
}

#main .river {
  width: 10%;
  min-width: 100px;
  height: 120%;
  margin: 0 auto;
  z-index: -2;
}

#main .river img {
  width: 100%;
  height: 100%;
}

#main .img_box {
  width: 40%;
  aspect-ratio: 1/1;
  /* border: 1px solid; */
  z-index: -1;
}

#main .img_box1 {
  top: 3%;
  left: 0%;
}

#main .img_box2 {
  top: 20%;
  right: 0%;
}

#main .img_box3 {
  top: 38%;
  left: 0%;
}

#main .img_box4 {
  top: 55%;
  right: 0%;
}

#main .img_box5 {
  top: 75%;
  left: 0%;
}

#main .img_box6 {
  top: 88%;
  right: 0%;
}

@media screen and (max-width: 1200px) {
  #main .img_box1 {
    top: 3%;
    left: 0%;
  }

  #main .img_box2 {
    top: 18%;
    right: 0%;
  }

  #main .img_box3 {
    top: 35%;
    left: 0%;
  }

  #main .img_box4 {
    top: 51%;
    right: 0%;
  }

  #main .img_box5 {
    top: 70%;
    left: 0%;
  }

  #main .img_box6 {
    top: 82%;
    right: 0%;
  }
}

@media screen and (max-width: 768px) {}

#main .img_box img {
  position: absolute;
  width: 30%;
  top: 0%;
  left: 0%;
}

/* img_box1 */
#main .img_box1 .img1 {
  top: 10%;
  left: 18%;
}

#main .img_box1 .img2 {
  top: 30%;
  left: 38%;
}

#main .img_box1 .img3 {
  top: 60%;
  left: 5%;
}

#main .img_box1 .img4 {
  top: 70%;
  left: 55%;
}

/* img_box2 */
#main .img_box2 .img1 {
  top: 5%;
  left: 20%;
}

#main .img_box2 .img2 {
  top: 15%;
  left: 3%;
}

#main .img_box2 .img3 {
  top: 75%;
  left: 60%;
}

#main .img_box2 .img4 {
  top: 1%;
  left: 50%;
}

#main .img_box2 .img5 {
  top: 35%;
  left: 28%;
}

#main .img_box2 .img6 {
  top: 58%;
  left: 5%;
}

#main .img_box2 .img7 {
  top: 68%;
  left: 33%;
}

/* img_box3 */
#main .img_box3 .img1 {
  top: 10%;
  left: 30%;
}

#main .img_box3 .img2 {
  top: 8%;
  left: 75%;
}

#main .img_box3 .img3 {
  top: 65%;
  left: 61%;
}

#main .img_box3 .img4 {
  top: 9%;
  left: 9%;
}

#main .img_box3 .img5 {
  top: 30%;
  left: 56%;
}

#main .img_box3 .img6 {
  top: 46%;
  left: 19%;
}

/* img_box4 */
#main .img_box4 .img1 {
  top: 36%;
  left: 45%;
}

#main .img_box4 .img2 {
  top: 5%;
  left: 36%;
}

#main .img_box4 .img3 {
  top: 40%;
  left: 0%;
}

#main .img_box4 .img4 {
  top: 66%;
  left: 50%;
}

#main .img_box4 .img5 {
  top: 16%;
  left: 13%;
}

#main .img_box4 .img6 {
  top: 66%;
  left: 50%;
}

/* img_box5 */
#main .img_box5 .img1 {
  top: 0%;
  left: 40%;
}

#main .img_box5 .img2 {
  top: 52%;
  left: 70%;
}

#main .img_box5 .img3 {
  top: 82%;
  left: 25%;
}

#main .img_box5 .img4 {
  top: 27%;
  left: 5%;
}

#main .img_box5 .img5 {
  top: -6%;
  left: 79%;
}

#main .img_box5 .img6 {
  top: 25%;
  left: 60%;
}

#main .img_box5 .img7 {
  top: 54%;
  left: 30%;
}

/* img_box6 */
#main .img_box6 .img1 {
  top: 15%;
  left: 5%;
}

#main .img_box6 .img2 {
  top: 33%;
  left: 50%;
}

#main .img_box6 .img3 {
  top: 57%;
  left: 23%;
}

/* mask */
#main .mask {
  z-index: -1;
  pointer-events: none;
}

#main .mask_top {
  width: 20%;
  height: 19%;
  top: 0%;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(to top, transparent, var(--common), transparent);
}

#main .mask_bottom {
  width: 100%;
  bottom: -10%;
  height: 25%;
  background: linear-gradient(to top, var(--common), transparent);
}

/* ---------------------------------------- about history----------------------------------------   */
.history {}

.history:nth-child(odd) {
  background: var(--common);
}

.history .box {
  --text-w: 45%;
  --gap: 2em;
  gap: var(--gap);
}

.history .box .text {
  width: var(--text-w);
}

.history .box .text>* {
  margin: 0 auto 2em;
}

.history .box .text h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4em;
}

.history .box .text h2 span {
  position: relative;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0.5em auto 0;
}

.history .box .text h2 span:before,
.history .box .text h2 span:after {
  content: "―";
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.history .box .text h2 span:before {
  left: -2em;
}

.history .box .text h2 span:after {
  right: -2em;
}

.history .box .text p {}

.history .box .text .icon {
  width: 50%;
  margin: 0 auto;
}

.history .box .text .icon img {}

.history .box .img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 1rem;
  width: calc(100% - var(--text-w) - var(--gap));
}

.history .box .img img {
  border-radius: 0.3em;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history .box .img img:nth-child(1) {
  grid-column: 1 / -1;
  grid-row: 1;
}

.history .box .img img:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.history .box .img img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}


/* ---------------------------------------- about access ----------------------------------------   */
#access {
  background: var(--common);
}

#access .inner>*:not(:last-child) {
  margin: 0 auto 4em;
}

#access .title {}

#access .title>*:not(:last-child) {
  margin: 0 auto 2em;
}

#access .title h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4em;
}

#access .title h2 span {
  position: relative;
  font-size: 1.2em;
  font-weight: 600;
  margin: 0.5em auto 0;
}

#access .title h2 span:before,
#access .title h2 span:after {
  content: "―";
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

#access .title h2 span:before {
  left: -2em;
}

#access .title h2 span:after {
  right: -2em;
}

#access .title p {}

#access .title .img {
  width: 100%;
  max-width: 500px;
}

#access .title .img img {
  width: 100%;
}

#access .title .time {
  --num: 4;
  --gap: 2em;
  width: 100%;
  max-width: 500px;
  gap: var(--gap);
  margin: 0 auto;
  line-height: 1.3;
}

#access .title .time .box {
  width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
}

#access .title .time .box p {}

#access .title .time .box p span {
  font-size: 2.8em;
}


#access .case {
  width: 100%;
  max-width: 800px;
}

#access .case .box {
  position: relative;
  background: #fff;
  padding: 2em;
  margin: 0 auto 2em;
  border-radius: 0.5em;
  text-align: center;
}

#access .case .box h3 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.5em 3em;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  background: var(--page-color_deep);
  border-radius: 1em;
  gap: 0.5em;
}

#access .case .box h3 img {}

#access .case .box h3 span {}

#access .case .box p {
  margin: 1em auto 0;
}

#access .case .info {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

#access .case .info:not(:last-child) {
  margin: 0 auto 2em;
}

#access .case .info h4 {
  color: #276C3D;
  font-weight: 600;
  font-size: 1.2em;
}

#access .case .info p {}

#access .link {
  width: 100%;
  max-width: 800px;
}

#access .link h3 {
  font-weight: 600;
  margin: 0 auto 1em;
}

#access .link ul {
  gap: 1em;
}

#access .link ul li {}

#access .link ul li a {
  position: relative;
  display: inline-block;
  padding: 0.3em 3em 0.3em 1em;
  color: #fff;
  background: var(--page-color_deep);
  border-radius: 0.5em;
}

#access .link ul li a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(0%, -50%);
  width: 1em;
  height: 1em;
  background: url(../img/about/arrow.svg) no-repeat center center;
  background-size: contain;
  background-repeat: no-repeat;
}

#access .map {}

#access .map iframe {
  width: 100%;
  height: 500px;
}

/*----------------------------------------movie----------------------------------------*/
#movie {
  --side: 2em;
  position: relative;
  padding: 0 var(--side-padding) var(--section-margin);
  background: var(--page-color);
}

#movie.top_page {
  padding: var(--section-margin) var(--side-padding);
  background: var(--common-light);
}

#movie+* {
  background: var(--page-color);
}

#movie svg {
  content: "";
  position: absolute;
  bottom: 99%;
  left: 0%;
  width: 100%;
  fill: var(--page-color);
  z-index: -1;
}

#movie .inner {
  width: 80%;
  max-width: 700px;
}

#movie h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4em;
}

#movie h2 span {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0.5em auto 0;
}

#movie .movie_box {}

#movie .movie_box .box {}

#movie .movie_box .box:not(:last-child) {
  margin: 0 0 4em;
}


#movie .movie_box .box a {}

#movie .movie_box .box a img {
  width: 100%;
}

#movie .movie_box .box .flex {
  margin: 1em auto 0;
}

#movie .movie_box .box .date {
  color: var(--page-color_deep);
  margin: 0 1em 0 0;
}

#movie .movie_box .box h3 {
  font-weight: 600;
}

/* トップページ */
#movie .movie_box.flex {
  --num: 3;
  --gap: 2em;
  gap: var(--gap);
}

#movie .movie_box.flex .box {
  width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
}

#movie .movie_box.flex .box:not(:last-child) {
  margin: 0
}

#movie .movie_box.flex .box a {}

#movie .movie_box.flex .box {}

#movie .btn {
  text-align: center;
  margin: 4em auto 0;
}

#movie .btn a {
  position: relative;
  display: inline-block;
  padding: 0.6em 3em;
  border: 1px solid #17B5A9;
  transition: all 0.1s ease-in;
  z-index: 0;
  overflow: hidden;
}

#movie .btn a:hover {
  color: #fff;
}

#movie .btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  background: var(--page-color_deep);
  border-radius: 50%;
  transition: all 0.1s ease-in;
  z-index: -1;
}

#movie .btn a:hover:before {
  width: 105%;
}

/* ----------------------------------------　info ----------------------------------------   */
#info {
  --side: 2em;
  position: relative;
}

#info:has(+ #place) {
  padding: var(--section-margin) var(--side-padding) 0;
}

#info h3 {
  font-size: calc(var(--font-size) * 1.5);
  font-weight: 600;
  margin: 0 0 1em;
  color: var(--page-color_deep);
}

/* ---------- info ---------- */
#info .info {
  --width: 300px;
  --gap: 2em;
  gap: var(--gap);
  /* margin: 0 auto var(--section-margin); */
}

#info .info .text {
  width: calc(100% - var(--width) - var(--gap));
}

#info .info .text .word {}


#info .info .img {
  width: var(--width);
}

#info .info .img img {}

/* ----------------------------------------place----------------------------------------   */
#place {
  --side: 2em;
  position: relative;
}

/* ---------- season ---------- */
#place .season {
  background: var(--page-color_deep);
  padding: var(--section-margin) 0;
}

#place .season .inner {}


#place .season .flex_box {
  --num: 4;
  --gap: 2em;
  gap: var(--gap);
}

#place .season .flex_box .box {
  width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
}

#place .season .flex_box .box .img {
  width: 100%;
}

#place .season .flex_box .box .img img {}

#place .season .flex_box .box h2 {
  color: var(--page-color_deep);
  font-weight: 600;
  background: var(--page-color_light);
  padding: 0.2em 0.5em 0.3em;
}

#place .season .flex_box .box p {
  color: #fff;
}

/* ---------- swiper ---------- */
#place .big_inner {
  margin: 0 auto var(--section-margin);
}

#place .swiper {
  height: auto;
  align-items: stretch;
  display: flex;
  align-items: stretch;
  align-content: stretch;
}

#place .swiper .swiper-wrapper {
  --num: 4;
  --gap: 1em;
  gap: var(--gap);
  align-items: stretch;
  display: flex;
  align-items: stretch;
}

#place .swiper .swiper-slide {
  width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
  max-width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
  border-radius: 0.5em;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-self: stretch;
  flex: 1;
}

#place .swiper .swiper-slide a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#place .swiper .swiper-slide a .box {}

#place .swiper .swiper-slide a img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

#place .swiper .swiper-slide a h2 {
  position: relative;
  color: #fff;
  font-weight: 600;
  background: var(--page-color_deep);
  text-align: center;
  padding: 0.5em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#place .swiper .swiper-slide a .box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 1em;
  background: #fff;
  justify-content: space-between;
}

#place .swiper .swiper-slide a h3 {
  font-size: 1.6rem;
  color: var(--font-color);
  font-weight: 600;
  margin: 0 0 0.5em 0;
  flex-shrink: 0;
}

#place .swiper .swiper-slide a p {
  margin: 0;
  line-height: 1.5;
  flex-grow: 1;
  overflow: hidden;
}

/* ---------- place ---------- */
#place .place {
  --num: 2;
  --gap: 2em;
  --padding: 1.5em;
  gap: var(--gap);
}

#place .place li {
  position: relative;
  width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
  background: #fff;
  border-radius: 0.3em;
  overflow: hidden;
}

#place .place li h2 {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  background: var(--page-color_deep);
  text-align: center;
  padding: 0.5em;
}

#place .place li h2:before {
  position: absolute;
  top: 4px;
  left: 0%;
  width: 30px;
  height: 30px;
  content: "";
  background: url(../img/common/icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
}

#place .place li a {}

#place .place li a img {
  width: 100%;
}

#place .place li .padding_box {
  padding: var(--padding);
}

#place .place li .padding_box>*:not(:last-child) {
  margin: 0 auto 1em;
}

#place .place li .intro {}

#place .place li .box {
  padding: 1em;
  margin: 1em auto;
  background: var(--page-color);
  border-radius: 10px;
}

#place .place li .box {}

#place .place li .link_box {
  margin: 1em auto;
}

#place .place li .link_box p.link {}

#place .place li .link_box p.link a {
  color: #FFE6AF;
}

#place .place li .tag {}

#place .place li .tag a {
  display: block;
  padding: 0.3em 0.8em 0.2em;
  color: #fff;
  font-weight: 600;
  border-radius: 0.4em;
}

#place .place li .tag a.onsen_btn {
  background: var(--onsen_deep);
}

#place .place li .tag a.eat_btn {
  background: var(--eat_deep);
}

#place .place li .tag a.stay_btn {
  background: var(--stay_deep);
}

#place .place li .tag a.activity_btn {
  background: var(--activity_deep);
}

#place .place li .insta {
  position: relative;
  height: 3em;
}

#place .place li .insta a {
  position: absolute;
  top: calc(50% - var(--padding) / 2);
  right: var(--padding);
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  width: 8%;
}

#place .place li .insta a img {}

/* ---------------------------------------- other_place ----------------------------------------   */
#other_place {
  padding: 0 var(--side-padding) var(--section-margin);
}

#other_place.top_page,
#other_place.other {
  background: var(--common);
}

#other_place .other_place {
  --num: 4;
  --gap: 2em;
  gap: var(--gap);
}

#other_place .box {
  width: calc(calc(100% - var(--gap) * (var(--num) - 1)) / var(--num));
  border-radius: 0.5em;
  overflow: hidden;
  transition: all 0.2s ease-in;
}

/* 中央から */
#other_place .box a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  border-radius: 99em;
  transition: all 0.2s ease-in;
  opacity: 0.25;
}

#other_place .box a:hover:before {
  width: 200%;
}

/* 中央から */


/* 左右から */
/* #other_place .box a:before,
#other_place .box a:after {
  content: "";
  position: absolute;
  top: 0%;
  width: 50%;
  height: 100%;
  transition: all 0.2s ease-in;
  opacity: 0.5;
}

#other_place .box a:before {
  left: -50%;
}

#other_place .box a:after {
  right: -50%;
}

#other_place .box a:hover:before {
  left: 0%;
}

#other_place .box a:hover:after {
  right: 0;
}
*/

/* 左右から */

#other_place .onsen_link a:before,
#other_place .onsen_link a:after {
  background: var(--onsen_deep);
}

#other_place .stay_link a:before,
#other_place .stay_link a:after {
  background: var(--stay_deep);
}

#other_place .eat_link a:before,
#other_place .eat_link a:after {
  background: var(--eat_deep);
}

#other_place .activity_link a:before,
#other_place .activity_link a:after {
  background: var(--activity_deep);
}



#other_place .onsen_link:hover {
  box-shadow: 0px 0px 8px 0px var(--onsen_deep);
}

#other_place .stay_link:hover {
  box-shadow: 0px 0px 8px 0px var(--stay_deep);
}

#other_place .eat_link:hover {
  box-shadow: 0px 0px 8px 0px var(--eat_deep);
}

#other_place .activity_link:hover {
  box-shadow: 0px 0px 8px 0px var(--activity_deep);
}

#other_place a {
  display: block;
  transition: all 0.2s ease-in;
}

#other_place a img {}


#other_place a .vertical {
  width: auto;
  color: #fff;
  top: 25%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease-in;
}

#other_place a:hover .vertical {
  top: 30%;
}

#other_place a .vertical:before,
#other_place a .vertical:after {
  --slide: calc(100% + 0.5em);
  content: "";
  position: absolute;
  left: 0%;
  right: 0;
  margin: auto;
  width: 2px;
  height: 500%;
  background: #fff;
}

#other_place a .vertical:before {
  top: var(--slide);
}

#other_place a .vertical:after {
  bottom: var(--slide);
}

/* ----------------------------------------news----------------------------------------   */
#news {}

#news.top_page {
  background: var(--common);
}

#news .inner {
  position: relative;
  width: 80%;
  max-width: 600px;
  z-index: 1;
}

#news h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4em;
}

#news h2 span {
  font-size: 1.2em;
  font-weight: 600;
  margin: 0.5em auto 0;
}

#news .box {
  --width: 35%;
  --gap: 1em;
  gap: var(--gap);
  padding: 1em;
  border-radius: 0.5em;
  transition: all 0.2s ease-in;
}

#news .box:hover {
  background: var(--page-color);
}

#news .box:not(:last-child) {
  margin: 0;
}

#news .box .img {
  width: var(--width);
}

#news .box .img img {
  width: 100%;
  aspect-ratio: 16/9;
  background: #eee;
  object-fit: cover;
}

#news .box .text {
  width: calc(100% - var(--width) - var(--gap));
}

#news .box .text .flex {
  font-size: 0.875em;
  margin: 0 auto 0.25em;
}

#news .box .text .flex .date {
  margin: 0 0.5em 0 0;
}

#news .box .text .flex .tag {
  color: #fff;
  background: var(--page-color_deep);
  padding: 0 0.5em;
  border-radius: 0.2em;
}

#news .box .text .flex .tag a {}

#news .box .text h3 {
  font-weight: 600;
}

#news .btn {
  text-align: center;
  margin: 4em auto 0;
}

#news .btn a {
  position: relative;
  display: inline-block;
  padding: 0.6em 3em;
  border: 1px solid #17B5A9;
  transition: all 0.1s ease-in;
  z-index: 0;
  overflow: hidden;
}

#news .btn a:hover {
  color: #fff;
}

#news .btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  aspect-ratio: 1/1;
  background: var(--page-color_deep);
  border-radius: 50%;
  transition: all 0.1s ease-in;
  z-index: -1;
}

#news .btn a:hover:before {
  width: 105%;
}
