@charset "utf-8";

/***************************************************************************

  タイトル

***************************************************************************/
.lwrTitleBlock {
  width: 100%;
  height: 500px;
  margin: 0 0 100px;
  background: url(../img/bg_lowertitle.jpg) no-repeat center;
  background-size: cover;
}

.lwrTitleBlock.cuisine {
  width: 100%;
  height: 700px;
  margin: 0 0 100px;
  background: url(../img/cuisine/bg_lowertitle.jpg) no-repeat center;
  background-size: cover;
}

.lwrTitleBlock.room {
  width: 100%;
  height: 700px;
  margin: 0 0 100px;
  background: url(../img/room/bg_lowertitle.jpg) no-repeat center;
  background-size: cover;
}

.lwrTitleBlock.hotspring {
  width: 100%;
  height: 700px;
  margin: 0 0 100px;
  background: url(../img/hot_spring/bg_lowertitle.jpg) no-repeat center;
  background-size: cover;
}

.lwrTitleBlock .wrap {
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.lwrTitleBlock h1 {
  position: absolute;
  width: 100%;
  height: 200px;
  top: 0;
  bottom: -100px;
  margin: auto;
  color: #fff;
  font-family: "Shippori Mincho", serif;
}

.lwrTitleBlock.cuisine h1,
.lwrTitleBlock.hotspring h1,
.lwrTitleBlock.room h1 {
  bottom: -200px;
}

.lwrTitleBlock h1 span {
  color: #fff;
  font-size: 4rem;
  font-weight: 400;
  z-index: 1;
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
}

.lwrTitleBlock h1 small {
  font-size: 9rem;
  color: rgb(98, 116, 131, 0.5);
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .lwrTitleBlock {
    height: 250px;
    margin: 0;
  }

  .lwrTitleBlock.cuisine,
  .lwrTitleBlock.room,
  .lwrTitleBlock.hotspring {
    height: 350px;
    margin: 0;
  }

  .lwrTitleBlock .wrap {
    max-width: 100%;
  }

  .lwrTitleBlock h1 {
    height: 150px;
    bottom: -100px;
  }

  .lwrTitleBlock.cuisine h1,
  .lwrTitleBlock.hotspring h1,
  .lwrTitleBlock.room h1 {
    top: -50px;
    height: 150px;
  }

  .lwrTitleBlock h1 span {
    font-size: 3rem;
    bottom: 5rem;
    left: 1.5rem;
  }

  .lwrTitleBlock h1 small {
    font-size: 5.5rem;
  }

  .lwrTitleBlock.gallery h1 span {
    bottom: 6.5rem;
  }

  .lwrTitleBlock.gallery h1 small {
    font-size: 4.5rem;
  }
}

/***************************************************************************

  主要ブロック要素

***************************************************************************/
main {
  width: 100%;
}

main section {
  width: 100%;
  padding: 0 0 60px 0;
}

main section .wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

main .col2 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

main .col2 aside {
  width: 190px;
}

main .col2 div.container {
  width: calc(100% - 190px - 50px);
}

.bgBlue {
  background-color: #001952;
}

aside.categoryBlock dl dt {
  padding: 0 0 0 25px;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #001952;
  position: relative;
}

aside.categoryBlock dl dt:before {
  content: "";
  width: 15px;
  height: 3px;
  background-color: #001952;
  position: absolute;
  left: 0;
  top: 1.4rem;
  border-radius: 10px;
}

aside.categoryBlock dl dd {
  margin: 20px 0 0 0;
}

aside.categoryBlock dl dd ul li a {
  padding: 20px 15px 21px 0;
  font-size: 1.4rem;
  line-height: 1.4;
  display: block;
  background: url(../img/arrow_blue.png) no-repeat right center;
  background-size: 6px auto;
}

aside.categoryBlock dl dd ul li a:hover {
  opacity: 0.7;
  transition: 0.3s;
  background: url(../img/arrow_blue.png) no-repeat right 2px center;
  background-size: 6px auto;
}

@media screen and (max-width: 767px) {
  main section {
    padding: 25px 20px;
  }

  main section .wrap {
    max-width: 100%;
  }

  main .col2 {
    max-width: 100%;
    display: block;
  }

  main .col2 aside {
    width: calc(100% - 40px);
    margin: auto;
  }

  main .col2 div.container {
    width: 100%;
  }

  aside.categoryBlock dl {
    margin: 20px 0;
  }

  aside.categoryBlock dl dt {
    padding: 0 0 0 22px;
    font-size: 1.5rem;
  }

  aside.categoryBlock dl dt:before {
    left: 0;
    top: 1.2rem;
  }

  aside.categoryBlock dl dd {
    margin: 5px 0 0 0;
  }

  aside.categoryBlock dl dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }

  aside.categoryBlock dl dd ul li {
    width: calc((100% / 2) - 10px);
  }

  aside.categoryBlock dl dd ul li a {
    padding: 15px 15px 16px 0;
    font-size: 1.2rem;
    background: url(../img/arrow_blue_down.png) no-repeat right center;
    background-size: 10px auto;
  }
}

