

/*------ここからメイン-----------*/

/*------ここからトップロゴ-----------*/

.slideshow {
  width: 100%;           
  height: 100vh;         /* 画面いっぱいの高さ */
  margin: 0;             /* 余計な余白を消す */
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: background-image 0.8s ease-in-out;
}

.top-logo {
  position: relative;
  width :100%;
  background-size: cover;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
}
.logo-moji {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shadow {
  color: #fff;
  font-size: 120px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.slide-text {
  white-space: nowrap;           /* 折り返し禁止 */
  color: #fff;
  font-size: 120px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);

  animation: slide-left 6s linear infinite;
}
/* 左 → 右 */
@keyframes slide-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*------ここまでトップロゴ-----------*/

/*------ここからアクセス-----------*/
#access{
scroll-margin-top: 130px; 
max-width: 1100px;
margin: 0 auto;
}
.span1{
color:#999999;
}
.acc-bo{
border-top:solid 1px #ccc;
height:1px;
width: 100%;
margin: 5px auto;
}
.h2-acc1{
  display: flex;
  align-items: center; /* 縦位置を揃える */
  gap: 10px;           /* 文字と画像の間隔 */
}
.map-n{
width:100px;
}
.acc1{
margin-left:30px;
display: flex;
max-width:1100px;
gap: 25px;
}
.acc2{
flex:1;
margin:15px;
}

/* 電話番号のアイコンの設定 */
.icon-list {
  list-style: none;
  padding-left: 0;
}
.icon-list li {
  position: relative;
  padding-left: 28px; /* アイコン分の余白 */
}
.icon-tel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url(denwa1.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.icon-fax::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-image: url(fax.png);
  background-size: contain;
  background-repeat: no-repeat;
}
/* 電話番号のアイコンここまで */

#map{           /* googleMAPの部分 */
scroll-margin-top: 130px;
margin-left:30px;
width:1000px;
}
#map2{           /* googleMAPの部分 */
scroll-margin-top: 130px;
margin-left:30px;
width:1000px;
width:1000px;
margin-bottom: 60px;
}
/*------ここまでアクセス-----------*/

/*------ここまでメイン-----------*/

