@charset "UTF-8";
* {
  font-family: "Pretendard";
  font-weight: 200;
  letter-spacing: 0.4px;
  word-break: keep-all;
}
@media all and (max-width: 768px) {
  * {
    font-weight: 300;
  }
}

html {
  font-size: 62.5%;
  color: #fff;
}
@media all and (max-width: 1280px) {
  html {
    font-size: 50%;
  }
}
@media all and (max-width: 960px) {
  html {
    font-size: 45%;
  }
}
@media all and (max-width: 768px) {
  html {
    font-size: 40%;
  }
}

.section .container {
  margin-top: 80px;
}
@media all and (max-width: 1280px) {
  .section .container {
    padding-block: 140px;
  }
}
@media all and (max-width: 768px) {
  .section .container {
    margin-top: 0;
    padding-block: 60px;
  }
}
@media all and (max-width: 768px) {
  .section .container.mv-wrap {
    padding-block: 140px 60px;
  }
}

.container {
  max-width: 1600px;
  padding-inline: 64px;
  margin: 0 auto;
}
@media all and (max-width: 768px) {
  .container:not(.header-wrap) {
    padding-inline: 32px;
  }
}
@media all and (max-height: 800px) {
  .container:not(.header-wrap) {
    padding-block: 120px;
  }
}

.section-title {
  font-size: 6.4rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6.4rem;
}

.logo {
  min-width: 128px;
}