/***************************************************************************

  コンテンツ見出し

***************************************************************************/
main.lower section h2 {
  font-size: 3rem;
  padding: 0 0 20px;
  margin: 0 0 30px;
  border-bottom: 1px solid #A7B3BE;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  color: #001952;
  position: relative;
}

main.lower section h2:before {
  content: "";
  width: 200px;
  height: 3px;
  bottom: -2px;
  left: 0;
  position: absolute;
  background-color: #001952;
}

@media screen and (max-width: 767px) {
  main.lower section h2 {
    font-size: 2.4rem;
    padding: 0 0 15px;
    margin: 0 0 20px;
  }

  main.lower section h2:before {
    width: 80px;
  }
}

/***************************************************************************

  コンテンツ共通パーツ

***************************************************************************/
/*****************************************
  テキスト
*****************************************/
main.lower section p {
  margin: 0 0 1em;
}

.lwrCommonInfoBlock {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 0;
}

.lwrCommonInfoBlock h3 {
  font-size: 2.4rem;
  color: #001952;
  font-weight: 500;
  width: 240px;
}

.lwrCommonInfoBlock div {
  width: calc(100% - 240px);
  padding: 5px 0 0 0;
}

.lwrCommonInfoBlock .lwrCommonTable tr:first-child th,
.lwrCommonInfoBlock .lwrCommonTable tr:first-child td {
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .lwrCommonInfoBlock {
    display: block;
    margin: 20px 0 0;
  }

  .lwrCommonInfoBlock h3,
  .lwrCommonInfoBlock div {
    width: 100%;
  }

  .lwrCommonInfoBlock h3 {
    font-size: 1.8rem;
  }
}


/*****************************************
  テーブル
*****************************************/
.lwrCommonTable {
  width: 100%;
  margin: 0;
}

.lwrCommonTable tr {
  border-bottom: solid 1px #A7B3BE;
}

.lwrCommonTable th,
.lwrCommonTable td {
  font-size: 1.5rem;
  padding: 24px 5px;
  vertical-align: top;
}

.lwrCommonTable th {
  width: 210px;
  color: #001952;
  font-weight: 500;
}

.lwrCommonInTable {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.lwrCommonInTable dt {
  width: 10rem;
}

.lwrCommonInTable dd {
  width: calc(100% - 10rem - 20px);
}

@media screen and (max-width: 767px) {

  .lwrCommonTable th,
  .lwrCommonTable td {
    padding: 8px 5px;
    font-size: 100%;
  }

  .lwrCommonTable th {
    width: 30%;
  }
}


/*****************************************
  リスト
*****************************************/
.listDot li {
  background: url(../img/icon_dot.png) no-repeat left 0.8rem;
  background-size: 11px;
  padding: 0 0 0 20px;
}

@media screen and (max-width: 767px) {
  .listDot li {
    background-size: 6px;
    background-position: left 0.8rem;
    padding: 0 0 0 12px;
  }
}


/*****************************************
  リンク
*****************************************/
a.linkDown {
  background: url(../img/arrow_blue_down.png) no-repeat right 0.7em;
  background-size: 9px auto;
  padding: 0 15px 0 0;
  color: #001952;
  transition: 0.3s;
}
a.linkDown:hover {
  opacity: 0.7;
  transition: 0.3s;
}


/*****************************************
  風呂・部屋・料理　共通
*****************************************/
.mainReadBlock h2 {
  border: none !important;
  text-align: center;
  padding: 0 !important;
  margin: 60px 0 40px !important;
}

.mainReadBlock h2:before {
  display: none;
}

.mainReadBlock figure img {
  border-radius: 4px;
}

.mainReadBlock p {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .mainReadBlock h2 {
    margin: 30px 0 20px !important;
  }

  .mainReadBlock p {
    text-align: left;
  }
}

/*****************************************
  風呂
*****************************************/
.bathhouseBlock {
  display: flex;
  justify-content: space-between;
  padding: 50px 0 10px;
}

.bathhouseBlock article {
  width: calc((100% / 2) - 20px);
}

.bathhouseBlock article h3 {
  margin: 0 0 10px;
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
}

.bathhouseBlock article .sliderBox .slider {
  margin-bottom: 8px;
}

.bathhouseBlock article .sliderBox .swiper-slide span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 0 5px #000;
}

