@charset "UTF-8";
body{
  background: linear-gradient(45deg, #fff, #f4f9f6, #49b662);
    background-size: 200% 200%;
    animation: bggradient 20s ease infinite;
}
@keyframes bggradient {
  0% {
    background-position: 0% 80%;
  }

  50% {
    background-position: 100% 80%;
  }

  100% {
    background-position: 0% 80%;
  }
}
#access {
  width: max(70%, 700px);
    margin: 0 auto;
    padding:100px 0;
    font-family: var(--font-sans);
}
#access iframe{
  width:100%;
  height:700px;
  margin:0 auto;
}
#access h2{
  margin: 0;
  padding:5px ;
  width:fit-content;
  font-size: 30px;
  font-weight: 400;
  background-color: var(--clr-deepgreen);
}
#access_container{
  display: flex;
  flex-direction:row;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding-top:150px;
}
.item_container{
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 600px;
}
.item {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.item dt{
  width: 140px;

}
.item p{
  width:100px;
  margin:0;
  padding: 0 5px;
  background-color: var(--clr-deepgreen);
  font-size: 20px;
  font-weight:400 ;
  justify-content: space-between;
}
.item dd{
  margin:0;
  padding:0;
  font-size: 18px;
  color:var(--clr-bl);
}
#img {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding-top: 150px;
}
@media (max-width: 767px){
#access {
    width: max(90%,300px);
    padding: 50px 0;
}
#access iframe {
  height: 300px;
  padding-top: 50px;
}
#access h2 {
  font-size: 22px;
}
#access_container {
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
}
.item {
  flex-direction: column;
}
.item_container {
  width:100%;
  padding-top:50px;
}

.item dt {
  width: 100%;
}
.item p{
  font-size: 16px;
}

.item dd {
  width:100%;
  font-size: 16px;
  padding-top:5px ;
}

#img {
  flex-direction: column;
  padding-top:50px;
  gap:40px;
}

#img img{
  width: 100%;
  height: auto;
}
}