@charset "utf-8";
@import url('/akafu/east/common/css/common.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500&family=Noto+Serif+JP:wght@400;700&display=swap');
@import url('https://use.fontawesome.com/releases/v5.6.3/css/all.css');

/* CSS Document */
html {
  scroll-behavior: smooth;
}

#wrapper {
  width: 100%;
  /*max-width:950px;*/
  margin: 0 auto 10px;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  font-family: 'Noto Serif JP', serif;
}

#wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#wrapper a {
  word-break: break-all;
}

#wrapper img {
  vertical-align: bottom;
}

#wrapper h2,
#wrapper h3,
#wrapper h4 {
  font-weight: bold;
}

@media screen and (min-width: 760px) {
  .pc_none {
    display: none;
  }
}

@media screen and (max-width: 759.9px) {
  .sp_none {
    display: none;
  }
}

.text_red {
  color: #B20202;
}

.text_bold {
  font-weight: bold;
}

.text_normal {
  font-weight: normal;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_font_sans {
  font-family: 'Noto Sans JP', sans-serif;
}

.attention {
  font-size: 90%;
  text-indent: -1em;
  margin-left: 1em;
  margin-bottom: 5px;
}

.mgn_btm20 {
  margin-bottom: 20px;
}

.marker {
  background: linear-gradient(transparent 80%, #ffd22c 80%);
  font-weight: bold;
}

a.godetail {
  width: 90%;
  max-width: 350px;
  display: flex;
  margin: 0 1% 20px;
  padding-bottom: 5px;
  height: 60px;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: url("../images/button.png") no-repeat center bottom;
  background-size: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  z-index: 1000;
  color: #FFFFFF;
}

a.godetail.chubu {
  background: url("../images/button_chubu.png") no-repeat center bottom;
  background-size: 100%;
}

a.godetail:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
  opacity: 0.8;
}

a.godetail.gray {
  background: url("../images/button_gray.png") no-repeat center bottom;
  background-size: 100%;
  pointer-events: none;
}

.deco {
  font-weight: normal;
  display: inline-block;
  padding: 0 15px;
  background: url("../images/deco_left.png") no-repeat center left, url("../images/deco_right.png") no-repeat center right;
  background-size: 10px auto;
}

@media screen and (max-width: 759.9px) {
  a.godetail {
    width: 90%;
    height: 50px;
    margin: 0 auto 20px;
    background: url("../images/button.png") no-repeat center bottom;
    background-size: 100%;
    font-size: 85%;
  }

  .deco {
    display: inline-block;
    padding: 0 10px;
    background: url("../images/deco_left.png") no-repeat center left, url("../images/deco_right.png") no-repeat center right;
    background-size: 8px;
    font-size: 80%;
  }
}

/*--------.page_roof-------------*/
.page_roof {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 450px;
}

.page_roof .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.page_roof h2 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 759.9px) {
  .page_roof {
    padding-top: 40%;
  }

  .page_roof h2 img {
    height: 100%;
  }
}

/*-------------ナビ-   --------------*/
.fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav#pageNav {
  background-repeat: repeat-x top;
  background-size: contain;
  width: 100%;
  display: none;
}

nav#pageNav ul a,
nav#pageNav ul a:hover {
  color: #FFFFFF !important;
  text-decoration: none !important;
}

nav#pageNav ul {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  color: #FFFFFF;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
}

nav#pageNav ul a {
  flex-grow: 1;
  padding-bottom: 10px;
  height: 80px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media screen and (max-width: 759.9px) {
  nav#pageNav ul {
    justify-content: space-between;
  }

  nav#pageNav ul a {
    height: 70px;
    font-size: 85%;
    line-height: 1.5;
  }
}

nav#pageNav ul a:after {
  font-family: "Font Awesome 5 Free";
  content: "\F107";
  font-weight: 900;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/*----メニューバーを固定したとき余白追加----*/
.paddingTop {
  padding-top: 80px;
}

/*-------------ページコンテンツ   --------------*/
.pageContent {
  position: relative;
  margin-bottom: 10px;
  background: url("../images/bg_content.png") repeat-y top left #EEEEEE;
  padding-top: 30px;
}

.pageContent:nth-child(odd) {
  background: #EDEAE8;
}

.pageContent a {
  word-break: break-all;
}

