@charset "UTF-8";
/* =================================================== */
/*以下htmlの共通CSS
hall-all.html
hall-○○○.html✕6つ
の合計7つのhtmlと共通
*/
/* =================================================== */


/* =================================================== */
/*----　hall-○○○.html　-----------------------*/
/* =================================================== */
/* 画像エリア */
.hall-detail-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: center;
  border: solid 1px #333;
  padding: 40px 32px;
}

.hall-image-area {
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  width: 100%;
}

.hall-image {
  width: 100%;
  background: #f5f5f5;
  /* height: 420px; */
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

/* メイン画像 */
.hall-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center; */
  display: block;
}

/* サムネ */
.hall-gallery {
  display: grid;
  grid-template-columns: repeat(4, 80px);
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.hall-gallery img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
}

/* hover */
.hall-gallery img:hover {
  opacity: 1;
}

/* active */
.hall-gallery img.active {
  opacity: 1;
  outline: 2px solid #caa85c;
}

.hall-info h2 {
  margin-bottom: 20px;
}

.hall-info .desc {
  margin-bottom: 30px;
}

/* アイコン */
.hall-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.hall-icons li {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* アイコン画像 */
.hall-icons img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* テキスト */
.hall-icons span {
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* 電話番号 */
.hall-tel {
  margin-bottom: 8px;
}

/* 備考 */
.hall-note {
  font-size: 16px;
}


/*----　会館マップ　-----------------------------------*/
.access-inner {
  display: flex;
  min-height: 300px;
}

/* 左マップ */
.access-map {
  width: 50%;
  position: relative;
}

.access-map iframe {
  width: 100%;
  height: 100%;
}

/* 右テキスト */
.access-info {
  width: 50%;
  padding: 40px;
}

.access-item {
  margin-bottom: 30px;
}

.access-title {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

/* アイコン共通 */
.access-title::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 電車アイコン */
.access-item:nth-child(1) .access-title::before {
  background-image: url("../image/icon/train.svg");
}

/* 車アイコン */
.access-item:nth-child(2) .access-title::before {
  background-image: url("../image/icon/car.svg");
}

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

.access-address {
  margin-top: 40px;
  font-size: 14px;
}

.access-address a {
  display: inline-block;
  margin-left: 10px;
  text-decoration: underline;
}

.access-address a::before {
  content: "📍";
}



/*----　設備一覧　-----------------------------------*/

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

.spec-table th,
.spec-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #ccc;
}

/* 左の項目 */
.spec-table th {
  background: #e9e9e9;
  font-weight: normal;
  text-align: left;
  width: 20%;
}

/* 値（黒背景） */
.spec-table td {
  width: 30%;
}

/*----　アイコン一覧　---------*/
.facility {
  padding: 40px 20px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 20px;
  margin: 0 auto;
}

.facility-item {
  text-align: center;
}

.icon-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 50%;
  height: auto;
}

.facility-item p {
  margin-top: 10px;
}


/*----　館内のご案内　-----------------------------------*/

.hall-main-gallery{
  margin: 24px 0;
}
.hall-main-gallery h4{
    font-size: 28px;
    padding-bottom: 8px;
    color: #726658;
    font-weight: 700;
}

.hall-row-gallery {
  margin-top: 16px;
}

/* 行共通 */
.hall-row {
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
}

/* アイテム */
.hall-row-item img {
  width: 100%;
  height: auto;
  display: block;
  background: #ccc;
}

.hall-row-item p {
  margin-top: 8px;
  text-align: center;
}

/* 列数固定 */
.row-2 {
  grid-template-columns: repeat(2, 1fr);
}

.row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.row-4 {
  grid-template-columns: repeat(4, 1fr);
}



/**----　総合葬儀場 すみれホール対応エリア　--------------------**/
.hall-area-detail{
  padding: 16px 10px;
  border: solid 1px #333;
}


/* ファーストビュー以降を遅延描画 */
#hall-map,
#hall-facilities,
#hall-infomations,
#hall-area,
.common-plan,
.top-emergency-banner,
.top-menber-banner,
.hall-support,
.footer{
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}


/* 以下レスポンシブ------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .hall-detail-inner {
    grid-template-columns: 1fr;
    gap: 0px;
    padding: 36px 24px;
  }
  .hall-image {
    max-width: 700px;
    margin: 0 auto;
  }

  .hall-info {
    padding: 30px 20px 10px;
  }

  .hall-gallery {
    justify-content: center;
  }

  .hall-gallery img {
    width: 70px;
    height: 52px;
  }
  .hall-info .desc {
  margin-bottom: 24px;
  }
  /* アイコン */
  .hall-icons {
    margin: 0 0 24px;
  }

/*----　会館マップ　-----------------------------------*/
.access-inner {
    flex-direction: column;
  }

  .access-map,
  .access-info {
    width: 100%;
  }

  .access-map {
    height: 300px;
  }

/*----　設備一覧　-----------------------------------*/

  .spec-table th,
  .spec-table td {
    padding: 10px;
  }

  .spec-table th {
    width: 12%;
  }

  .spec-table td {
    width: 20%;
  }

/*----　館内のご案内　-----------------------------------*/

.hall-main-gallery h4{
  font-size: 22px;
  padding-bottom: 8px;
  color: #726658;
  font-weight: 700;
}
}



