@charset "UTF-8";

/* ------------------------------------------
  mv
------------------------------------------ */
.mv {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url(../img/top-mv.webp) center / cover;
}

.mv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 0.5で50%黒フィルター */
  pointer-events: none; /* クリック操作などを画像に通す */
}

.mv-logo {
  position: absolute;
  z-index: 10;
  display: block;
  width: 200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1.5s; 
}

.mv-reserve {
  position: fixed;
  right: 0;
  top: 40%;
  background: #d8b049;
  z-index: 100;
}

.mv-reserve a {
  padding: 50px 20px;
  display: block;
  writing-mode: vertical-rl;
  letter-spacing: 0.5em;
  font-size: 1.5rem;
}


@media screen and (max-width: 767px){
  .mv-logo{
    width: 120px;
  }

  .mv-reserve{
    display: none;
  }
}


/* ------------------------------------------
  intro
------------------------------------------ */
.intro {
  color: #fff;
  background: #000;
  padding: 100px 0;
  font-weight: normal;
}

.intro-ttl {
  font-size: 5.2rem;
  margin-bottom: 80px;
}

.intro-content{
  display: flex;
  gap: 30px;
  align-items: center;
}

.intro-content-img{
  width: 50%;
}

.intro-txt-inner {
  width: 50%;
}

.intro-txt {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.intro-txt span {
  color: #d8b049;
}

.intro-cfamp-btn {
  margin-top: 50px;
  width: 40%;
}

.intro-cfamp-btn a {
  display: block;
  padding: 20px 30px;
  background: #720000;
  text-align: center;
  font-size: 1.8rem;
}

.intro-cfamp-btn a:hover {
  background: #fff;
  color: #720000;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .intro{
    padding: 80px 0;
  }

  .intro-ttl {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }

  .intro-content{
    flex-direction: column;
  }

  .intro-content-img{
    order: 2;
    width: 100%;
  }

  .intro-txt-inner {
    width: 100%;
    margin: 0;
  }

  .intro-txt{
    font-size: 1.4rem;
  }

  .intro-cfamp-btn {
    margin: 0 auto;
    width: 50%;
  }
}

/* ------------------------------------------
  top-service
------------------------------------------ */
.top-service {
  padding: 170px 0;
  background: #252525;
  color: #fff;
}

.top-service-item {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.top-service-item:not(:last-child) {
  margin-bottom: 140px;
}

.top-service-item:nth-child(even) .top-service-txt-inner {
  order: 2;
}

.top-service-txt-inner {
  width: 35%;
}

.top-service-img-inner {
  width: 60%;
}

.top-service-ttl {
  font-size: 4rem;
  line-height: 100%;
  margin-bottom: 30px;
}

.top-service-ttl span {
  padding-left: 20px;
  font-size: 1.4rem;
}

.top-service-txt {
  font-size: 1.6rem;
  line-height: 2.18;
  margin-bottom: 70px;
}

.top-service-more {
  font-size: 1.6rem;
  text-align: right;
}

.top-service-more a {
  padding: 1em 2em 1.5em 0;
  position: relative;
  color: #d8b049;
}

.top-service-more a::after {
  content: "";
  position: absolute;
  bottom: 0.8em;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d8b049;
}

.top-service-more a::before {
  content: "";
  position: absolute;
  bottom: 9px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #d8b049;
  transform: rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .top-service{
    padding: 80px 0;
  }

  .top-service-item {
    display: block;
  }

  .top-service-ttl{
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .top-service-txt{
    margin-bottom: 20px;
  }

  .top-service-txt-inner {
    width: 100%;
}

  .top-service-img-inner{
    width: 100%;
  }

  .top-service-txt-inner{
    margin-right: 0;
    margin-bottom: 50px;
  }

  .top-service-item:not(:last-child){
    margin-bottom: 80px;
  }
}

/* ------------------------------------------
  top-access
------------------------------------------ */
.top-access{
  padding: 80px 0;
  background: #252525;
  color: #fff;
}

.top-access-ttl{
  text-align: center;
  font-size: 4rem;
  margin-bottom: 20px;
}

.top-access-inner{
  display: flex;
  align-items: center;
  gap: 30px;
}

.top-access-map{
  width: 50%;
  aspect-ratio: 3/2;
}

.top-access-txt{
  width: 40%;
}

.top-access-txt p{
  font-size: 1.6rem;
}

.top-access-txt p:not(:last-child){
  margin-bottom: 30px;
}

.top-access-txt-ttl{
  font-size: 2.4rem !important;
}

@media screen and (max-width: 767px){
  .top-access-ttl{
    font-size: 3rem;
  }

  .top-access-inner{
    display: block;
  }

  .top-access-map{
    width: 100%;
    margin-bottom: 20px;
  }

  .top-access-txt{
    width: 100%;
  }

  .top-access-txt p:not(:last-child){
    margin-bottom: 20px;
  }
}


/* ------------------------------------------
  top-column
------------------------------------------ */
.top-column{
  padding: 80px 0;
  background: #000;
  color: #fff;
}

.top-column-inner{
  width: 80%;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
}

.top-column-inner-item:nth-child(1){
  width: 20%;
}

.top-column-inner-item:nth-child(2){
  width: 70%;
}

.top-column-inner-item:nth-child(1){
  width: 30%;
}

.top-column-ttl{
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 100%;
}

.top-column-more{
  width: 20%;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  padding: 20px 40px;
  border: 1px solid #d8b049;
  border-radius: 100px;
}

.top-column-list-item{
  padding: 20px 0px 20px 20px;
  border-bottom: 1px solid #d8b049;
}

.top-column-list-item:first-child{
  border-top: 1px solid #d8b049;
}

.top-column-date{
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 5px;
}

.top-column-list-ttl{
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  .top-column-inner{
    display: block;
    width: 100%;
  }
  
  .top-column-ttl{
    font-size: 3rem;
    margin-bottom: 30px;
  }

  .top-column-inner-item:nth-child(1),
  .top-column-inner-item:nth-child(2){
    width: 100%;
  }

  .top-column-more{
    width: 70%;
  }
}

/* ------------------------------------------
  各固定ページ
------------------------------------------ */
.stay-mv{
  width: 100%;
  height: 60vh;
  position: relative;
  background: #252525;
  position: relative;
  overflow: hidden;
  background: url(../img/room3.webp) center / cover;
}

.stay-mv::before{
 content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* ← ここで濃さを調整 */
  z-index: 1;
}

.fasility-mv{
  width: 100%;
  height: 60vh;
  position: relative;
  background: #252525;
  position: relative;
  overflow: hidden;
  background: url(../img/facility1.webp) center / cover;
}

.fasility-mv::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* ← ここで濃さを調整 */
  z-index: 1;
}

.sightseeing-mv{
  width: 100%;
  height: 60vh;
  position: relative;
  background: #252525;
  position: relative;
  overflow: hidden;
  background: url(../img/sightseeing.webp) center / cover;
}

.sightseeing-mv::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* ← ここで濃さを調整 */
  z-index: 1;
}

