@charset "utf-8";

.owner-price-title{
  min-width:200px;
}

.info{
  margin:5rem auto 10rem;
  width:80%;
  max-width:1345px;
}

.company-box{
  margin-top:5rem;
}

.company-list{
  display:flex;
  padding-bottom:10px;
  border-bottom:1px solid #000000;
  font-size:clamp(0.875rem, 0.784rem + 0.3vw, 1.125rem);
  font-weight:bold;
  margin-bottom:1.5rem;
  align-items: flex-start;
}

.company-list p:first-child{
  width:20%;
  position:relative;
  padding: 0px 0px 0px 1.5rem;
}

.company-list p:first-child::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 26px;
  background: #243374;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.company-list p:last-child{
  width:80%;
  padding-left:1.5rem;
}

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

.access-wrap > div{
  width:60%;
}

.access-wrap iframe{
  height:100%;  
  border:none;
}

.access-wrap img{
  width:calc(40% - 1.5rem);
}

.access-box {
  padding-bottom:12px;
  border-bottom:1px solid #000000;
}

.access-box div{
  display:flex;
  gap:1rem;
  align-items: flex-start;
  margin-bottom:20px;
  font-size:clamp(0.875rem, 0.784rem + 0.3vw, 1.125rem);
  font-weight:bold;
}

.access-box div p{
  line-height:2;
  padding-top: 5px;
}

.access-box div img{
  width:3rem;
}

.access-box div p strong{
  font-weight:bold;
}

@media screen and (max-width: 767px) {
  .info{
    width:90%;
    margin: 3rem auto 5rem;
  }
  .company-list p:first-child {
    width: 30%;
    padding: 0px 0px 0px 1rem;
  }
  .company-list p:last-child {
    width: 70%;
    padding-left: 0.5rem;
  }
  .company-box {
    margin-top: 3rem;
  }
  .access-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
  .access-wrap > div,
  .access-wrap img{
    width:100%;
  }
  .access-wrap iframe {
    height: 350px;
  }
  .access-box div{
    align-items: center;
  }
  .access-box div p {
    padding-top: 0;
  }
}