/* スマホ対応 */
@media (max-width: 767px) {
  .hall-detail-inner {
    grid-template-columns: 1fr;
    padding:24px 16px;
  }

  .hall-info {
    padding: 20px 15px 10px;
  }

  .hall-info h2 {
    font-size: 18px;
  }

  /* メイン画像（SP初期画像） */
  .hall-image-area picture,
  .hall-image-area picture img {
    max-width: 450px;
    margin: 0 auto;
  }

  .hall-image-area picture img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* サムネ */
  .hall-gallery {
    display: grid;
    grid-template-columns: repeat(4, 60px);
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
  .hall-gallery img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
  }
    /* 備考 */
  .hall-note {
    font-size: 14px;
  }

/*----　会館マップ　-----------------------------------*/
  .access-info {
    padding: 20px;
  }

  .map-label {
    font-size: 20px;
  }

  .access-item {
    margin-bottom: 24px;
  }

  .access-address {
    margin-top: 24px;
    font-size: 12px;
  }

  /*----　設備一覧　-----------------------------------*/

  .spec-table {
    border: none;
  }

  .spec-table tbody,
  .spec-table tr {
    display: block;
    width: 100%;
  }

  .spec-table tr {
    margin-bottom: 0px;
    border-bottom: 0px;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .spec-table th {
    background: #e9e9e9;
    padding: 10px;
  }

  .spec-table td {
    padding: 12px;
  }

/*----　アイコン一覧　--------------*/
.facility {
  padding: 24px 0px 0px;
}
  .facility-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

/*----　館内のご案内　--------------*/
.hall-row {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom:12px;
  }

.hall-row-item img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

.hall-main-gallery h4{
  font-size: 20px;
  padding-bottom: 8px;
  color: #726658;
  font-weight: 700;
}

}


/* =========================
   480px以下（スマホ）
========================= */
@media (max-width: 480px) {


/*------ 総合葬儀場 すみれホール -----*/
.hall-icons span{
  font-size: 12px;
}
/* アイコン */
.hall-icons {
  gap: 20px 12px;
}
.hall-icons li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/*----　アイコン一覧　--------------*/
.facility-item p{
  font-size: 10px;
}
.facility-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

}




/* =======================================================================================  */
/*----　hall-all.html　-----------------------*/
/* =======================================================================================  */
/*大阪葬祭会館一覧*/
section#hall-main{
  margin-top: 48px;
}


/*公営斎場 2列レイアウト*/
section.public-hall-grid,section.hall-main.public-hall-card{
  margin-top: 16px;
}
section.hall-main.public-hall-card.section-none{
  margin-top: 0px;
}

/*↑既存section nmargin-top削除・修正↑*/


/* =================================
大阪葬祭会館一覧
================================= */
.hall-card-brown {
  border: 2px solid #726658;
  padding: 40px 32px;
  border-radius:16px;
  box-shadow: 0 10px 24px rgba(122,59,26,0.12);
}

