@charset "utf-8";

@media screen and (min-width: 768px) {
  .company__inner {
    padding: 0 40px !important;
  }
}
@media screen and (min-width: 1300px) {
  .company__inner {
    padding: 0 142px 0 194px !important;
  }
}

.philosophy__wrap {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 62px;
}
@media screen and (min-width: 1024px) {
  .philosophy__wrap {
    flex-direction: row;
    align-items: start;
  }
}

.philosophy__imgs {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .philosophy__imgs {
    flex-direction: column;
    gap: 54px;
    width: min(calc(370 / 1366 * 100vw), 370px);
    flex-shrink: 0;
  }
}
.philosophy__imgs img {
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.philosophy__img01 {
  aspect-ratio: 301 / 263;
  width: 30%;
  margin-bottom: 20px;
}
.philosophy__img02 {
  aspect-ratio: 282 / 332;
  width: 30%;
  margin-top: 30px;
}
.philosophy__img03 {
  aspect-ratio: 248 / 222;
  width: 30%;
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
.philosophy__img01 {
  width: min(calc(301 / 1366 * 100vw), 301px);
  margin-left: auto;
  margin-bottom: 0;
}
.philosophy__img02 {
  width: min(calc(282 / 1366 * 100vw), 282px);
  margin-top: 0;
}
.philosophy__img03 {
  width: min(calc(248 / 1366 * 100vw), 248px);
  margin-left: auto;
  margin-bottom: 0;
}
}

.philosophy__lists {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.philosophy__list {
  display: flex;
  align-items: start;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .philosophy__list {
    align-items: center;
  }
}
.philosophy__num {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.info__wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0 45px;
}
@media screen and (min-width: 768px) {
  .info__wrap {
   grid-template-columns: repeat(2, 1fr);
  }
}

.info__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  column-gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding: 16px 0 16px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .info__item {
    grid-template-columns: 80px 1fr;
  }
}

.info__item:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .info__item:last-of-type,
  .info__item:nth-last-of-type(2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}

.access__wrap {
  display: flex;
  flex-direction: column;
  gap: 65px;
}
@media screen and (min-width: 768px) {
  .access__wrap {
    flex-direction: row;
    justify-content: center;
    gap: min(calc(65 / 1366 * 100vw), 65px);
  }
}
.access__item img {
  aspect-ratio: 390 / 320;
  width: min(100%, 550px);
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-inline: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .access__item img {
    width: min(calc(390 / 1366 * 100vw), 550px);
  }
}

.access__map {
  aspect-ratio: 495 / 512;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .access__map {
    width: min(100%, 495px);
  }
}
.access__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}





