@charset "utf-8";

.corp_nav{
  display: flex;
  margin-bottom:  8rem;
  gap: 2rem;
  justify-content: center;
}

.corp_nav li{
  padding-bottom: 14px;
  border-bottom: 1px solid #9A927F;
  max-width: 220px;
  width: 22rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}

.section-company{
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}

.company-ttl{
  width: 180px;
}

.company-ttl p.en{
  font-size: 4rem;
  font-family: var(--subfont);
  letter-spacing: 0.08em;
}
.company-ttl h2{
  font-size: 2rem;
  font-weight: 500;
}

.company-txt{
  width: calc(100% - 260px);
}

@media (max-width: 1024px) {
  .section-company{
    gap: 40px;
  }
}

@media (max-width: 768px) {
  
  .section-company{
    display: block;
  }
  .company-ttl{
    width: 100%;
    margin-bottom: 50px;
  }
  .company-txt{
    width: 100%;
  }
}



.outline-list {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 5rem;
}
.outline-list dt {
    width: 24%;
    margin: 0;
    border-bottom: 1px dotted #9A927F;
    line-height: 1.8rem;
    padding: 1.8em 1em 1.8em 0;
    vertical-align: middle;
    align-items: center;
}
.outline-list dd {
    width: 76%;
    margin: 0;
    padding: 1.5em 1em 1.5em 0;
    border-bottom: 1px dotted #9A927F;
    vertical-align: middle;
    line-height: 2.7rem;
    line-height: 1.8;
}


.history_item {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 180px;
  position: relative;
  margin-bottom: 60px;
}

.history_item dt {
  position: relative;
  line-height: 1.5;
  white-space: nowrap;
}

.history_item dt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 30px);
  width: 120px;
  height: 1px;
  background: #9A927F;
  transform: translateY(-50%);
}

.history_item dd {
  margin: 0;
  font-weight: 500;
  line-height: 2;
}

.history_item:last-child{
  margin-bottom: 0px;
}

/* @media (max-width: 1024px) {
  .history_item {
    grid-template-columns: 190px 1fr;
    column-gap: 180px;
  }

  .history_item dt::after {
    width: 130px;
  }
} */


/* @media (max-width: 768px) {
  .history_item {
    display: block;
    padding: 32px 0;
  }

  .history_item dt {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }

  .history_item dt::after {
    position: static;
    display: block;
    width: 80px;
    margin-top: 14px;
    transform: none;
  }

  .history_item dd {
    font-size: 1.7rem;
    line-height: 1.8;
  }
} */

.company-photo{
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 120px;
}

.company-photo figure{
  width: calc((100% - 40px)/2);
}

@media (max-width: 768px) {
  .company-photo{
    display: block;
  }
  .company-photo figure{
    width: 100%;
    margin-bottom: 20px;
  }
  .company-photo figure:last-child{
    margin-bottom: 0px;
  }
}

/*アクセス*/
.company_access{
  position: relative;
}
.company_access .row{
  display: flex;
  gap: 70px;
  margin-bottom: 60px;
  align-items: center;
}
.company_access .row .img{
  width: 510px;
  flex-shrink: 0;
}
.company_access .row .img img{
  width: 100%;
}
.company_access .row .box{
  flex: 1;
}
.company_access .row .box .ttl{
  font-size: 2rem;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 10px;
  font-weight: bold;
}
.company_access .row .box .msg{
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}
.company_access .row .box .msg:last-child{
  margin-bottom: 0;
}

.company_access .map iframe{
  width: 100%;
  height: 480px;
}
@media screen and (max-width: 1200px) {
  .company_access .row {
    display: flex;
    gap: 45px;
    margin-bottom: 60px;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .company_access .row {
    display: flex;
    flex-wrap:wrap;
    gap: 45px;
  }

  .company_access .row .img{
    width: 100%;
  }
  .company_access .row .img img{
    width: 100%;
  }
  .company_access .row .box{
   width: 100%;
  }
}