.hall-card-brown .hall-detail-inner {
  border: none;
  padding: 0;
  gap: 50px;
}

/* 左画像 */
.hall-card-brown .hall-image {
  aspect-ratio: 4 / 3;
}

/* ラベル */
.hall-label {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hall-label span {
  border: 1px solid #2f6db7;
  color: #2f6db7;
  padding: 6px 12px;
  font-size: 14px;
  white-space: nowrap;
}

/* タイトル */
.hall-dark-title {
  color: #726658;
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 右側 */
.hall-address-wrap {
  margin-bottom: 24px;
}

/* キャッチコピー */
.hall-address-wrap h4 {
  color: #726658;
}

/* 葬儀タイプ */
.hall-address-wrap .hall-type {
  color: #fff;
  font-weight: 700;
  display: flex;
  margin: 8px 0;
}

.hall-address-wrap li {
  margin-right: 10px;
  padding: 4px 24px;
  background-color: #726658;
}

/* 住所 */
.hall-address-wrap p {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.hall-address-wrap span {
  color: #726658;
  min-width: 90px;
  font-weight: bold;
}


/* アイコン */
.hall-dark-icons {
  grid-template-columns: 1fr 1fr;
  gap: 16px 0px;
  margin-bottom: 40px;
  position: relative;
}

/* 中央線 */
.hall-dark-icons::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.2);
}


.hall-dark-icons img {
  width: 32px;
  height: 32px;
}

/* ボタン */
.hall-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #726658;
  color: #fff;
  text-decoration: none;
  padding: 8px 40px;
  width: 100%;
  margin-left: auto;
  transition: 0.3s;
  font-size: 18px;
}

.hall-dark-btn:hover {
  opacity: 0.8;
}


/* =================================
公営斎場 2列レイアウト
================================= */
section.public-hall-grid,section.hall-main.public-hall-card{
  margin-top: 16px;
}
section.hall-main.public-hall-card.section-none{
  margin-top: 0px;
}
/*↑既存section nmargin-top削除・修正↑*/

.public-hall-card .hall-address-wrap{
  margin-bottom: 0;
}

.public-hall-card .hall-detail-inner{
  gap: 16px;
}
.public-hall-card .hall-card-brown{
  padding: 24px 12px;
}

.public-hall-grid > section{
  margin: 0;
}
/*↑上記既存のCSSを使用した変更箇所↑*/

.public-hall-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* hall-main */
.public-hall-card{
  width: 100%;
}

.public-hall-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* 公営斎場画像を正方形 */
.public-hall-card .hall-image{
  aspect-ratio: 1 / 1;
}

.public-hall-card .hall-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右側 */
.public-hall-info .kouei{
  border: solid 1px #669933;
  display: inline-block;
  color: #669933;
  padding: 6px 12px;
  width: fit-content;
  margin-bottom: 4px;
  font-size: 14px;
}