.pageContent .bg>.inner,
.pageContent>.inner {
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
}

.pageContent h2.title {
  font-size: 240%;
  font-weight: bold;
  background-repeat: repeat-x;
  background-position: bottom left;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 759.9px) {
  .pageContent h2.title {
    font-size: 180%;
    font-weight: bold;
  }
}

.about_comment {
  width: 100%;
  margin: 10px auto;
}

.about_comment p {
  width: 90%;
  margin: 5px auto;
  text-align: left;
}

/*-------------　いちおし　--------------*/
.ichioshi_content {
  width: 100%;
}

.ichioshi_content .titlebox {
  width: 50%;
  text-align: center;
  margin: 0 auto 10px;
  padding: 3px 15px;
  border-radius: 20px;
}

.ichioshi_content.roof .titlebox {
  width: 90%;
  text-align: left;
  /* background: #FFFFFF; */
  margin: 0 auto 4px;
  padding: 8px 15px 10px 15px;
  border-radius: 30px;
}

.ichioshi_content .titlebox h3 {
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  color: #FFF;
}

.ichioshi_content dl.photo_info_unit {
  width: 100%;
  margin: 30px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  /* background: #FFFFFF; */
}

.ichioshi_content dt.photo,
.ichioshi_content dd.info {
  width: 49%;
  margin: auto 0;
  justify-content: center;
  padding: 5px;
}

.ichioshi_content dt.photo img {
  width: 100%;
}

.ichioshi_content dl.data {
  width: 100%;
  border-bottom: dotted 1px #CCCCCC;
  margin: 10px 0;
  padding: 0;
}

.ichioshi_content dl.data:last-child {
  border-bottom: none;
}

.ichioshi_content dl.data dt {
  display: inline-block;
  font-weight: bold;
  padding: 0;
  vertical-align: top;
}

.ichioshi_content dl.data dd {
  display: inline-block;
  padding: 3px 0 3px 10px;
  font-size: 110%;
}

@media screen and (max-width: 759.9px) {
  .ichioshi_content dt.photo {
    width: 100%;
    order: 1;
  }

  .ichioshi_content dd.info {
    width: 100%;
    order: 2;
  }

  .ichioshi_content .titlebox {
    width: 70%;
  }

  .ichioshi_content .titlebox h3 {
    font-size: 140%;
  }
}


