
/*ヘッダーの上側*/
.header-upper{
    background-color: aqua;
    height: auto;
    width: auto;
    align-content: center;
}
/*ロゴマーク*/
.upper-logo{
    text-align: center;
}
.logo{
    width: auto;
    height: auto;

  align-items: center;
}
/*お問い合わせ*/
.upper-container{
    display: flex;
    justify-content: end;
}

.item1{
    width: 130px;
    margin:0 10px 0;
    background: #fff;
    text-align: center;
    font-size: 20px;
}

/*ヘッダーの下側*/
.header-lower{
    background-color: #0000FF;
    display: flex;
    width: 100%;
    justify-content: space-around;
}


/*ナビゲーション*/
#drop-down-menu {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  width: auto;
  z-index: calc(infinite);
}
#drop-down-menu li {
    float: left;
    width: 240px;
    position: relative;
}

#drop-down-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #0000FF;
  display: block;
  padding: 5px;
}
#drop-down-menu li:hover a {
  background-color: #000080;
}
#drop-down-menu1 li:hover ul {
  display: block;
}
#drop-down-menu li ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: none;
}

#drop-down-menu li:hover ul 
{display: block;
 height: 200px;
 }

#drop-down-menu li ul a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  background-color: #0000FF;
}
#drop-down-menu li ul li:hover a {
  background-color: #008080;
}
#drop-down-menu:after {
  content: "";
  clear: both;
  display: block;
}


/*メインに対する指定*/
main{
    text-align: center;

}

/*画像スライドショー*/
.scroll-gallery {
  width: auto;
  overflow: hidden;
  margin: 20px;
  border-style: solid;
  border-color: black;
}

.scroll-track {
  display:flex;
  width: 1000px;
  animation: scroll-left 70s linear infinite;
}

.scroll-gallery img {
  height: 300px; /* 高さは自由に調整可 */
  width: 400px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ホバー時にアニメーション停止（任意） */
.scroll-gallery:hover .scroll-track {
  animation-play-state: paused;
}


/*お知らせ欄*/
.info-block-body{
    display: flex;
    justify-content: space-around;
    margin: 10px;
}

.info-block h2{
    text-align: center;
    background-color: #009688;
    color: #FFFFFF;}

.info {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 600px;
  height: 25em;
  margin: 0 auto;
  overflow-y: scroll
}

@media (min-width:768px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap
  }
}

.info dd,
.info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em
}

.info dt {
  font-style: normal;
  font-weight: initial
}

@media (min-width:768px) {
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40
  }
}

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40
}

.info dt time {
  margin-right: .5em
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #009688;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center
}

.info time {
  color: black
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40
}

@media (min-width:768px) {
  .info dd {
    width: calc(100% - 12.5em)
  }
  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40
  }
}

.info dd:nth-of-type(-n+3) {
  position: relative
}

/*フッター*/
footer{
    background: navy;
    height: 100px;
    width: 100%;
}
.SNS-icon{
    display: flex;
    float: right;
}

/*SNS画像*/
.facebook-logo{
    width: 50px;
    height: 50px;
    margin: 10px;
}

.Instagram-logo{
    width: 50px;
    height: 50px;
    margin: 10px;
}

.X-logo{
    width: 50px;
    height: 50px;
    margin: 10px;
    background: #FFFFFF;
}

.YouTube-logo{
    width: 50px;
    height: 50px;
    margin: 10px;
}

.note-logo{
    width: 50px;
    height: 50px;
    background:black;
    margin: 10px;
}

.copyright{
    color: white;
    text-align: center;
    align-items: end;
}