.public-hall-info{
  width: 100%;
  padding: 0;

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.public-hall-info h4{
  color: #726658;
}

.public-hall-info p{
  font-size: 14px;
}
.public-hall-info p span{
  color: #726658;
  font-weight: 800;
}

/* 注釈 */
.public-hall-note{
  margin-top: 16px;
}


























/* =================================
   タブレット
================================= */
@media (max-width: 1024px){



/* =================================
大阪葬祭会館一覧
================================= */
.hall-card-brown {
  border: 2px solid #726658;
  padding: 36px 24px;
  border-radius:16px;
  box-shadow: 0 10px 24px rgba(122,59,26,0.12);
}

.hall-card-brown .hall-detail-inner {
  border: none;
  padding: 0;
  gap: 0px;
}
.hall-info.hall-dark-info{
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0px 0 0;
}

/* 住所 */
.hall-address-wrap {
  margin-bottom: 16px;
}

/* アイコン */
.hall-dark-icons {
  grid-template-columns: 1fr 1fr;
  gap: 20px 0px;
  margin-bottom: 32px;
  position: relative;
}



/* =================================
公営斎場 2列レイアウト
================================= */

  .public-hall-card .hall-card-brown{
    /* padding: 24px 16px;
    display: block;
    height: auto; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
  }

/*↑上記既存のCSSを使用した変更箇所↑*/
  .public-hall-inner{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    align-items: start; */
  }

  /* 画像サイズ調整 */
  .public-hall-card .hall-image-area{
    max-width: 160px;
    margin: 0 auto;
    width: 100%;
    padding-bottom: 6px;
  }

  .public-hall-note{
    margin-top: 8px;
  }

  .public-hall-grid{
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    /* align-items: start; */
  }

  .public-hall-card{
    display: flex;
    height: 100%;
    /* height: auto; */
  }

  .public-hall-info{
    max-width: 320px;
    /* width: 100%; */
    width: fit-content;   /* ←追加 */
    margin: 0 auto;       /* ←追加 */
    justify-self: center;
    text-align: left;
  }

  .public-hall-grid > .hall-area-text{
    grid-column: 1 / -1;
    margin-bottom: 16px;
  }

  /* 池田市・箕面市だけ高さ自動に戻す */
  #ikeda-hall + .hall-main .public-hall-inner,
  #minoo-hall + .hall-main .public-hall-inner{
    flex: initial;
    height: auto;
  }

  #ikeda-hall + .hall-main,
  #minoo-hall + .hall-main{
    height: auto;
  }

  #ikeda-hall + .hall-main .hall-card-brown,
  #minoo-hall + .hall-main .hall-card-brown{
    height: auto;
  }

}




/* =================================
   スマホ
================================= */
@media screen and (max-width: 767px) {
  /*--- 大阪葬祭会館一覧 ---*/

  /* ラベル */
  .hall-label {
    display: flex;
    align-items: center;
    justify-content:center;
    gap: 4px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }

  .hall-label span {
    border: 1px solid #2f6db7;
    color: #2f6db7;
    padding: 4px 6px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hall-address-wrap p {
    display: flex;
    gap: 0px;
    margin-bottom: 8px;
  }

  .hall-info.hall-dark-info{
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 0px 0 0;
  }

  .hall-dark-icons {
    gap: 12px;
    margin-bottom: 24px;
  }

  .hall-dark-icons::after {
    display: none;
  }

  .hall-dark-btn {
    width: 100%;
    margin-left: 0;
  }
  .hall-dark-icons img {
  width: 28px;
  height: 28px;
  }

  /* ボタン */
.hall-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #726658;
  color: #fff;
  text-decoration: none;
  padding: 8px 40px;
  width: 100%;
  margin-left: auto;
  transition: 0.3s;
  font-size: 16px;
}

 /* =========================
     公営斎場カード（スマホ）
  ========================= */
  

  /* .public-hall-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  } */

  .public-hall-card {
    display: block;
    padding: 0px;
  }

  .public-hall-card .hall-card-brown {
    padding: 16px 12px;
    border-radius: 12px;
    margin: 0 auto;
  }

  .public-hall-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .public-hall-card .hall-image {
    aspect-ratio: 1 / 1;
  }

  .public-hall-info {
    width: 100%;
    max-width: 100%;
    padding: 0;
    text-align: left;
  }

  .public-hall-info h4 {
    font-size: 16px;
  }

  .public-hall-info p {
    font-size: 13px;
    line-height: 1.6;
  }

  .hall-dark-icons {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .hall-address-wrap {
    margin-bottom: 12px;
  }

  .hall-dark-btn {
    font-size: 15px;
    padding: 10px 20px;
  }


  .public-hall-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .public-hall-card .hall-card-brown {
    padding: 14px 8px;
  }

  .public-hall-card .hall-image-area {
    max-width: 140px;
  }

  .public-hall-info p {
    font-size: 13px;
    line-height: 1.5;
  }

}


/* ここで1列にする（スマホだけ） */
@media screen and (max-width: 600px) {
  .public-hall-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  section.public-hall-grid.sp-none{
    gap:0px;
  }

   /* 画像サイズ統一 */
   .public-hall-card .hall-image-area {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
  }

  .public-hall-card .hall-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .public-hall-card .hall-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .public-hall-info p {
    font-size: 14px;
    line-height: 1.5;
  }

}