/*---------効能------------------*/
.efficacy_unit {
  width: 100%;
  display: flex;
  margin: 20px 0 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.efficacy_unit .box {
  width: 48%;
  margin-bottom: 20px;
  padding: 10px 20px 15px;
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
  background: #FFFFFF;
}

.efficacy_unit .box h3 {
  font-size: 160%;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  letter-spacing: 5px;
}

@media screen and (max-width: 759.9px) {
  .efficacy_unit .box {
    width: 90%;
    margin: 10px auto;
  }

  .efficacy_unit .box h3 {
    font-size: 140%;
  }
}

/*----------アクセス-------------------*/
.access_unit {
  width: 100%;
  display: flex;
  margin: 20px 0 40px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.access_unit .box {
  width: 48%;
  margin-bottom: 20px;
  padding: 10px 20px 15px;
  border-radius: 20px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: left;
  background-color: #FFFFFF;
}

.access_unit .box h3 {
  font-size: 160%;
  font-weight: bold;
  margin: 5px 0;
  text-align: left;
}

@media screen and (max-width: 759.9px) {
  .access_unit .box {
    width: 90%;
    margin: 10px auto;
  }

  .access_unit .box h3 {
    font-size: 140%;
  }
}

.access_unit .train {
  background-repeat: no-repeat;
  background-position: top 10px right 15px;
  background-size: 50px;
}

.access_unit .shinkansen {
  background-repeat: no-repeat;
  background-position: top 20px right 15px;
  background-size: 100px;
}

.access_unit .bus {
  background-repeat: no-repeat;
  background-position: top 20px right 15px;
  background-size: 90px;
}

.access_unit .car {
  background-repeat: no-repeat;
  background-position: top 20px right 15px;
  background-size: 60px;
}

.access_unit .air {
  background-repeat: no-repeat;
  background-position: top 20px right 15px;
  background-size: 60px;
}

.access_unit .express {
  background-repeat: no-repeat;
  background-position: top 20px right 15px;
  background-size: 55px;
}

.access_unit .sl {
  background-repeat: no-repeat;
  background-position: top 10px right 15px;
  background-size: 60px;
}

/*----おすすめプラン-----------------------------*/
.recommend_unit {
  display: flex;
  flex-wrap: wrap;
  width: 101%;
  margin: 0 -0.5% 20px -0.5%;
}

.recommend_unit dl {
  width: 31.3%;
  margin: 0 1% 20px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

.recommend_unit dl.center {
  margin: 0 auto 20px;
}

.recommend_unit dl dt {
  width: 100%;
}

.recommend_unit dl dt img {
  width: 100%;
}

.recommend_unit dl dd {
  width: 100%;
  padding: 10px 20px;
}

.recommend_unit dl dd p br.sp_none {
  display: none;
}

.recommend_unit dl dd.yoyaku_box {
  margin: auto 0 0;
  padding-top: 0;
}

.recommend_unit h3 {
  font-size: 150%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.recommend_unit h4 {
  font-size: 130%;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.recommend_unit p {
  font-size: 110%;
  text-align: left;
}

.recommend_unit p.lead {
  text-align: center;
}

.recommend_unit .review {
  width: 100%;
  margin-top: 15px;
  padding: 10px 5px;
  border-top: 1px dotted #CCCCCC;
  border-bottom: 1px dotted #CCCCCC;
}

.recommend_unit .review p {
  font-size: 100%;
  font-weight: bold;
  margin-bottom: 10px;
  color: #B20202;
}

.recommend_unit .review ul {
  display: flex;
}

.recommend_unit .review ul li {
  width: 25%;
  text-align: center;
  font-size: 150%;
  font-weight: bold;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 25px;
  padding-top: 25px;
}

.recommend_unit .review ul li::after {
  content: "点";
  font-size: 70%;
  font-weight: normal;
}

.recommend_unit .review ul li.nodata::after {
  content: "";
}

.recommend_unit .review ul li.sogo {
  background-image: url("../images/icon_sogo.png");
}

.recommend_unit .review ul li.shokuji {
  background-image: url("../images/icon_shokuji.png");
}

.recommend_unit .review ul li.furo {
  background-image: url("../images/icon_furo.png");
}

.recommend_unit .review ul li.sirvice {
  background-image: url("../images/icon_service.png");
}

@media screen and (max-width: 759.9px) {
  .recommend_unit {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .recommend_unit h3 {
    font-size: 120%;
  }

  .recommend_unit dl {
    width: 48%;
  }

  .recommend_unit dl dd {
    padding: 10px 10px;
  }

  .recommend_unit h3 {
    font-size: 110%;
  }

  .recommend_unit h4 {
    font-size: 100%;
  }

  .recommend_unit p {
    font-size: 90%;
  }

  .recommend_unit .review p {
    font-size: 10px;
  }

  .recommend_unit .review ul li {
    font-size: 100%;
    background-size: auto 15px;
    padding-top: 15px;
  }
}

/*------予約------------*/
.yoyaku {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.yoyaku h2 {
  width: 100%;
  font-size: 120%;
  margin: 20px 0 20px;
}

/*-------動画--------*/
#spot .movie {
  margin: 30px auto;
}

#spot .movie p {
  margin: 5px 0;
}

.movie p.popup {
  background: rgba(255, 255, 255, 0.8);
  padding: 5px 10px;
  display: inline-block;
  border-radius: 15px;
}

.movie p.popup:hover {
  background: rgba(240, 118, 232, 0.5);
}

.movie label {
  cursor: pointer;
}

.movie img {
  max-width: 100%;
}

.movie iframe {
  width: 560px;
  height: 315px;
}

@media screen and (max-width: 759.9px) {
  .movie iframe {
    width: 90vw;
    height: 55vw;
  }

  .movie p.popup {
    display: none;
  }
}

.pageContent .map {
  width: 80%;
  max-width: 731px;
  margin: 20px auto 30px;
  text-align: center;
}

.pageContent .map img {
  width: 100%;
  margin-bottom: 5px;
}

#map {
  width: 60%;
  max-width: 731px;
  margin: 20px auto 30px;
  display: block;
}

/*--------観光情報スライド内コンテンツ------------------------*/
.spot_content {
  width: 100%;
}

.spot_content .titlebox {
  width: 100%;
  text-align: left;
  background: #FFFFFF;
  margin-bottom: 4px;
  padding: 8px 15px 10px 15px;
  border-radius: 15px 15px 0 0;
}

.spot_content.roof .titlebox {
  width: 90%;
  text-align: left;
  background: #FFFFFF;
  margin: 0 auto 4px;
  padding: 8px 15px 10px 15px;
  border-radius: 15px 15px 0 0;
}

.spot_content .titlebox h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 130%;
  font-weight: bold;
}

.spot_content dl.photo_info_unit {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  background: #FFFFFF;
}

.spot_content dt.photo,
.spot_content dd.info {
  width: 49%;
  margin: 0.5%;
  padding: 5px;
}

.spot_content dt.photo img {
  width: 100%;
}

.spot_content dl.data {
  width: 100%;
  border-bottom: dotted 1px #CCCCCC;
  margin: 10px 0;
  padding: 0;
}

.spot_content dl.data:last-child {
  border-bottom: none;
}

.spot_content dl.data dt {
  display: inline-block;
  font-weight: bold;
  padding: 0;
  vertical-align: top;
}

.spot_content dl.data dd {
  display: inline-block;
  padding: 3px 0 3px 10px;
}

@media screen and (max-width: 759.9px) {
  .spot_content dt.photo {
    width: 100%;
    order: 1;
  }

  .spot_content dd.info {
    width: 100%;
    order: 2;
  }

  .spot_content .titlebox h3 {
    font-size: 120%;
  }
}

/*--------お土産-----------------------*/
.souvenir_unit {
  width: 100%;
}

.souvenir_unit .photo {
  width: 100%;
}

.souvenir_unit .comment {
  width: 100%;
  background: #FFFFFF;
  padding: 5px 10px 10px;
}

.souvenir_unit .photo img {
  width: 100%;
}

.souvenir_unit .comment h3 {
  font-size: 120%;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}

.souvenir_unit .comment p {
  font-size: 100%;
  text-align: left;
}

@media screen and (max-width: 759.9px) {}

.shopinfo {
  border-top: 1px dotted #CCCCCC;
  margin: 10px auto;
  padding-top: 10px;
  width: 100%;
  max-width: 700px;
  text-align: left;
}

.shopinfo h4 {
  font-size: 100%;
  margin-bottom: 5px;
  text-indent: -0.5em;
}

.shopinfo p {
  font-size: 90%;
}

.shopinfo a {
  word-break: break-all;
  display: inline-block;
  font-size: 90%;
}

/*-----swiper共通--------------------*/
.swiper-slide,
.swiper-slide img {
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  cursor: pointer;
  z-index: 99;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {
  outline: none;
}

/*-----お土産内スライドswiper--------------------*/
.swiper-container.inbox {
  width: 100%;
  margin: 0 auto;
}

.swiper-pagination.inbox {
  bottom: 15px;
}

.swiper-pagination.inbox .swiper-pagination-bullet {
  opacity: 0.6;
}

.swiper-pagination.inbox .swiper-pagination-bullet-active {
  background: #FFFFFF;
}

.swiper-button-prev.inbox::after,
.swiper-button-next.inbox::after {
  font-size: 20px;
  color: #FFF;
  font-weight: bold;
}

.swiper-button-prev.inbox {
  left: 5px;
  top: 48%;
}

.swiper-button-next.inbox {
  right: 5px;
  top: 48%;
}

@media screen and (max-width: 759.9px) {

  .swiper-button-prev.inbox::after,
  .swiper-button-next.inbox::after {
    font-size: 15px;
  }

  .swiper-button-prev.inbox {
    left: 3px;
    top: 46%;
  }

  .swiper-button-next.inbox {
    right: 3px;
    top: 46%;
  }
}


/*-------観光情報swiper-----------*/
.swiper-container.main {
  width: 100%;
  margin: 0 auto 50px;
  padding: 0 5% 40px;
}

.swiper-container.main::before {
  content: "";
  width: 4%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #EEEEEE;
  z-index: 10;
}

.swiper-container.main::after {
  content: "";
  width: 4%;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  background: #EEEEEE;
  z-index: 10;
}

.swiper-button-prev.main::after,
.swiper-button-next.main::after {
  display: none;
}

.swiper-pagination.main .swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 5px !important;
  width: 54px;
  height: 5px;
  background: #CCCCCC;
  opacity: 0.6;
}

.swiper-pagination.main .swiper-pagination-bullet-active {
  background: #B20202;
  opacity: 1;
}

.swiper-button-prev.main {
  position: absolute;
  top: 45%;
  left: 0;
  font-size: 50px;
  cursor: pointer;
  color: #333333;
}

.swiper-button-next.main {
  position: absolute;
  top: 45%;
  right: 0;
  font-size: 50px;
  cursor: pointer;
  color: #333333;
}

@media screen and (max-width: 759.9px) {
  .swiper-container.main {
    margin-bottom: 20px;
  }

  .swiper-button-prev.main {
    font-size: 30px;
    left: -5px;
  }

  .swiper-button-next.main {
    font-size: 30px;
    right: -5px;
  }
}

/*-----------お土産swiper---------------------*/
.swiper-container.souvenir {
  width: 110%;
  margin: 0 -5%;
  padding: 0 5%;
}

.swiper-container.souvenir::before {
  content: "";
  width: 4%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #EDEAE8;
  z-index: 10;
}

.swiper-container.souvenir::after {
  content: "";
  width: 4%;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  background: #EDEAE8;
  z-index: 10;
}

.swiper-container.souvenir .swiper-slide {
  height: auto;
  background: #FFFFFF;
}

.swiper-container.souvenir .slide-content {
  height: 100%;
}

.swiper-pagination.souvenir {
  margin-top: 30px;
  text-align: center;
}

.swiper-container.souvenir>.swiper-pagination-bullet {
  border-radius: inherit;
  margin: 0 5px !important;
  width: 54px;
  height: 5px;
  background: #CCCCCC;
  opacity: 0.6;
}

.swiper-container.souvenir>.swiper-pagination-bullet-active {
  background: #B20202;
  opacity: 1;
}

.swiper-button-prev.souvenir::after,
.swiper-button-next.souvenir::after {
  display: none;
}

.swiper-button-prev.souvenir {
  position: absolute;
  top: 40%;
  left: 0;
  font-size: 50px;
  cursor: pointer;
  color: #333333;
}

.swiper-button-next.souvenir {
  position: absolute;
  top: 40%;
  right: 0;
  font-size: 50px;
  cursor: pointer;
  color: #333333;
}

.swiper-pagination.souvenir {
  display: none;
}

@media screen and (max-width: 759.9px) {
  .swiper-button-prev.souvenir {
    font-size: 30px;
  }

  .swiper-button-next.souvenir {
    font-size: 30px;
  }
}

/*------------写真クレジット-------------------*/
.photo {
  position: relative;
}

p.credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: right;
  font-size: 14px;
}

.swiper-slide p.credit {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: 10px;
  text-align: right;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.7);
  padding: 1px 10px;
  border-radius: 10px;
}

.page_roof p.credit {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: auto;
  text-align: left;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.3);
  padding: 1px 10px;
  border-radius: 5px;
  color: #FFFFFF;
  display: inline-block;
  text-shadow: 1px 1px 2px #000000;
}