.page-facilisty-content-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.page-facilisty-content-ttl{
  width: 50%;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
}

.page-facilisty-content-ttl span{
  font-size: 2.6rem;
  line-height: 100%;
  display: block;
  margin-bottom: 40px;
}

.page-facilisty-content-item img{
  width: 50%;
}

.page-facilisty-content-item:not(:last-child){
  margin-bottom: 80px;
}

.page-facilisty-content-item:nth-child(odd) .page-facilisty-content-ttl{
  order: 2;
}

.kannnonyama-img{
  margin-bottom: 30px;
}

.page-content-item-kannnonyama .page-content-item-txt{
  margin-bottom: 20px;
}

.kannnonyama-list-inner{
  display: flex;
}

.kannnonyama-list{
  width: 50%;
}

.kannnonyama-list-item{
  color: #fff;
  font-size: 2rem;
  text-decoration: underline;
  line-height: 100%;
  cursor: pointer;
  transition: .3s;
}

.kannnonyama-list-item:not(:last-child){
  margin-bottom: 20px;
}

.kannnonyama-list-item:hover{
  color: #d8b049;
}


.kannonyama-popup{
  width: 100%;
  margin: 0 auto;
  display: grid;
  place-content: center;
  /* width: 100vw;
  height: 100vh;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5); */
}

/* 背景用オーバーレイ */
.kannonyama-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.kannonyama-popup-inner{
  width: 60%;
  z-index: 99999;
  position: fixed;
  top: 23%;
  left: 50%;
  transform: translateX(-50%);
}

.kannonyama-popup-content{
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 30px;
  border: 5px solid #d8b049;
  position: relative;
  overflow: hidden;
}