@media screen and (max-width: 767px) {
  .bathhouseBlock {
    display: block;
    padding: 0px 0 10px;
  }

  .bathhouseBlock article {
    width: 100%;
  }

  .bathhouseBlock article h3 {
    margin: 40px 0 10px;
    font-size: 1.8rem;
  }

  .bathhouseBlock article:first-child h3 {
    margin-top: 0;
  }

  .bathhouseBlock article .sliderBox .swiper-slide span {
    right: 5px;
    bottom: 5px;
    font-size: 1rem;
  }
}

/*****************************************
  部屋
*****************************************/
.roomBlock dl dd {
  margin: 0 30px 30px;
  display: flex;
  justify-content: space-between;
}

.roomBlock .roomBox {
  display: flex;
  justify-content: space-between;
}

.roomBlock .sliderBox {
  width: 463px;
}

.roomBlock .sliderBox .slider {
  margin-bottom: 8px;
}

.roomBlock .detailBox {
  width: calc(100% - 463px - 40px);
  font-size: 1.5rem;
}

.roomBlock .detailBox table tr {
  border-bottom: 1px solid #A7B3BE;
}

.roomBlock .detailBox table th,
.roomBlock .detailBox table td {
  padding: 20px 5px;
}

.roomBlock .detailBox table tr:first-child th,
.roomBlock .detailBox table tr:first-child td {
  padding-top: 0;
}

.roomBlock .detailBox table th {
  width: 140px;
  color: #001952;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .roomBlock dl dd {
    margin: 0 15px 15px;
    display: block;
  }

.roomBlock .roomBox {
  flex-wrap: wrap;
}

  .roomBlock .sliderBox {
    width: 100%;
  }

  .roomBlock .sliderBox .slider {
    margin-bottom: 8px;
  }

  .roomBlock .detailBox {
    width: 100%;
    font-size: 1.3rem;
    margin: 30px 0 0 0;
  }

  .roomBlock .detailBox table th,
  .roomBlock .detailBox table td {
    padding: 15px 5px;
  }

  .roomBlock .detailBox table th {
    width: 90px;
  }
}


/*****************************************
  料理
*****************************************/
.cuiDinnerBlock .cuiDinnerBox,
.cuiBrfBlock .cuiBrfBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.cuiDinnerBlock .cuiDinnerBox,
.cuiBrfBlock .cuiBrfBox {
  margin: 40px 0;
}

.cuiDinnerBlock .cuiDinnerBox div,
.cuiBrfBlock .cuiBrfBox div {
  width: calc((100% / 2) - 20px);
}

.cuiDinnerBlock .cuiDinnerBox div img,
.cuiBrfBlock .cuiBrfBox div img {
  border-radius: 4px;
  height: 360px;
  object-fit: cover;
}

.cuiDinnerBlock .cuiDinnerBox div .info,
.cuiBrfBlock .cuiBrfBox div .info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

.cuiDinnerBlock .cuiDinnerBox div .title,
.cuiBrfBlock .cuiBrfBox div .title {
  width: calc(100% - 140px - 20px);
  color: #001952;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px 0 0 0;
}

.cuiDinnerBlock .cuiDinnerBox div .info .title,
.cuiBrfBlock .cuiBrfBox div .info .title {
  padding: 5px 0 0 0;
}

.cuiDinnerBlock .cuiDinnerBox div .info .btn,
.cuiBrfBlock .cuiBrfBox div .info .btn {
  width: 140px;
}

.cuiDinnerBlock .cuiDinnerBox div .info .btn a,
.cuiBrfBlock .cuiBrfBox div .info .btn a {
  background: #001952;
  color: #fff;
  border-radius: 4px;
  display: block;
  text-align: center;
  font-size: 1.4rem;
  padding: 8px 0 10px;
}