@media screen and (max-width: 759.9px) {
  .page_roof p.credit {
    bottom: 10px;
    left: 10px;
    font-size: 10px;
  }
}

/*------------ポップアップ-------------------*/
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(213, 213, 213, 0.9);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 950px;
  padding: 40px 20px;
  box-sizing: border-box;
  line-height: 1.4em;
  transition: 0.5s;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
}

.popup_content iframe {
  width: 80vw;
  max-width: 900px;
  height: 50vw;
  max-height: 510px;
}

.popup_content p {
  text-align: center;
  margin-bottom: 20px;
}

.popup_content .bold {
  font-weight: bold;
  font-size: 120%;
  white-space: nowrap;
}

@media screen and (max-width: 759.9px) {
  .popup_content {
    padding: 40px 0 60px;
    background-size: auto 120%;
  }

  .popup_content p {
    font-size: 3.4vw;
  }

  .popup_content .bold {
    font-size: 3.5vw;
  }
}

.close_btn {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 20px;
  cursor: pointer;
}

.popup_wrap input:checked~.popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s;
}

/*-------バックナンバー--------*/
.backnumber {
  width: 100%;
  background: #FFFFFF;
  padding-top: 20px;
}

.backnumber .inner {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 20px 10px;
}

.backnumber>h2 {
  text-align: center;
  font-weight: bold;
}