.kannonyama-popup-close{
  position: absolute;
  top: 20px;
  right: 20px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.kannonyama-popup-close-inner{
  position: relative;
}

.kannonyama-popup-close span:nth-child(1){
  position: absolute;
  top: 15px;
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
}

.kannonyama-popup-close span:nth-child(2){
  position: absolute;
  top: 15px;
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
  transform: rotate(-45deg);
}

.kannonyama-popup-ttl{
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.kannonyama-popup-txt{
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.kannonyama-popup-tel{
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 10px;
  margin-left: 20px;
}

.kannonyama-popup-img{
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.kannonyama_guide{
  margin-top: 30px;
  display: inline-block;
}

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

  .page-facilisty-content-item{
    display: block;
  }

  .page-facilisty-content-ttl,
  .page-facilisty-content-item img{
    width: 100%;
  }

  .page-facilisty-content-ttl{
    margin-bottom: 30px;
  }

  .page-facilisty-content-ttl span{
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .kannnonyama-list-inner{
    display: block;
  }

  .kannnonyama-list{
    width: 100%;
  }

  .kannnonyama-list:nth-child(1) .kannnonyama-list-item:last-child{
    margin-bottom: 20px;
  }

  .kannonyama-popup-inner{
    width: 80%;
    top: 16%;
    overflow: scroll;
  }

  .kannonyama-popup-ttl{
    font-size: 2.4rem;
  }

  .kannonyama-popup-tel{
    display: block;
  }

  .kannonyama-popup-img{
    display: block;
  }

  .kannonyama-popup-img li{
    width: 100%;
  }

   .kannonyama-popup-img li:not(:last-child){
    margin-bottom: 20px;
   }
}





/* ------------------------------------------
  投稿ページ
------------------------------------------ */
.single-mv {
  width: 100%;
  height: 30vh !important;
  position: relative;
  background: #252525;
}

.archive-mv {
  width: 100%;
  height: 30vh !important;
  position: relative;
  background: #252525;
}

.single-content {
  background: #fff;
  padding: 100px 0;
}

.single-content-container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  align-items: flex-start;
}

.single-content-area {
  width: 65%;
}

.sidebar-area {
  top: 160px;
  width: 30%;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: var(--header-offset); /* ヘッダーの下で固定 */
  align-self: flex-start;
  height: fit-content;
}

.single-content-date {
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 100%;
}

.single-content-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.single-content-tumbnail {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #000;
  width: 100%;
}

.single-content-tumbnail img {
  width: 100%;
}

.single-content-inner {
  line-height: 1.5;
}

.single-content-inner h2 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 20px;
  background: #d8b049;
  color: #252525;
}

.single-content-inner h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 10px 10px 10px 20px;
  border-left: 15px solid #d8b049;
}

.single-content-inner h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 10px;
  border-top: 2px solid #d8b049;
  border-bottom: 2px solid #d8b049;
}

.single-content-inner p {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.single-content-inner img {
  margin-bottom: 40px;
  display: block;
  width: 100%;
}

.sidebar-item:not(:last-child) {
  margin-bottom: 30px;
}

.sidebar-item-ttl {
  font-size: 2rem;
  padding: 10px 20px;
  color: #252525;
  background: #d8b049;
  font-weight: bold;
}

.sidebar-menu-item a {
  font-size: 1.6rem;
  display: block;
  padding: 15px 20px;
  border-bottom: 2px solid #d8b049;
}

.publish-date{
  font-size: 1.2rem;
}

.archive-content-container {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.archive-content-area {
  width: 65%;
}

.archive-content {
  background: #fff;
  padding: 100px 0;
}

.archive-content-item a {
  display: block;
  padding: 40px 0;
  border-bottom: 2px solid #d8b049;
}

.archive-content-item:first-child a {
  padding-top: 0;
}

.archive-content-date {
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 100%;
}

.archive-content-ttl {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: bold;
}

.archive-content-thumnail img {
  width: 100%;
}

.single-content-prenext {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
  margin-top: 100px;
}

.single-content-prenext-btn a {
  display: block;
  padding: 10px 40px;
  font-size: 1.8rem;
  color: #d8b049;
  border: 1px solid #d8b049;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: bold;
}

.single-content-prenext-btn a:hover {
  background: #000;
}

.pagenation {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}
.pagenation-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagenation a,
.pagenation span {
  display: inline-block;
  padding: 6px 10px;
  text-decoration: none;
  line-height: 1;
  font-size: 2rem;
  font-weight: normal;
}

/* 指定の色 */
.pagenation a {
  color: #d8b049;
}

.pagenation .current {
  color: #222;
  font-weight: 700;
  pointer-events: none;
  border-bottom: 1px solid #000;
}
.pagenation .arrow {
  color: #d8b049;
}



table,
thead,
tbody,{
  display: block;
}

table{
  margin-bottom: 40px;
}

tr{
  font-size: 1.6rem;
    border-bottom: 1px solid #000;
}

th{
  font-weight: bold;
  font-size: 1.8rem;
  padding: 10px;
}

hr{
  border: none !important;
}

/* tr:first-child{
  border-top: 1px solid #000;
} */

td{
  padding: 10px;
  border-right: 1px solid #000;
}

td:first-child{
  border-left: 1px solid #000;
}

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

  .single-content,
  .archive-content {
    padding: 60px 0;
  }

  .single-content-container {
    display: block;
    padding: 0;
  }

  .sidebar-area {
    position: static;
  }

  .single-content-prenext {
    margin-top: 70px;
    margin-bottom: 50px;
    justify-content: center;
    gap: 20px;
  }

  .single-content-prenext-btn a {
    font-size: 1.4rem;
    padding: 10px 20px;
  }

  .single-content-area {
    width: 100%;
  }

  .sidebar-area {
    width: 100%;
  }

  .single-content-date {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .single-content-ttl {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }

  .single-content-tumbnail {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .single-content-inner h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }

  .single-content-inner h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .single-content-inner h4 {
    margin-bottom: 20px;
  }

  .single-content-inner p {
    font-size: 1.4rem;
  }

  .archive-content-container {
    display: block;
    padding: 0;
  }

  .archive-content-area {
    width: 100%;
  }

  .archive-content-date {
    margin-bottom: 10px;
  }

  .archive-content-item a {
    padding: 20px 0;
  }
}