.cuiDinnerBlock .cuiDinnerBox div .info .btn a span,
.cuiBrfBlock .cuiBrfBox div .info .btn a span {
  background: url(../img/arrow_white.png) no-repeat right 0.6rem;
  background-size: 6px auto;
  padding: 0 18px 0 0;
}

.cuiDinnerBlock .cuiDinnerBox div .info .btn a:hover,
.cuiBrfBlock .cuiBrfBox div .info .btn a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.cuiBrfBlock .cuiBrfListBox ul {
  display: flex;
  gap: 0 20px;
}

.cuiBrfBlock .cuiBrfListBox ul li img {
  border-radius: 4px;
}

@media screen and (max-width: 767px) {

  .cuiDinnerBlock .cuiDinnerBox,
  .cuiBrfBlock .cuiBrfBox {
    display: block;
    gap: 40px;
  }

  .cuiDinnerBlock .cuiDinnerBox,
  .cuiBrfBlock .cuiBrfBox {
    margin: 20px 0 40px 0;
  }

  .cuiDinnerBlock .cuiDinnerBox > div,
  .cuiBrfBlock .cuiBrfBox > div {
    width: 100%;
    margin: 0 0 30px;
  }

  .cuiDinnerBlock .cuiDinnerBox div img,
  .cuiBrfBlock .cuiBrfBox div img {
    height: auto;
    width: 100%;
  }

  .cuiDinnerBlock .cuiDinnerBox div .info,
  .cuiBrfBlock .cuiBrfBox div .info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin: 5px 0 0 0;
  }

  .cuiDinnerBlock .cuiDinnerBox div .title,
  .cuiBrfBlock .cuiBrfBox div .title {
    width: 100%;
    font-size: 1.5rem;
    padding: 10px 0 0 0;
    text-align: center;
  }

  .cuiDinnerBlock .cuiDinnerBox div .info .title,
  .cuiBrfBlock .cuiBrfBox div .info .title {
    padding: 5px 0 0 0;
  }

  .cuiDinnerBlock .cuiDinnerBox div .info .btn,
  .cuiBrfBlock .cuiBrfBox div .info .btn {
    width: 140px;
    margin: 10px auto 0;
  }

  .cuiDinnerBlock .cuiDinnerBox div .info .btn a,
  .cuiBrfBlock .cuiBrfBox div .info .btn a {
    font-size: 1.3rem;
  }

  .cuiDinnerBlock .cuiDinnerBox div .info .btn a span,
  .cuiBrfBlock .cuiBrfBox div .info .btn a span {
    background-position: right 0.5rem;
  }

  .cuiBrfBlock .cuiBrfListBox {
    margin-bottom: 30px;
  }

  .cuiBrfBlock .cuiBrfListBox ul {
    gap: 10px;
    flex-wrap: wrap;
  }

  .cuiBrfBlock .cuiBrfListBox ul li {
    width: calc((100% / 2) - 5px);
  }

  .cuiDinnerBlock .lwrCommonTable th {
    width: 35%;
  }
}


/*****************************************
  宿泊プラン
*****************************************/
.planBlock dl dd {
  display: none;
}

.planBlock dl dd .planCntBlock {
  display: flex;
  justify-content: space-between;
  padding: 0 30px 30px;
}

.planBlock dl dd figure {
  width: 460px;
}

.planBlock dl dd figure img {
  border-radius: 4px;
}

