html {
    scroll-behavior: smooth;
    height: 100%;
    width: 100%;
    margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  background-color: #f3f3f3;
  padding: 0;
  overflow-x: hidden;
  font-family: "Suisse Int", "Noto Sans JP", sans-serif;

}

main {
  margin-top: 100px;
}

h3 {
  letter-spacing: 3px;
}

.logo {
  
  text-align: center ;
  
}

.logo img {
  height: 50%;
  width: 50%;
  margin-top: 100px;
}

/*.info li {
 list-style: none;
  text-align: center;
}*/
.news {
  background-color: white;
  border-radius: 8px;
  margin: 50px 50px 10px 50px;
  padding: 30px 10px 30px 10px ;
}
.newslist {

  margin: 5px auto;
  border-top: 1px solid #42495d;
  width: 95%;
}
.newslist ul {
  padding: 5px 5px;
}
.newslist li {
  padding: 15px 5px;
  border-bottom: 1px solid #42495d;
  text-overflow: ellipsis;
  overflow: hidden;
  /*white-space: nowrap;*/
  text-align: left;
}
.date {
  font-size: 16px;
  margin-right: 10px;
  color: rgb(3, 45, 138);

}

.newstext a {
  text-decoration: none;
  color: #42495d;
}
@media screen and (max-width: 600px) {
  .newstext a{
      display: block;
      margin-top: 10px;
      text-overflow: ellipsis;
      overflow: hidden;
  }
  .newstext a {
    text-decoration: none;
    color: #42495d;
    width: 100%;
  }
  .news {
    background-color: white;
    border-radius: 8px;
    margin: 30px;
    padding: 5px 10px 30px 10px ;
  }

}
.info h2 {
  text-align: center;
  letter-spacing: 3px;
}
.links a {
  background-color: white;
  padding: 15px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 100px; 
  margin-top: 40px;
  border: 1.9px solid #474646fa;
}

.links h2{
  text-align: center;
  letter-spacing: 3px;
}

.links {
  text-align: center;
  margin-top: 100px;
}

.about_kikaku a {
    padding: 5px 25px;
    background-color: white;
    text-decoration: none;
    display: inline-block;
    margin: 30px; 
    border: 1.9px solid #474646fa;
    
}
@media screen and (max-width: 600px) {
  .about_kikaku a {margin: 20px;
  }
}

.about_kikaku {
  text-align: center;
  margin-top: 100px;
}

.about_kikaku h2 {
  text-align: center;
  letter-spacing: 3px;

}

.card {
  display: inline-block;
  width: 250px;
  /*padding: 16px;*/
  text-decoration: none;
  color: black;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.card .icon {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.flow h3 {
  text-align: center;
}

.flow p {
  text-align: center;
}

.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: floralwhite;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}



.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(30%) translateX(10%) rotate(-45deg);
   
}


