@charset "UTF-8";

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  color: #1f1f1f;
  font-family: 'Noto Sans JP', sans-serif;
  /*font-family: "LINE Seed JP", sans-serif;*/
  margin: 0;
  padding: 0;
}

/*
img {
  max-width: 100%;
  vertical-align: bottom;
}*/

li {
  list-style: none;
}

a {
  color: #1f1f1f;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

/* Swiper START */

.swiper {
  width: 100%;
  height: auto;
  padding-bottom: 40px;
  /* ドットを表示するためのスペースを下に確保 */
}

/* Swiperの動きを滑らか（一定速度）にする 
.swiper-wrapper {
  transition-timing-function: linear !important;
}*/

.swiper-slide {
  width: 100%;
  /*height: 100px;
  outline: 1px solid red;*/
}

.swiper-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1; /* 横16：縦9の比率を維持 */
  height: auto;         /* aspect-ratioを使う場合はheightはautoにする */
  /*height: 550px;*/
  object-fit: cover;
  outline: 0px solid blue;
}

/* --- 左右の矢印の調整 --- */
.swiper-button-prev,
.swiper-button-next {
  color: #000 !important;
  /*color: #ccc !important;*/
  /* 矢印の色 */
  top: 50%;
  /* 上下中央に配置（paddingの影響を考慮する場合は調整） */
  transform: translateY(-50%);
  width: 30px !important;
  /* 枠の幅 */
  height: 30px !important;
  /* 枠の高さ */
}

/* 矢印「そのもの」の大きさ（ここが重要！） */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
  /* 20px〜25pxくらいが標準的です */
  font-weight: bold;
  /* 太くしたい場合は追加 */
  display: block;
  /* 念のため追加 */
}

/* --- ドット（ページネーション）の調整 --- */
.swiper-pagination {
  bottom: 0 !important;
  /* コンテナの最下部に配置 */
}

/* ドット自体の色やサイズを変える場合 */
.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #ccc;
  opacity: 1;
}

/* アクティブなドットの色 */
.swiper-pagination-bullet-active {
  background: #000;
}




/* Swiper END */


main {
  padding-top: 20px;
}


/* 全体の調整 */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 30px;
  outline: 0px solid red;
  /*background-color: lightpink;*/
  text-align: center;
  /*#f7f8f8;*/
}

.ShopTitle {
  font-size: 40px;
  color: #333;
  /*border-bottom: 2px solid #dd0313;*/
  border-bottom: 3px solid red;
  display: inline-block;
  margin: 0 auto 20px auto;
  padding-bottom: 3px;
  outline: 0px solid red;
}

.ShopTitle-sub {
  font-size: 24px;
  margin-top: -15px;
  margin-bottom: 80px;
  letter-spacing: 0.2em;
  font-weight: bold;
}

.region {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  /* Flexboxで横並び */
  align-items: center;
  /* 中央に配置 */
  width: 95%;
  margin: 0 auto 20px auto;
}

.region:after {
  content: "";
  /* 必須 */
  flex-grow: 1;
  /* 残りの幅を全部埋める */
  height: 2px;
  /* 線の太さ */
  background-color: #333;
  /* 線の色 */
  margin-left: 10px;
  /* 文字と線の間隔 */
  margin-top: 3px;
}

/*SHOP CARD*/
/* 全体のコンテナ */
.shop-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
}

/* カード本体 */
.shop-card {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  margin-bottom: 25px;
}

/* 上段：マップと情報のレイアウト */
.card-content {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-bottom: 20px;
  flex-wrap: wrap;
  /* 画面が狭い時に折り返す */
}

/* マップの幅調整 */
.card-image {
  flex: 1;
  min-width: 200px;
  /*overflow: hidden;ネームカード非表示*/
}
/* ネームカード非表示
.card-image iframe {
    width: 100%;
    height: calc(100% + 300px);
    margin-top: -150px;
}*/


.card-image2 {
  flex: 1;
  min-width: 200px;
  /*overflow: hidden;ネームカード非表示*/
}

.card-image2 img {
  width: 350px;
}

.gmap_iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border-radius: 0px;
  aspect-ratio: 4 / 3;
}

/* 情報エリア */
.card-info {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  outline: 0px solid red;
}

/* タイトルのスタイル（右寄せ・フォントサイズ） */
.card-title {
  color: #000;
  /*color: #464646;*/
  font-size: 20px;
  /* サイズ調整 */
  text-align: left;
  margin: 15px 0 50px 0;
  font-weight: bold;
}

/* リスト形式のスタイル */
.info-list {
  margin: 0;
}

.info-row {
  display: flex;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.info-row dt {
  flex: 1;
  font-weight: bold;
  font-size: 14px;
  /*color: #dd0313;*/
  color: red;
  /*color: #e60012;*/
  text-align: left;
  outline: 0px solid red;
}

.info-row dd {
  margin: 0 0 0 10px;
  flex: 3;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  outline: 0px solid red;
  display: flex;
  align-items: center;
  /* 縦方向の中央揃え */
  gap: 10px;

}

.x-logo {
  width: 18px;
  display: inline-block;
  outline: 0px solid red;

}



/* 下段：画像3枚並び */
.box {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  /* 980px固定からレスポンシブに変更 */
}

.box .box-image {
  flex: 1;
}

.box .box-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  display: block;
  object-fit: cover;
}