.planBlock dl dd .planCntBox {
  width: calc(100% - 460px - 45px);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.planBlock dl dd .planCntBox .planCntText p {
  margin: 0 0 1rem;
}

.planBlock dl dd .planCntBox .planCntBtn a {
  padding: 15px 15px 16px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #001952;
  border-radius: 4px;
}

.planBlock dl dd .planCntBox .planCntBtn a span {
  display: inline-block;
  padding: 0 17px 0 0;
  background: url(../img/arrow_white.png) no-repeat right 0.8rem;
  background-size: 6px auto;
}

.planBlock dl dd .planCntBox .planCntBtn a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.planBlock dl dd .planCntBox .planCntBtn a:hover span {
  background-position: right 2px center;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .planBlock dl dd .planCntBlock {
    display: block;
    padding: 0 15px 15px;
  }

  .planBlock dl dd figure {
    width: 100%;
    margin: 0 0 5px;
  }

  .planBlock dl dd .planCntBox {
    width: 100%;
    display: block;
  }

  .planBlock dl dd .planCntBox .planCntText p {
    margin: 0 0 1rem;
  }

  .planBlock dl dd .planCntBox .planCntBtn a {
    padding: 10px 10px 12px;
  }

  .planBlock dl dd .planCntBox .planCntBtn a span {
    background-position: right 0.7rem;
  }
}


/*****************************************
  館内施設
*****************************************/
.faciListBlock .faciListBox {
  display: flex;
  flex-wrap: wrap;
  gap: 0 27px;
}

.faciListBlock .faciListBox div {
  width: calc((100% - 27px - 27px) / 3);
  margin: 0 0 40px;
}

.faciListBlock .faciListBox div figure img {
  border-radius: 4px;
}

.faciListBlock .faciListBox div dl dt {
  margin: 10px 0;
  font-size: 1.8rem;
  color: #001952;
  font-weight: 500;
}

.faciListBlock .faciListBox div dl dd {
  font-size: 1.3rem;
}

.faciListBlock .faciListBox div dl dd table {
  margin: 20px 0 0 0;
  border-top: 1px solid #A7B3BE;
  width: 100%;
}

.faciListBlock .faciListBox div dl dd table tr {
  border-bottom: 1px solid #A7B3BE;
}

.faciListBlock .faciListBox div dl dd table th {
  color: #001952;
  font-weight: 500;
  padding: 10px 5px 14px;
  width: 30%;
}

.faciListBlock .faciListBox div dl dd table td {
  padding: 10px 5px 14px;
}

@media screen and (max-width: 767px) {
  .faciListBlock .faciListBox {
    display: block;
    gap: 0;
  }

  .faciListBlock .faciListBox div {
    width: 100%;
    margin: 0 0 30px;
  }

  .faciListBlock .faciListBox div dl dt {
    text-align: center;
    font-size: 1.5rem;
  }

  .faciListBlock .faciListBox div dl dd {
    font-size: 1.3rem;
  }
}

.pdfFixedBox {
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #A7B3BE;
  background: #fff url(/assets/img/icon_pdf.png) no-repeat center bottom 15px;
  background-size: 20px auto;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  display: inline-block;
  position: fixed;
  right: -1px;
  top: 20%;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.pdfFixedBox a {
  display: block;
  padding: 15px 15px 50px 15px;
  color: #001952;
  transition: 0.3s;
}
.pdfFixedBox:hover {
  background-position: center 20px bottom 15px;
}
.pdfFixedBox a:hover {
  opacity: 0.7;
  transition: 0.3s;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .pdfFixedBox {
    width: 65vw;
    height: auto;
    font-size: 1.2rem;
    margin: 0 auto;
    right: 0;
    left: 0;
    bottom: -1px;
    top: auto;
    border-bottom-left-radius: 0;
    border-top-right-radius: 8px;
    writing-mode: inherit;
    background-position: right 15px center;
    background-size: auto 1.5em;
  }
  .pdfFixedBox a {
    padding: 8px 22px 8px 12px;
  }
  .pdfFixedBox:hover {
    background-position: right 15px center;
  }
  .pdfFixedBox a:hover {
    opacity: 1;
    transition: 0.3s;
    padding-right: 22px;
  }
}
@media screen and (max-width: 321px) {
  .pdfFixedBox {
    width: 75%;
  }
}

/*****************************************
  フォトギャラリー
*****************************************/
.galleryBlock ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 27px;
  margin: 40px 0 0 0;
}

.galleryBlock ul li {
  width: calc((100% - 27px - 27px) / 3);
  margin: 0 0 20px;
}

.galleryBlock ul li img {
  border-radius: 4px;
  width: 100%;
  height: 237px;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .galleryBlock ul {
    gap: 0 10px;
    margin: 20px 0 0 0;
  }

  .galleryBlock ul li {
    width: calc((100% - 30px) / 4);
    margin: 0 0 10px;
  }

  .galleryBlock ul li img {
    height: 80px;
  }
}


/*****************************************
  アクセス
*****************************************/
.accessInfoBlock {
  display: flex;
  justify-content: space-between;
}

.accessInfoBlock figure {
  width: 580px;
}

.accessInfoBlock figure img {
  border-radius: 4px;
}

.accessInfoBlock div {
  width: calc(100% - 580px - 40px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.accessInfoBlock dl dt {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #001952;
}

.accessInfoBlock table th {
  width: 140px;
}

.accessParkingBlock {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 40px 0;
}

.accessParkingBlock div:first-child {
  width: 450px;
}

.accessParkingBlock div:last-child {
  width: calc(100% - 450px - 30px);
}

.accessParkingBlock h3 {
  font-size: 2.4rem;
  color: #001952;
  font-weight: 500;
  margin: 0 0 15px;
}

.accessParkingBlock figure img {
  border-radius: 4px;
}


.iframe-map iframe {
  border-radius: 4px;
  height: 500px;
}

.btn-more {
  margin: 20px 0 0 0;
}

.btn-more p {
  text-align: right;
}

.btn-more p a {
  padding: 8px 20px 10px;
  font-size: 1.4rem;
  background-color: #001952;
  color: #fff;
  display: inline-block;
  border-radius: 4px;
}

.btn-more p a span {
  background: url(../img/arrow_white.png) no-repeat right center;
  background-size: 6px auto;
  padding: 0 18px 0 0;
}

.btn-more p a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.btn-more p a:hover span {
  background-position: right 2px center;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .accessInfoBlock {
    display: block;
  }

  .accessInfoBlock figure {
    width: 100%;
  }

  .accessInfoBlock div {
    width: 100%;
    display: block;
    margin: 20px 0 0 0;
  }

  .accessInfoBlock dl dt {
    margin: 0 0 20px;
    font-size: 1.8rem;
  }

  .accessInfoBlock table th {
    width: 80px;
  }

  .accessParkingBlock {
    display: block;
    margin: 20px 0;
  }

  .accessParkingBlock div:first-child,
  .accessParkingBlock div:last-child {
    width: 100%;
  }

  .accessParkingBlock div:last-child {
    margin: 15px 0 0 0;
  }

  .accessParkingBlock h3 {
    font-size: 1.8rem;
    margin: 0 0 10px;
  }

  .iframe-map iframe {
    height: 300px;
  }

  .btn-more {
    margin: 5px 0 0 0;
  }

  .btn-more p a {
    font-size: 1.2rem;
  }
}


/*****************************************
  お知らせ
*****************************************/
.newsListBlock {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.newsListBlock article {
  width: calc((100% / 3) - 30px);
}

.newsListBlock article a {
  display: block;
}

.newsListBlock article a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.newsListBlock article figure {
  background-color: #fff;
  border-radius: 4px;
  height: 200px;
}

.newsListBlock article figure img {
  border: 1px solid #A7B3BE;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

.newsListBlock article div > div {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0 0;
}

.newsListBlock article div > div .date,
.newsDetailBlock .newsDetailInfo .date {
  font-size: 1.3rem;
  color: #001952;
  font-weight: 600;
}

.newsListBlock article div > div .category,
.newsDetailBlock .newsDetailInfo .category {
  font-size: 1.1rem;
  color: #001952;
  font-weight: 500;
  background-color: #CCD4DC;
  border-radius: 4px;
  display: inline-block;
  margin: 0 0 0 10px;
  padding: 1px 13px 3px;
}

.newsListBlock article .title {
  font-size: 1.45rem;
  font-weight: 500;
}

.newsListNavi,
.newsDetailNavi {
  border-top: 1px solid #A7B3BE;
  margin: 50px 0 0 0;
  padding: 50px 0 0 0;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
}

/*
.newsListNavi .btnPrev a,
.newsListNavi .btnNext a {
  color: #001952;
  display: block;
}

.newsListNavi .btnPrev a {
  background: url(../img/arrow_blue_reverse.png) no-repeat left 10px center;
  background-size: 6px auto;
  padding: 5px 10px 5px 25px;
}

.newsListNavi .btnPrev a:hover {
  background-position: left 8px center;
}

.newsListNavi .btnNext a {
  background: url(../img/arrow_blue.png) no-repeat right 10px center;
  background-size: 6px auto;
  padding: 5px 25px 5px 10px;
}

.newsListNavi .btnNext a:hover {
  background-position: right 8px center;
}

.newsListNavi .btnPagenation {
  margin: 0 40px;
}

.newsListNavi .btnPagenation ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.newsListNavi .btnPagenation ul li a,
.newsListNavi .btnPagenation ul li .current {
  display: block;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid #001952;
}

.newsListNavi .btnPagenation ul li .current {
  background: #001952;
  color: #fff;
}
*/

.page_navi {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0;
  gap: 10px;
}

.page_navi li {
  display: block;
}

.page_navi li.current span {
  display: block;
  padding: 5px 12px !important;
  border-radius: 4px;
  border: 1px solid #001952;
  background: #001952;
  color: #fff;
}

.page_navi li a {
  display: block;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid #001952;
}

.page_navi li.previous a,
.page_navi li.next a {
  color: #001952;
  display: block;
  border: 0 !important;
  background: initial !important;
}

.page_navi li.previous a {
  background: url(../img/arrow_blue_reverse.png) no-repeat left 10px center !important;
  background-size: 6px auto !important;
  padding: 5px 10px 5px 25px !important;
  margin-right: 30px;
}

.page_navi li.previous a:hover {
  background-position: left 8px center !important;
}

.page_navi li.next a {
  background: url(../img/arrow_blue.png) no-repeat right 10px center !important;
  background-size: 6px auto !important;
  padding: 5px 25px 5px 10px !important;
  margin-left: 30px;
}

.page_navi li.next a:hover {
  background-position: right 8px center !important;
}

.page_navi li.page_nums span {
  color: #fff;
  padding: 6px 9px 6px;
  background: #f3f3f3;
  display: inline-block;
  border: dotted 1px #333333;
}


@media screen and (max-width: 767px) {
  .newsListBlock {
    display: block;
    gap: 0;
  }

  .newsListBlock article {
    width: 100%;
    margin: 0 0 30px;
  }

  .newsListBlock article div > div .date,
  .newsDetailBlock .newsDetailInfo .date {
    font-size: 1.2rem;
  }

  .newsListBlock article .title {
    font-size: 1.3rem;
  }

  .newsListNavi,
  .newsDetailNavi {
    margin: 0;
    padding: 30px 0 10px;
    font-size: 1.2rem;
  }

  .page_navi li.previous a {
    margin-right: 20px;
  }

  .page_navi li.next a {
    margin-left: 20px;
  }

  .page_navi li.current span {
    padding: 5px 10px !important;
  }

  .page_navi li a {
    padding: 5px 10px;
  }
}


.newsDetailBlock .newsDetailInfo {
  display: flex;
  justify-content: right;
  margin: 0 0 30px;
}

.newsDetailBlock p {
  display: block;
}

.newsDetailBlock p img {
  margin-bottom: 30px;
  display: block;
}

.newsDetailBlock p img.aligncenter {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.newsDetailBlock p img.alignleft {
  margin-left: 0;
  margin-right: auto;
}

.newsDetailBlock p img.alignright {
  margin-left: auto;
  margin-right: 0;
}

.newsDetailBlock a {
  color: #001952;
  text-decoration: underline;
}

.newsDetailBlock a:hover {
  text-decoration: none;
}

.newsDetailNavi .btnBack a {
  background: url(../img/arrow_blue_reverse.png) no-repeat left 10px center;
  background-size: 6px auto;
  padding: 5px 10px 5px 25px;
}

.newsDetailNavi .btnBack a:hover {
  background-position: left 8px center;
}

.newsListNavi a:hover,
.newsDetailNavi a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {}


/*****************************************
  お問い合わせ
*****************************************/
table.lwrCommonTable.form th {
  position: relative;
  width: 300px;
}

table.lwrCommonTable.form span.hissu,
table.lwrCommonTable.form span.nini {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 1.4rem;
  background: #fff;
  border-radius: 4px;
  padding: 2px 15px;
  border-width: 1px;
  border-style: solid;
}

table.lwrCommonTable.form span.hissu {
  border-color: #DE1F1F;
  color: #DE1F1F;
}

table.lwrCommonTable.form span.nini {
  border-color: #999;
  color: #999;
}

table.lwrCommonTable.form input.sizeM {
  width: 35%;
}

table.lwrCommonTable.form input.sizeL {
  width: 50%;
}

table.lwrCommonTable.form textarea {
  width: 100%;
  height: 200px;
}

.radioItem {
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  line-height: 1;
  cursor: pointer;
}

.radioItem:not(:last-of-type) {
  margin-right: 20px;
}

.radioButton {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #009944;
  border-radius: 9999px;
  cursor: pointer;
}

.radioButton:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 9999px;
  background-color: #009944;
}

.formBtn {
  margin: 10px auto 50px auto;
  display: flex;
  justify-content: center;
  gap: 0 10px;
}

.formBtn input[type="submit"] {
  border: none;
  outline: 0;
  background: #009944 url(../images/arrow_white.png) no-repeat right 20px center;
  background-size: 6px auto;
  border-radius: 5px;
  color: #fff;
  padding: 18px 50px 18px 30px;
  margin: 0 auto;
  font-size: 1.6rem;
  cursor: pointer;
}

.formBtn input[type="submit"]:hover {
  opacity: 0.7;
  transition: 0.3s;
  background-position: right 22px center;
}

@media screen and (max-width: 767px) {

  table.lwrCommonTable.form th,
  table.lwrCommonTable.form td {
    display: inline-block;
    width: 100%;
  }

  table.lwrCommonTable.form span.hissu,
  table.lwrCommonTable.form span.nini {
    font-size: 1rem;
    top: 7px;
    padding: 2px 10px;
  }

  table.lwrCommonTable.form input.sizeM,
  table.lwrCommonTable.form input.sizeL {
    width: 100%;
  }

  table.lwrCommonTable.form textarea {
    height: 10rem;
  }

  .formBtn {
    margin: 30px auto 50px auto;
    display: block;
    text-align: center;
  }

  .formBtn div {
    margin: 10px auto;
  }

  .formBtn input[type="submit"] {
    background: #009944 url(../images/arrow_white.png) no-repeat right 20px center;
    background-size: 6px auto;
    padding: 15px 40px 15px 20px;
    font-size: 100%;
  }

  .formBtn input[type="submit"]:hover {
    opacity: 0.7;
    transition: 0.3s;
    background-position: right 22px center;
  }
}


/***************************************************************************

  スライダー

***************************************************************************/
.sliderBox img {
  border-radius: 4px;
}

.sliderBox .slider-thumbnail img {
  cursor: pointer;
  opacity: 0.5;
}

.sliderBox .slider-thumbnail .swiper-slide-thumb-active img {
  opacity: 1;
}


/***************************************************************************

  アコーディオン

***************************************************************************/
.js-acc {
  margin: 0 0 15px;
  border: 1px solid #A7B3BE;
  border-radius: 4px;
}

.js-acc dt {
  padding: 25px;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
}

.js-acc dt:hover {
  opacity: 0.7;
}

.js-acc dt small {
  font-size: 1.4rem;
}

.js-acc.faqBox dt {
  background: url(../img/icon_q.png) no-repeat 20px 12px;
  background-size: 50px auto;
  padding-left: 90px;
}

.js-acc .icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}

.js-acc .icon {
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}

.icon_wrap {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.js-acc .icon:before,
.js-acc .icon:after {
  display: flex;
  content: '';
  background-color: #001952;
  border-radius: 10px;
  width: 20px;
  height: 2px;
  position: absolute;
  top: 9px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
  transition: 0.2s;
}

.js-acc .icon:before {
  width: 2px;
  height: 20px;
  top: 0;
  left: 9px;
  opacity: 1;
}

.js-acc dt.accOpen .icon_wrap .icon:before {
  opacity: 0;
}

.js-acc dt.accOpen .icon_wrap .icon:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.3s;
}

.roomBlock .js-acc dd {
  display: none;
  box-sizing: border-box;
}

.js-acc.faqBox dd {
  padding: 10px 30px 20px 90px;
  display: none;
}

@media screen and (max-width: 767px) {
  .js-acc {
    margin: 0 0 10px;
  }

  .js-acc dt {
    padding: 15px 40px 15px 15px;
    font-size: 1.5rem;
  }

  .js-acc dt small {
    font-size: 1.3rem;
  }

  .js-acc.faqBox dt {
    background: url(../img/icon_q.png) no-repeat 15px 12px;
    background-size: 30px auto;
    padding-left: 55px;
    padding-right: 40px;
  }

  .js-acc .icon_wrap {
    top: 50%;
    right: 10px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }

  .js-acc .icon {
    width: 17px;
    height: 17px;
  }

  .js-acc .icon:before,
  .js-acc .icon:after {
    width: 17px;
    top: 6px;
  }

  .js-acc .icon:after {
    left: -1px;
  }

  .js-acc .icon:before {
    width: 2px;
    height: 16px;
    top: -1px;
    left: 6px;
    opacity: 1;
    visibility: visible;
  }

  .js-acc dt.accOpen .icon_wrap .icon:before {
    opacity: 0;
    visibility: hidden;
  }

  .js-acc.faqBox dd {
    padding: 5px 15px 5px 15px;
  }

}
