@charset "utf-8";

/* メインスタート */
.slideshow {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slideshow img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
  position: relative;
}

.main {
  position:relative;
}

.main h2{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff9e6;
  font-size: 40px;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,0.6);
  line-height: 1.6;
  font-weight: bold;
  font-family: "Zen Maru Gothic", sans-serif;
  z-index: 2;
  white-space: nowrap;
}

/* コンセプトスタート */
.concept .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 1600px;
  width: 80%;
  margin: 0 auto;
}

.container img {
  max-width: 400px;
  height: auto;
}

.text {
  max-width: 790px;
}

.text h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.text p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 2;
}

/* メニュースタート */
.menu-items {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  padding: 0 30px;
  justify-content: space-between;
}

.menu-item {
  display: flex;
  /* 横並び（画像 + テキスト） */
  align-items: flex-start;
  width: calc(50% - 20px);
  /* 2カラム（隙間調整あり） */
  gap: 18px;
}

.menu-item img {
  width: 250px;
  height: auto;
  object-fit: cover;
  display: block;
}

.menu-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-info h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: bold;
  color: #8b4e13;
}

.menu-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.menu-info .price {
  text-align: right;
  font-weight: bold;
  color: #8b4e13;
  font-size: 16px;
  margin-top: 10px;
}

/* 料金スタート */

.charge-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 3px solid #8b4e13;
  border-radius: 16px;
  padding: 40px;
  margin: 50px auto;
  background-color: #fff9e6;
  gap: 40px;
  max-width: 1200px;
  width: 90%;
}


.charge-info {
  flex: 1;
  width: 100%;
}

.charge-info h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #8b4e13;
  display: flex;
  align-items: baseline;
  gap: 100px;
}

.charge-info h3 .sub-title{
  font-size: 20px;
  color: #8b4e13;
}

.charge-info table {
  width: 100%;
  border-collapse: collapse;
}

.charge-info th,
.charge-info td {
  padding: 12px 10px;
  font-size: 20px;
  text-align: left;
  font-weight: bold;
}

.charge-info td:nth-child(2) {
  text-align: center;
  width: 30%;
}

.charge-info td:nth-child(3) {
  text-align: right;
  width: 20%;
}

.charge-info tr {
  border-bottom: 2px solid #8b4e13;
}

.charge-img {
  flex: 1px;
  max-width: 500px;
}

.charge-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* 猫スタート */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  gap: 20px; 
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

.cat-card {
  background: #fff;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 5px #0000001a;
}

.cat-card img {
  width: 100%;
  height: auto;
  display: block;
}

.cat-card p {
  font-weight: bold;
  font-size: 20px;
  margin: 20px 0;
  color: #8b4e13;
}

.cat-card img:hover{
  opacity: 0.5;
}

/* アクセススタート */
.access .map {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
}

.access iframe {
  flex: 0 0 48%;
  max-width: 400px;
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

.access p {
  flex: 1 1 48%;
  min-width: 260px;
  font-size: 15px;
  line-height: 2;
}

.access p span {
  font-size: 20px;
  font-weight: bold;
  color: #8b4e13;
  display: inline-block;
  margin-bottom: 10px;
}


/* レスポンシブ対応スタート */

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

  /* メインスタート */
  .main h2{
    font-size: 24px;
  }

  .slideshow {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .slideshow img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  /* コンセプトスタート */
  .concept .container{
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }

  .concept .container img {
    max-width: 100%;
    height: auto;
  }

  .concept .text {
    max-width: 100%;
  }

  .concept .text h2 {
    font-size: 20px;
  }

  .concept .text p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* メニュースタート*/
  .menu-items{
    flex-direction: column;
    gap: 20px;
  }

  .menu-item{
    flex-direction: column;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .menu-item img{
    width: 100%;
    max-width: 400px;
  }

  .menu-info h3 {
    font-size: 15px;
  }

  .menu-info p {
    font-size: 14px;
  }

  .menu-info .price {
    font-size: 14px;
    margin-top: 8px;
  }

/* 料金スタート */
.charge-box {
  flex-direction: column-reverse; 
  text-align: center;
  padding: 20px;
  gap: 20px;
  margin: 30px 15px;
}

.charge-img{
  max-width: 100%;
}

.charge-img img{
  width: 100%;
  height: auto;
}

.charge-info h3{
  font-size: 20px;
  flex-direction: column;
  gap: 5px;
}

.charge-info h3 .sub-title{
  font-size: 14px;
}

.charge-info table{
  font-size: 14px;
}

.charge-info th{
  white-space: nowrap;
  font-size: 14px;
  width: 30%;
}

.charge-info td {
  white-space: nowrap;
  font-size: 14px;
  padding: 8px 6px;
}

/* 猫紹介スタート */
.gallery {
  grid-template-columns: repeat(2, 1fr);
}

.cat-card p{
  font-size: 14px;
}

/* アクセススタート */
  .access .map{
    flex-direction: column-reverse;
    margin: 30px auto;
  }

.access iframe {
  width: 100%;
  aspect-ratio: 16/10;
}

.access p {
  font-size: 14px;
  text-align: center;
}

.access p span {
  font-size: 20px;
}

}