.box .box-image_osaka img {
  width: 33.3%;
  height: auto;
  border-radius: 0px;
  margin: 0 auto;
  outline: 1px solid #ccc;
}



/*-------------------------------------------
Header
-------------------------------------------*/
.logo {
  text-align: center;
  margin-top: 20px;
}

.logo img {
  width: 500px;
}

h2 {
  font-size: 45px;
  font-weight: bold;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 8px;
  display: inline-block;
}

/*-------------------------------------------
Footer
-------------------------------------------*/
footer {
  background-color: #000;
  width: 100%;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 5px 0;
}

.bnr-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.bnr-item img {
  /*width: 200px;*/
  height: 40px;
}


.bnr-item2 img {
  height: 40px;
}

.toho-logo {
  margin-top: 30px;
  margin-bottom: 25px;
}

.toho-logo img {
  width: 150px;
}

copy {
  font-size: 10px;
}


/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 60px;
  }

  main {
    padding-top: 60px;
  }


  .container {
    width: 100%;
    outline: 0px solid red;
    margin: 0 auto;
  }

  /*-------------------------------------------
  Header
  -------------------------------------------*/
  #header {
    height: 60px;
  }

  #header .logo {
    max-width: 180px;
  }

}

/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  /* Swiper START */



  .swiper {
    width: 100%;
    padding-bottom: 30px;
    /* ドットを表示するためのスペースを下に確保 */
  }

  .swiper-slide {
    width: 100%;
    /*height: 100px;
  outline: 1px solid red;*/
  }

  .swiper-slide img {
    display: block;
    /* imgにflexは不要なので修正 */
    width: 100%;
    height: 28vh;
    /*aspect-ratio: 20 / 9;*//* 横16：縦9の比率を維持 */
    /*height: auto;*/      /* aspect-ratioを使う場合はheightはautoにする */
    /*height: 300px;*/
    object-fit: cover;
  }

  /* --- 左右の矢印の調整 --- */
  .swiper-button-prev,
  .swiper-button-next {
    color: #000 important;
    /*color: #ccc !important;*/
    /* 矢印の色 */
    top: 50%;
    /* 上下中央に配置（paddingの影響を考慮する場合は調整） */
    transform: translateY(-50%);
    width: 20px !important;
    /* 枠の幅 */
    height: 20px !important;
    /* 枠の高さ */
  }

  /* 矢印「そのもの」の大きさ（ここが重要！） */
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 20px !important;
    /* 20px〜25pxくらいが標準的です */
    font-weight: bold;
    /* 太くしたい場合は追加 */
    display: block;
    /* 念のため追加 */
  }

  /* --- ドット（ページネーション）の調整 --- */
  .swiper-pagination {
    bottom: 0 !important;
    /* コンテナの最下部に配置 */
  }

  /* ドット自体の色やサイズを変える場合 */
  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ccc;
    opacity: 1;
  }

  /* アクティブなドットの色 */
  .swiper-pagination-bullet-active {
    background: #000;
  }

  /* Swiper END */

  
  main {
    padding-top: 0px;
  }

  .container {
    max-width: 98%;
    outline: 0px solid red;
    padding: 20px 10px;
  }

  .ShopTitle {
    font-size: 25px;
    text-align: center;
    border-bottom: 2px solid red;
  }


  .ShopTitle-sub {
    font-size: 18px;
    outline: 0px solid red;
    margin-bottom: 15px;
  }

    
  .region {
    font-size: 20px;
  }

  .shop-wrapper {
    width: 100%;
    outline: 0px solid blue;
    padding: 5px;
  }

  
.card-image2 img {
  width: 90%;
}

    
  .card-title {
    font-size: 20px;
    /* サイズ調整 */
    text-align: center;
    margin: 0px auto 5px auto;
  }

  
  .info-row {
    display: block;
    text-align: center;
  }


    
  .info-row dt {
    text-align: center;

  }
    
  .info-row dd {
    margin: 0 auto;
    text-align: center;
    display: block;
    position: relative;
  }

    
  .x-logo {
    position: absolute;
    width: 20px;
    display: inline-block;
    outline: 0px solid red;
    top:0px;
    left: 60px;
  }

    
  /* 下段：画像3枚並び */
  .box {
    display: block;
  }

    
  .box .box-image img {
    width: 90%;
    height: auto;
    border-radius: 0px;
    display: block;
    object-fit: cover;
    margin: 0 auto 8px auto;
  }
    
  .box .box-image_osaka img {
    width: 90%;
    height: auto;
    border-radius: 0px;
    margin: 0 auto;
    outline: 1px solid #ccc;
  }


  /*-------------------------------------------
  Footer
  -------------------------------------------*/

    
  .bnr-item img {
    width: 150px;
}

}