.backnumber .inner h2 {
  position: relative;
  text-align: center;
  line-height: 30px;
  font-size: 120%;
}

.backnumber .inner h2 span {
  position: relative;
  background: #FFFFFF;
  z-index: 2;
}

.backnumber .inner h2::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #333333;
  z-index: 1;
}

.backnumber .backnumberList {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.backnumber .backnumberList a {
  width: 23%;
  margin: 10px 1%;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.backnumber .backnumberList h3 {
  display: none;
}

@media screen and (max-width: 759.9px) {
  .backnumber .backnumberList a {
    width: 47%;
    margin: 10px 1.5%;
  }
}

.backnumber .backnumberList img {
  width: 100%;
  vertical-align: bottom;
}

/*-------空室情報--------*/
.room_info {
  width: 100%;
  max-width: 950px;
  margin: -20px auto 40px;
}

.room_info_table {
  width: 100%;
  max-width: 950px;
  margin: 20px auto 0;
}

.room_info_table table {
  border: 1px solid #CCC;
  width: 100%;
  margin: 0;
}

.room_info table .date td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 5px;
  width: 7%;
  background: #EAF1F5;
}

.room_info table .yobi td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 5px;
  background: #FFF;
}

.room_info table .yobi td.sat {
  background: #829BE0;
}