/* style */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hidden {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* font-weight */
.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.fw900 {
  font-weight: 900;
}

/* margin */
.mgR32 {
  margin-right: 32px;
}

.point-color {
  color: #fcb500;
}

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button,
input,
select {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img,
video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.form {
  max-width: 1024px;
  display: flex;
  flex-wrap: wrap;
  gap: 0px 32px;
}
@media all and (max-width: 1280px) {
  .form {
    margin-left: 0;
  }
}
@media all and (max-width: 768px) {
  .form {
    gap: 0 16px;
  }
}

.form-group {
  display: inline-block;
  width: calc(50% - 16px);
  margin-bottom: 20px;
}
@media all and (max-width: 768px) {
  .form-group {
    width: calc(50% - 8px);
  }
}
.form-group.full {
  display: block;
  width: 100%;
}
.form-group.file .file-input-group {
  position: relative;
}
.form-group.file .file-input-group .ico-upload {
  width: 16px;
  height: auto;
}
.form-group .form-title {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: left;
}
.form-group .type-input-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 768px) {
  .form-group .type-input-group {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.form-group .type-input-group .label-radio {
  width: calc(25% - 24px);
  height: 46px;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #3d3d3d;
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .form-group .type-input-group .label-radio {
    font-size: 2.4rem;
    width: calc(50% - 8px);
  }
}
.form-group .type-input-group .input-radio:checked + .label-radio {
  font-weight: 500;
  border: 1px solid #f99500;
  background-color: #f99500;
  color: #fff;
}
.form-group .input-text {
  border: 1px solid #333;
  border-radius: 8px;
  width: 100%;
  height: 48px;
  padding-left: 12px;
  font-size: 2rem;
  color: #fff;
  background: #3d3d3d;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form-group .input-text::-moz-placeholder {
  font-weight: 400;
  font-size: 2rem;
}
.form-group .input-text::placeholder {
  font-weight: 400;
  font-size: 2rem;
}
.form-group .input-textarea {
  padding-top: 12px;
  resize: none;
  height: 148px;
  overflow-y: hidden;
}

.label-file {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  top: 0;
  right: 0;
  cursor: pointer;
  padding-right: 16px;
}
.label-file .ico-file {
  opacity: 0;
  visibility: hidden;
  display: none;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.form-submit .input-submit {
  width: calc(50% - 32px);
  height: 46px;
  border-radius: 8px;
  border: 0;
  background-color: #f99500;
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  cursor: pointer;
}
@media all and (max-width: 768px) {
  .form-submit .input-submit {
    width: calc(50% - 8px);
    font-size: 2.4rem;
  }
}

.header {
  width: 100vw;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.header.active {
  background-color: #000;
}
@media all and (max-width: 768px) {
  .header {
    background-color: #000;
  }
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  height: inherit;
}
@media all and (max-width: 1280px) {
  .header-wrap {
    padding-inline: 56px;
  }
}
@media all and (max-width: 768px) {
  .header-wrap {
    padding-inline: 32px;
  }
}

.gnb {
  height: inherit;
}
@media all and (max-width: 768px) {
  .gnb {
    display: none;
  }
}
.gnb .gnb-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  height: inherit;
}
@media all and (max-width: 1280px) {
  .gnb .gnb-list {
    gap: 18px;
  }
}
.gnb .gnb-item {
  padding-inline: 4px;
  height: inherit;
}
.gnb .gnb-item.active .gnb-link {
  color: #fcb500;
}
.gnb .gnb-item.active .gnb-link::after {
  opacity: 1;
  visibility: visible;
}
.gnb .gnb-link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  position: relative;
  height: 100%;
  padding-inline: 8px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  transition: all 200ms;
}
.gnb .gnb-link:hover {
  color: #fcb500;
}
.gnb .gnb-link:hover::after {
  opacity: 1;
  visibility: visible;
}
.gnb .gnb-link::after {
  opacity: 0;
  visibility: hidden;
  transition: all 200ms;
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: -6px;
  transform: translateY(-50%);
  background: url("../img/icon/ico-point.png") center/cover no-repeat;
  width: 10px;
  height: 10px;
}
@media all and (max-width: 1280px) {
  .gnb .gnb-link::after {
    top: calc(50% - 6px);
    right: -4px;
    width: 8px;
    height: 8px;
  }
}

.h-logo {
  display: flex;
  align-items: center;
  max-width: 200px;
  /* 2024-02-27 수정 (명지) */
  font-size: 2.8rem;
  font-weight: 500;
  color: #fff;
}
@media all and (max-width: 768px) {
  .h-logo {
    font-size: 3.2rem;
  }
}
.h-logo img {
  max-height: 70%;
  margin-right: 12px;
}
/******/

.m-gnb {
  display: none;
  align-items: center;
}
@media all and (max-width: 768px) {
  .m-gnb {
    display: flex;
  }
}
.m-gnb .m-gnb-burger {
  cursor: pointer;
}
.m-gnb .m-gnb-burger .bar {
  display: block;
  width: 32px;
  height: 4px;
  background-color: #eee;
  border-radius: 100px;
}
.m-gnb .m-gnb-burger .bar + .bar {
  margin-top: 6px;
}
.m-gnb .m-gnb-menu {
  position: absolute;
  height: 100vh;
  top: -150vh;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f9f9f9;
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.m-gnb .m-gnb-menu.active {
  top: 0;
}
.m-gnb .m-gnb-menu .m-gnb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 24px;
  border-bottom: 1px solid #ccc;
  padding-block: 8px;
}
/* 2024-02-27 수정 (명지) */
.m-gnb .m-gnb-menu .m-gnb-top .h-logo {
  color: #666;
}
@media all and (max-width: 768px) {
  .m-gnb .m-gnb-menu .m-gnb-top .h-logo {
    font-size: 3.2rem;
  }
}
.m-gnb .m-gnb-menu .m-gnb-top .h-logo img {
  margin-right: 12px;
  max-width: 40px;
}
/******/
.m-gnb .m-gnb-menu .m-gnb-top .btn-close {
  width: 18px;
  height: auto;
  cursor: pointer;
}
.m-gnb .m-gnb-menu .m-gnb-list {
  padding-inline: 24px;
}
.m-gnb .m-gnb-menu .m-gnb-list .m-gnb-item {
  padding-block: 24px;
  border-bottom: 1px solid #ccc;
}
.m-gnb .m-gnb-menu .m-gnb-list .m-gnb-item .m-gnb-link {
  padding-inline: 12px;
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
}
.m-gnb .m-gnb-menu .m-gnb-copyright {
  margin-top: 24px;
  padding-inline: 24px;
  color: #666;
  font-size: 2rem;
}

.footer {
  background-color: #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-block: 30px;
}

.f-logo {
  /* 2024-02-27 수정 (명지) */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 16px;
  font-size: 2.8rem;
  font-weight: 500;
  color: #999;
}
@media all and (max-width: 768px) {
  .f-logo {
    font-size: 3.2rem;
  }
}
.f-logo img {
  margin-right: 12px;
  max-width: 40px;
}

/******/

.footer-txt {
  font-size: 1.8rem;
  color: #666;
  text-align: center;
}
.footer-txt + .footer-txt {
  margin-top: 10px;
}
@media all and (max-width: 768px) {
  .footer-txt {
    font-size: 2rem;
  }
}

.section:not(.footer) {
  background-color: #000;
}

/* main visual 메인 비주얼*/
.mv {
  background: url("../img/mv/visual12.jpg") center no-repeat;
  position: relative;
  animation: main-visual-active 2s forwards;
}
@keyframes main-visual-active {
  0% {
    background-size: 145%;
  }
  50% {
    background-size: 145%;
  }
  100% {
    background-size: 135%;
  }
}
@media all and (max-width: 1280px) {
  @keyframes main-visual-active {
    0% {
      background-size: 213%;
    }
    50% {
      background-size: 213%;
    }
    100% {
      background-size: 220%;
    }
  }
}
@media all and (max-width: 768px) {
  .mv {
    animation: none;
    background-size: cover;
  }
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.28);
}
.mv .mv-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 9;
}
.mv .mv-txt-group .mv-main {
  font-size: 7.2rem;
  font-weight: 900;
  animation: text-main-fade 3s forwards;
}
@keyframes text-main-fade {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  60% {
    opacity: 0;
    transform: translateY(-24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media all and (max-width: 768px) {
  .mv .mv-txt-group .mv-main {
    animation: none;
  }
}
.mv .mv-txt-group .mv-main strong {
  font-weight: 900;
}
.mv .mv-txt-group .mv-sub {
  margin-top: 18px;
  font-size: 5.6rem;
  font-weight: 700;
  animation: text-sub-fade 4s forwards;
}
@keyframes text-sub-fade {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  60% {
    opacity: 0;
    transform: translateY(-24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media all and (max-width: 768px) {
  .mv .mv-txt-group .mv-sub {
    animation: none;
  }
}
.mv .mv-txt-group .mv-sub2 {
  margin-top: 18px;
  font-size: 3.6rem;
  font-weight: 400;
  animation: text-sub2-fade 5s forwards;
}
@keyframes text-sub2-fade {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  60% {
    opacity: 0;
    transform: translateY(-24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media all and (max-width: 768px) {
  .mv .mv-txt-group .mv-sub2 {
    animation: none;
  }
}
.mv .scroll-down {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: flex;
  flex-direction: column;
  margin-left: -12px;
}
.mv .scroll-down span {
  margin-bottom: -4px;
  width: 1.8rem;
  height: 1.8rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
.mv .scroll-down span:nth-of-type(1) {
  animation-delay: 0s;
}
.mv .scroll-down span:nth-of-type(2) {
  bottom: 24px;
  animation-delay: 0.15s;
}
.mv .scroll-down span:nth-of-type(3) {
  bottom: 36px;
  animation-delay: 0.3s;
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* greeting 인사말 */
.greeting {
  background: url("../img/sectionBg/greetingBg.jpg") center/cover no-repeat;
}
.greeting .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.greeting .greeting-txt-box {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px);
  text-align: center;
  color: #fff;
  padding: 56px 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media all and (max-width: 768px) {
  .greeting .greeting-txt-box {
    margin-top: 0;
    padding-inline: 32px;
  }
}
.greeting .greeting-main {
  max-width: 1024px;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.greeting .greeting-sub {
  max-width: 1088px;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 3.4rem;
}

/* history 연혁 */
.history {
  position: relative;
  background: url("../img/sectionBg/historyBg.jpg") no-repeat center/cover;
}
.history .history-wrap {
  display: flex;
  padding-block: 240px;
}
@media all and (max-width: 1280px) {
  .history .history-wrap {
    padding-block: 140px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.history .section-title {
  opacity: 0;
  visibility: hidden;
  display: none;
}
@media all and (max-width: 1280px) {
  .history .section-title {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
.history .right,
.history .left {
  width: 50%;
}
@media all and (max-width: 1280px) {
  .history .right,
  .history .left {
    margin-top: 64px;
    width: 100%;
  }
}
.history .left {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  color: #fff;
  text-align: center;
}
@media all and (max-width: 1280px) {
  .history .left {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
.history .left span {
  font-size: 9.6rem;
  font-weight: 900;
  margin-right: 12rem;
}
.history .left span:nth-child(2) {
  transform: rotate(90deg);
}
.history .right {
  color: #eee;
}
.history .right .histroy-list {
  margin: 0 auto;
  max-width: 80%;
}
@media all and (max-width: 768px) {
  .history .right .histroy-list {
    max-width: 100%;
  }
}
.history .right .history-item {
  display: flex;
  padding-bottom: 5.8rem;
  border-bottom: 1px solid #333;
}
.history .right .history-item:not(:first-child) {
  padding-block: 5.8rem;
}
@media all and (max-width: 960px) {
  .history .right .history-item {
    justify-content: center;
    padding-inline: 32px;
  }
}
@media all and (max-width: 768px) {
  .history .right .history-item {
    padding-inline: 12px;
  }
}
.history .right .year {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-right: 11.9rem;
}
@media all and (max-width: 768px) {
  .history .right .year {
    margin-right: 6rem;
  }
}
.history .right .desc {
  font-size: 2.3rem;
}
@media all and (max-width: 960px) {
  .history .right .desc {
    flex-grow: 1;
  }
}
.history .right .desc span {
  display: block;
}
.history .right .desc span + span {
  margin-top: 4.8rem;
}

/* business 사업 분야*/
.business .business-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1280px) {
  .business .business-wrap {
    flex-direction: column;
    justify-content: center;
  }
}
.business .left {
  flex-basis: 460px;
  flex-shrink: 0;
  margin-right: 8.5rem;
}
@media all and (max-width: 1280px) {
  .business .left {
    flex-basis: auto;
    margin: 0 auto;
  }
}
.business .left .section-desc {
  font-size: 2.2rem;
  max-width: 443px;
}
@media all and (max-width: 1280px) {
  .business .left .section-desc {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
.business .right .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media all and (max-width: 768px) {
  .business .right .card-list {
    gap: 24px;
  }
}
.business .right .card-item {
  min-height: 240px;
  flex-basis: calc(50% - 32px);
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  padding: 32px;
  border: 2px solid #f99500;
  border-radius: 24px;
  transition: all 200ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .business .right .card-item:hover {
    background: #f99500;
  }
  .business .right .card-item:hover .ico-white {
    opacity: 1;
    visibility: visible;
  }
  .business .right .card-item:hover .ico-origin {
    opacity: 0;
    visibility: hidden;
  }
}
@media all and (max-width: 768px) {
  .business .right .card-item {
    padding: 24px;
    min-height: 200px;
    flex-basis: 100%;
  }
}
.business .right .card-left {
  flex-shrink: 0;
  margin-right: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
@media all and (max-width: 768px) {
  .business .right .card-left {
    margin-right: 40px;
  }
}
.business .right .card-left .card-title {
  font-size: 3.2rem;
  font-weight: 700;
}
.business .right .card-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px 0;
}
@media all and (max-width: 768px) {
  .business .right .card-right {
    flex-direction: row;
    flex-grow: 1;
    flex-wrap: wrap;
    align-content: space-evenly;
  }
}
@media all and (max-width: 440px) {
  .business .right .card-right {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.business .right .card-right .card-right-item {
  font-size: 2rem;
}
@media all and (max-width: 768px) {
  .business .right .card-right .card-right-item {
    font-size: 2.6rem;
    flex-basis: calc(50% - 24px);
    list-style: disc;
    list-style-position: inside;
    text-indent: -20px;
    word-break: keep-all;
  }
}
.business .right .card-right .card-right-item + .card-right-item {
  margin-top: 8px;
}
@media all and (max-width: 768px) {
  .business .right .card-right .card-right-item + .card-right-item {
    margin-top: 0;
  }
}
@media all and (max-width: 1460px) and (min-width: 1280px) {
  .business .right .card-right .card-right-item {
    font-size: 1.8rem;
  }
}
.business .right .ico-box {
  position: relative;
}
@media all and (max-width: 768px) {
  .business .right .ico-box img {
    max-width: 60px;
    height: auto;
  }
}
.business .right .ico-white {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: 0;
}

/* partners 고객사*/
.partners .partners-wrap {
  display: flex;
  flex-direction: column;
}
.partners .logo-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 47px;
}
@media all and (max-width: 768px) {
  .partners .logo-list {
    gap: 24px;
  }
}
.partners .logo-item {
  flex-basis: calc(33.3% - 47px);
  text-align: center;
}
@media all and (max-width: 768px) {
  .partners .logo-item {
    flex-basis: calc(50% - 12px);
  }
}

/* contact 문의*/
.contact-form {
  background: url("../img/sectionBg/contactFormBg.png") center/cover no-repeat;
}
.contact-form .contact-form-wrap {
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 1280px) {
  .contact-form .contact-form-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.contact-form .contact-form-wrap .section-title {
  margin-right: 64px;
}
@media all and (max-width: 1280px) {
  .contact-form .contact-form-wrap .section-title {
    margin-right: 0;
  }
}

/* way 오시는 길 */
.way .section-title {
  margin-bottom: 32px;
}
.way .way-wrap {
  padding-inline: 64px;
}
@media all and (max-width: 960px) {
  .way .way-wrap {
    padding-inline: 0;
  }
}
@media all and (max-width: 960px) {
  .way .way-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.way .way-con {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media all and (max-width: 768px) {
  .way .way-con {
    flex-direction: column;
    text-align: center;
  }
}
.way .left {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.way .left .way-txt-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.way .left .way-txt-box span {
  display: block;
}
.way .left .way-txt-box span.way-name {
  font-size: 3.6rem;
  font-weight: 700;
  text-transform: uppercase;
}
.way .left .way-txt-box span.way-address {
  font-size: 2.4rem;
  color: #c2c2c2;
  margin-block: 14px;
}
.way .left .way-txt-box span.way-info {
  font-size: 2rem;
  color: #777;
  line-height: 3.2rem;
  font-weight: 400;
}
@media all and (max-width: 960px) {
  .way .left .way-txt-box span.way-info {
    font-size: 2.2rem;
  }
}
.way .right {
  display: flex;
  justify-content: center;
  max-width: 100%;
}
.way .right .img-map {
  margin-left: 32px;
  max-width: calc(240px + 15vw);
  height: auto;
}
@media all and (max-width: 960px) {
  .way .right .img-map {
    margin-left: 0;
    margin-top: 32px;
  }
}
