@charset "utf-8";

.info{
  padding-bottom:100px;
  position:relative;
}

.info::before{
  content:"";
  position:absolute;
  width:100%;
  height:70%;
  border-radius:200px 200px 0 0;
  background:#FFF8ED;
  bottom:0;
  left:0;
  z-index: -1;
}

.info-box{
  padding:20px 2rem;
  border:2px dashed #707070;
  margin-top:1.5rem;
}

.info-box h4{
  color:#01A0EA;
  font-size:14px;
  margin-bottom:8px;
}

.info h3{
  text-align:center;
  color:#01A0EA;
  font-size:clamp(1rem, 0.818rem + 0.61vw, 1.5rem);
}

.info-wrap{
  display:flex;
  margin-top:2rem;
  justify-content: space-between;
}

.info-left{
  width:47.5%;
}

.info-left .name{
  font-size:clamp(1.125rem, 0.92rem + 0.68vw, 1.688rem);
  margin-top:2rem;
}

.info .container > img{
  border-radius:20px;
  aspect-ratio: 1152 / 475;
  object-fit: cover;
  margin:2.5rem 0;
}

.info-right{
  width:47.5%;
}

.access{
  margin:100px 0 120px;
}

.access h3{
  color:#01A0EA;
  font-size:20px;
  margin-bottom:1rem;
}

.access-wrap{
  display:flex;
  justify-content: space-between;
}

.access-left{
  width:54%;
}

.access-left iframe{
  width:100%;
  border:none;
}

.access-right{
  width:42%;
}

.access-table{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px dashed #707070;
}

.access-table img{
  width:2rem;
}

.access-table div{
  width:calc(100% - 3rem);
}

.access-table h3{
  color:#01A0EA;
  font-size:20px;
  margin-bottom:4px;
}

.access-table p:last-child{
  color:#01A0EA;
  margin-top:8px;
}

.access-bottom{
  margin-top:3rem;
}

.access-list-wrap{
  box-shadow:0px 3px 6px rgba(0,0,0,0.5);
  border-radius:24px;
  padding:1rem 5% 3rem;
}

.access-list{
  display:flex;
  padding:2rem 0;
  border-bottom:2px dashed #707070;
}

.access-list p:first-child{
  width:120px;
  color:#01A0EA;
}

.access-list p:last-child{
  width:calc(100% - 120px);
  padding-left:1rem;
}

.access-list-img{
  display:flex;
  gap:2.5rem;
  margin-top:2.5rem;
}

.access-list-img img{
  border-radius:1rem;
  aspect-ratio:533/355;
  object-fit:cover;
  width:calc((100% - 2.5rem)/2)
}

@media screen and (max-width: 1024px) {
  .access-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .access-left,
  .access-right {
    width: 100%;
  }
  .access-right > img{
    max-width:400px;
    margin:0 auto;
  }
}

@media (max-width: 768px) {
  .info-wrap {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .info-left img{
    margin-bottom: 8px;
  }
  .info-left {
    width: 100%;
  }
  .info-right{
    width: 95%;
  }
  .info::before{
    border-radius: 100px 100px 0 0;
  }
  .info-box {
    padding: 10px 1rem;
  }
  .info {
    padding-bottom: 4rem;
  }
  .access {
    margin: 4rem 0 120px;
  }
  .access-table{
    margin-bottom: 20px;
  }
  .access-table p:last-child{
    font-size: 13px;
  }
  .access-list{
    flex-direction: column;
    gap: 8px;
    padding: 1.5rem 0 0.5rem;
  }
  .access-list p:first-child {
    width: 100%;
  }
  .access-list p:last-child {
    width: 100%;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .access-list-img {
    gap: 1rem;
    margin-top: 1.5rem;
    flex-direction: column;
  }
   .access-list-img img{
     width: 100%;
  }
}