.room_info table .yobi td.sun {
  background: #F1494C;
}

.room_info table .hotel td {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background: #FFF;
  vertical-align: middle;
}

.room_info table .hotel td.vacancy {
  background: #F0DD79;
}

.room_info table th {
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  background: #F5F5F5;
  white-space: nowrap;
  padding: 5px;

}

.room_info table th.title {
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 759.9px) {
  .room_info_table {
    width: 99%;
    margin: 20px 0 0 1%;
    padding-bottom: 5px;
    overflow-x: scroll;
    overflow-scrolling: touch;
  }

  .room_info_table table {
    border: 1px solid #CCC;
    margin: 0;
  }

  .room_info table th {
    position: sticky;
    left: 0;
    background: #FFF;
    white-space: nowrap;
    padding: 5px;
  }

  .room_info table th:before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
  }

  .room_info table .date td {
    width: 200px;
  }
}

/*--------開閉パネル-------------*/
.panel-trigger {
  display: none;
  /*チェックボックスは常に非表示*/
}

.panel_wrapper {
  position: relative;
}

.btnOpen {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(rgba(251, 251, 251, 0) 0%, rgba(251, 251, 251, 1) 40%);
  padding-top: 70px;
  z-index: 100;
}

.btnOpen span {
  display: block;
  position: relative;
  width: 80%;
  height: 40px;
  margin: 0 auto;
  border: 2px solid #333;
  border-radius: 20px;
  background: #FFFFFF;
  line-height: 40px;
  font-size: 120%;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: .2s ease;
}

.btnOpen span::before {
  content: "もっと見る";
}

.btnOpen span::after {
  font-family: "Font Awesome 5 Free";
  content: "\F107";
  font-weight: 900;
  position: absolute;
  right: 30px;
  top: 0px;
}

.panel {
  height: 300px;
  padding: 0 0 100px;
  overflow: hidden;
  opacity: 1;
  transition: 0.8s;
}

@media screen and (max-width: 759.9px) {
  .panel {
    height: 500px;
  }
}

.panel-trigger:checked+.btnOpen {
  width: 100%;
  height: 100px;
  background: none;
  padding-top: 30px;
}

.panel-trigger:checked+.btnOpen span::before {
  content: "閉じる"
    /*チェックされていたら、文言を変更する*/
}

.panel-trigger:checked+.btnOpen span::after {
  font-family: "Font Awesome 5 Free";
  content: "\F106";
  font-weight: 900;
  position: absolute;
  right: 30px;
  top: 0px;
}

.panel-trigger:checked~.panel {
  height: auto;
  /*チェックされていたら、高さを戻す*/
  opacity: 1;
}