* {
  -webkit-tap-highlight-color: transparent;
}

/* mobile */
body#mobile .wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
body#mobile.about,
body#mobile.culture,
body#mobile.contact {
  overflow: hidden;
}
body#mobile .wrapper header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  height: 52px;
  z-index: 10;
  transition: all 0.35s;
}
body#mobile .wrapper header > h1 {
  margin-left: 16px;
}
body#mobile .wrapper header > nav {
  margin-right: 16px;
}
body#mobile .wrapper section {
  position: relative;
  padding: 0 16px;
}

/* STEP1 */
body#mobile .wrapper section.main-top {
  background: url('../assets/images/main_bg.png') center center / cover no-repeat;
}
body#mobile .wrapper section.main-top .text-effect-box {
  position: absolute;
  min-height: 78px;
  bottom: 35.96px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
body#mobile .wrapper section.main-top .text-effect-box > span {
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 14px;
  font-weight: 400;
  line-height: var(--line-normal);
  opacity: 0;
}
body#mobile .wrapper section.main-top .text-effect-box > span.slideInAni {
  animation: slideInAnimation 1.5s ease 0.25s forwards;
}
body#mobile .wrapper section.main-top .text-effect-box > div {
  display: inline-block;
}
body#mobile .wrapper section.main-top .text-effect-box > div.text-top {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4px;
  height: 29px;
}
body#mobile .wrapper section.main-top .text-effect-box > div.text-bot {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 4px;
  height: 29px;
}

/* STEP2 */
body#mobile .wrapper section.main-middle div.text-middle-box {
  position: absolute;
  top: 136px;
}
body#mobile .wrapper section.main-middle div.text-middle-box span {
  display: inline-block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-normal);
  margin-bottom: 2px;
}
body#mobile .wrapper section.main-middle.mid.ani div.text-middle-box span {
  animation: slideInAnimation 1.5s ease 0.25s forwards;
}
body#mobile .wrapper section.main-middle div.text-middle-box h2 {
  color: var(--color-black);
  font-family: 'Freesentation';
  font-size: 24px;
  font-weight: 600;
  line-height: var(--line-normal);
}
body#mobile .wrapper section.main-middle.mid.ani div.text-middle-box h2 {
  animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
body#mobile .wrapper section.main-middle div.text-middle-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100px;
  height: 34px;
  color: var(--color-white);
  font-family: 'Paperlogy';
  font-size: 14px;
  font-weight: 600;
  padding: 0px 8px;
  border-radius: 6px;
  background-color: var(--color-blue);
}
body#mobile .wrapper section.main-middle div.text-middle-box button::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url('../assets/images/main_download_ico.png') center center/12px 14px no-repeat;
}

body#mobile .wrapper section.main-middle div.text-middle-box p {
  color: var(--color-dark_white);
  font-family: 'Freesentation';
  font-size: 18px;
  font-weight: 300;
  line-height: var(--line-normal);
  text-align: left;
  margin-bottom: 25px;
  opacity: 0;
}
body#mobile .wrapper section.main-middle.enlarge.ani2 div.text-middle-box p {
  animation: revealTwo 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.3s;
}
body#mobile .wrapper section.main-middle.enlarge.ani2 div.text-middle-box p {
  animation: revealTwo 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
  animation-delay: 0.3s;
}
body#mobile .wrapper section.main-middle div.text-middle-box p > b {
  font-weight: 800;
}
body#mobile .wrapper section.main-middle div.text-middle-box > button.more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 62px;
  height: 34px;
  color: var(--color-white);
  font-family: 'Paperlogy';
  font-size: 14px;
  font-weight: 600;
  padding: 0px 8px;
  border-radius: 6px;
  background-color: var(--color-blue);
}
body#mobile .wrapper section.main-middle div.text-middle-box > button.more::after {
  display: none;
}
body#mobile .wrapper section.main-middle div.img-middle-box {
  position: absolute;
  top: 246px;
  margin-right: 16px;
  overflow: hidden;
}

body#mobile .wrapper section.main-middle div.img-middle-box > img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transition: all 0.85s;
}
body#mobile .wrapper section.main-middle.mid.ani div.img-middle-box > img {
  animation: imgOpa both cubic-bezier(0.68, 0, 0.265, 1) 1.2s 0.2s;
}
body#mobile .wrapper section.main-middle div.img-middle-box > i {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #eee;
}
body#mobile .wrapper section.main-middle.mid.ani div.img-middle-box > i {
  animation: imgAniLeft both cubic-bezier(0.68, 0, 0.265, 1) 1.2s 0.2s;
}
body#mobile .wrapper section.main-middle div.img-middle-box.full {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
body#mobile .wrapper section.main-middle div.img-middle-box.full > img {
  position: relative;
  height: 100vh;
  width: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: all 0.85s;
}

body#mobile .wrapper section.main-middle div.img-middle-box.full > i {
  display: none;
}
body#mobile .wrapper section.main-middle.enlarge div.text-middle-box {
  position: absolute;
  top: auto;
  bottom: 74px;
}
body#mobile .wrapper section.main-middle.enlarge div.img-middle-box.full {
  position: absolute;
  animation: fadeIn both cubic-bezier(0.68, 0, 0.265, 1) 1.2s 0.2s;
}

body#mobile .wrapper section.main-bottom {
  background: url('../assets/images/main_bottom_bg.png') center center/cover no-repeat;
}
body#mobile .wrapper section.main-bottom .text-bottom-box {
  position: absolute;
  top: 95px;
  overflow: hidden;
}
body#mobile .wrapper section.main-bottom .text-bottom-box h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-normal);
  margin-bottom: 7.5px;
  cursor: pointer;
}
body#mobile .wrapper section.main-bottom.bottom.ani .text-bottom-box h3 {
  animation: slideInAnimation 1.5s ease 0.25s forwards;
}
body#mobile .wrapper section.main-bottom .text-bottom-box h3::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-blue) url('../assets/images/main_arrow_right_ico.png') center center/12px
    12px no-repeat;
}
body#mobile .wrapper section.main-bottom .text-bottom-box > p {
  font-family: 'Freesentation';
  font-size: 18px;
  font-weight: 300;
  line-height: var(--line-normal);
  text-align: left;
}
body#mobile .wrapper section.main-bottom.bottom.ani .text-bottom-box > p {
  animation: reveal 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
body#mobile .wrapper section.main-bottom .text-bottom-box > p > b {
  font-weight: 700;
}
body#mobile .wrapper section.main-bottom .bottom-slider-box {
  position: absolute;
  top: 210px;
  left: 16px;
  width: calc(100% - 32px);
  height: 205px;
}

/* mobile - about */
body#mobile .wrapper .container {
  position: relative;
  padding-top: 52px;
}
body#mobile .wrapper .container.details {
  margin-bottom: 62px;
}
body#mobile .wrapper .container .title-box {
  margin: 0 16px 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-blue);
}
body#mobile .wrapper .container.details .title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6.5px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--color-light_gray);
}
body#mobile .wrapper .container.details .title-box button {
  position: relative;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-normal);
  padding: 0;
  background: none;
}
body#mobile .wrapper .container.details .title-box button::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url('../assets/images/blue_arrow_ico.svg') center center/cover no-repeat;
}
body#mobile .wrapper .container .title-box span {
  display: block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 12px;
  font-weight: 400;
  line-height: var(--line-normal);
  margin-bottom: 2px;
}
body#mobile .wrapper .container .title-box h1 {
  position: relative;
  display: inline-block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 28px;
  font-weight: 700;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .title-box h1::after {
  content: '';
  position: absolute;
  top: 0px;
  right: -7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-blue);
}
body#mobile .wrapper .container .title-box h4 {
  position: relative;
  display: inline-block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .contents-sub-title {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 102px;
  background: url('../assets/images/contents_title_bg.png') center center/cover no-repeat;
  margin: 0 16px 23px;
}
body#mobile .wrapper .container .contents-intro,
body#mobile .wrapper .container .contents-business {
  position: relative;
  margin-bottom: 68px;
}
body#mobile .wrapper .container .contents-intro::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 387px;
  background: url('../assets/images/about/mob-about_bg_01.png') 0 0 no-repeat;
  z-index: -1;
}
body#mobile .wrapper .container .contents-intro span,
body#mobile .wrapper .container .contents-business span,
body#mobile .wrapper .container .contents-history span {
  display: block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-normal);
  margin: 0 16px 10px;
}
body#mobile .wrapper .container .contents-intro h3 {
  color: var(--color-black);
  font-family: 'Paperlogy';
  font-size: 18px;
  font-weight: 800;
  line-height: var(--line-normal);
  margin: 0 16px 8px;
}
body#mobile .wrapper .container .contents-intro p,
body#mobile .wrapper .container .contents-business p {
  color: var(--color-black);
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 300;
  line-height: var(--line-normal);
  margin: 0 16px;
}
body#mobile .wrapper .container .contents-intro p > b,
body#mobile .wrapper .container .contents-business p > b {
  font-weight: 600;
}
body#mobile .wrapper .container .business-card-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
body#mobile .wrapper .container .contents-business h3 {
  color: var(--color-black);
  font-family: 'Freesentation';
  font-size: 18px;
  font-weight: 700;
  line-height: var(--line-normal);
  margin: 0 16px 8px;
}
body#mobile .wrapper .container .business-card-box {
  position: relative;
}
body#mobile .wrapper .container .business-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 593px;
  background: url('../assets/images/about/mob-about_bg_02.png') 0 0 / cover no-repeat;
  z-index: -1;
}
body#mobile .wrapper .container .business-card-box div.card-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 125px;
  margin: 0 16px;
  padding: 15px 16px;
  box-sizing: border-box;
  border: 1px solid #e3ebf8;
  border-radius: var(--radius-normal);
  background-color: var(--color-dark_white);
}
body#mobile .wrapper .container .business-card-box div.card-item dl dt {
  font-family: 'Freesentation';
  font-size: 16px;
  font-weight: 600;
  line-height: var(--line-normal);
  padding-bottom: 2px;
}
body#mobile .wrapper .container .business-card-box div.card-item dl dd {
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 300;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .business-card-box div.card-item dl dd::before {
  content: '·';
  margin-right: 6px;
}
body#mobile .wrapper .container .business-card-box div.card-item.consulting::after {
  content: '';
  position: absolute;
  right: 18px;
  width: 66px;
  height: 66px;
  background: url('../assets/images/about/business_ico_01.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .business-card-box div.card-item.operate::after {
  content: '';
  position: absolute;
  right: 18px;
  width: 66px;
  height: 66px;
  background: url('../assets/images/about/business_ico_02.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .business-card-box div.card-item.build::after {
  content: '';
  position: absolute;
  right: 18px;
  width: 66px;
  height: 66px;
  background: url('../assets/images/about/business_ico_03.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .business-card-box div.card-item.service::after {
  content: '';
  position: absolute;
  right: 18px;
  width: 66px;
  height: 66px;
  background: url('../assets/images/about/business_ico_04.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .business-card-box div.card-item.service::after {
  content: '';
  position: absolute;
  right: 18px;
  width: 66px;
  height: 66px;
  background: url('../assets/images/about/business_ico_04.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .contents-history {
  margin-bottom: 200px;
}
body#mobile .wrapper .container .contents-history .history-group {
  position: relative;
}
body#mobile .wrapper .container .contents-history .history-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  width: 2px;
  height: 100%;
  background: var(--color-light_gray);
}
body#mobile .wrapper .container .contents-history .history-group .progress-bar {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  width: 2px;
  height: 0;
  background: var(--color-blue);
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner {
  position: relative;
  text-align: left;
  padding: 0 40px;
  margin-bottom: 24px;
  box-sizing: border-box;
  z-index: 2;
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner h3 {
  position: relative;
  color: var(--color-black);
  font-family: 'Freesentation';
  font-weight: 700;
  font-size: 18px;
  line-height: var(--line-normal);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner h3.active {
  opacity: 1;
  transform: translateY(0);
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dt {
  position: relative;
  display: block;
  color: var(--color-white_gray);
  font-family: 'Freesentation';
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  transition: color 0.6s;
  margin-bottom: 14px;
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dt::after {
  content: '';
  position: absolute;
  top: 10px;
  left: -31px;
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 4px solid var(--color-light_gray);
  border-radius: 50%;
  box-sizing: border-box;
  transition: border-color 0.6s;
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dt.active {
  color: var(--color-blue);
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dt.active::after {
  content: '';
  border-color: var(--color-blue);
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dd {
  position: relative;
  color: var(--color-dark_gray);
  font-family: 'Freesentation';
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -1px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dd::before {
  content: '';
  position: absolute;
  top: 7px;
  left: -28px;
  width: 4px;
  height: 4px;
  background: var(--color-white);
  border: 3px solid #4db7ff;
  border-radius: 50%;
}
body#mobile .wrapper .container .contents-history .history-group .wrap .inner dl dd.active {
  opacity: 1;
  transform: translateY(0);
}
body#mobile .wrapper .container .category-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 0 16px 12px;
}
body#mobile .wrapper .container .category-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 24px;
  padding: 5px 12px;
  color: var(--color-dark_gray);
  font-family: 'Paperlogy';
  font-size: 12px;
  font-weight: 500;
  line-height: var(--line-normal);
  border-radius: var(--radius-high);
  background-color: var(--color-light_gray);
}
body#mobile .wrapper .container .category-box button.on {
  color: var(--color-white);
  font-weight: 700;
  background-color: var(--color-blue);
}
body#mobile .wrapper .container .prj-list-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 16px;
}
body#mobile .wrapper .container .prj-list-box .prj-items {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
body#mobile .wrapper .container .prj-list-box .prj-items:not(:last-child) {
  margin-bottom: 18px;
}
body#mobile .wrapper .container .prj-list-box .prj-items .item-img {
  margin-bottom: 8px;
  overflow: hidden;
  border-radius: var(--radius-normal);
}
body#mobile .wrapper .container .prj-list-box .prj-items .item-img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  transform: scale(1);
  transition: transform 0.35s;
}

body#mobile .wrapper .container .prj-list-box .prj-items .item-img:hover img {
  transform: scale(1.2);
  transition: transform 0.35s;
}
body#mobile .wrapper .container .prj-list-box .prj-items h4 {
  font-family: 'Freesentation';
  color: var(--color-black);
  font-size: 14px;
  font-weight: 600;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .prj-list-box .prj-items p {
  font-family: 'Freesentation';
  color: var(--color-dark_gray);
  font-size: 14px;
  font-weight: 500;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .prj-items-more-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 36px;
  margin-bottom: 40px;
}
body#mobile .wrapper .container .prj-items-more-box button {
  position: relative;
  width: 21px;
  height: 21px;
  margin-bottom: 8px;
  border-radius: 50%;
  background-color: var(--color-blue);
}
body#mobile .wrapper .container .prj-items-more-box button::after {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: url('../assets/images/mobile/mob-arrow_down_ico.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .prj-items-more-box span {
  display: inline-block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 14px;
  font-weight: 800;
  line-height: var(--line-normal);
  text-align: center;
}

body#mobile .wrapper .container .prj-detail-box {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  margin: 0 16px;
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-imgs {
  position: relative;
  width: 100%;
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  border-radius: 6px;
}

body#mobile .wrapper .container .prj-detail-box .prj-detail-explain h4 {
  font-family: 'Freesentation';
  color: vaR(--color-black);
  font-size: 18px;
  font-weight: 700;
  line-height: var(--line-normal);
  padding-bottom: 4px;
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-explain > span {
  font-family: 'Freesentation';
  color: vaR(--color-black);
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-normal);
  padding-bottom: 3px;
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-explain > p {
  font-family: 'Freesentation';
  color: var(--color-dark_gray);
  font-size: 14px;
  font-weight: 400;
  line-height: var(--line-normal);
  margin-bottom: 24px;
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-explain dl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  padding-left: 8px;
  border-left: 2px solid var(--color-blue);
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-explain dl:not(:last-child) {
  margin-bottom: 18px;
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-explain dl dt {
  width: 227px;
  font-family: 'Paperlogy';
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .prj-detail-box .prj-detail-explain dl dd {
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  line-height: var(--line-normal);
}

/* culture */
body#mobile .wrapper .container .culture-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('../assets/images/mobile/mob-culture_bg.png') 0 0 no-repeat;
}
body#mobile .wrapper .container .culture-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../assets/images/mobile/mob-culture_bg.png') center center/cover no-repeat;
}
body#mobile .wrapper .container .title-sub-box {
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 300;
  line-height: var(--line-normal);
  margin: 0px 16px 14px;
}
body#mobile .wrapper .container .title-sub-box > b {
  font-weight: 700;
}
body#mobile .wrapper .container div.culture-item-box {
  margin-bottom: 87px;
}
body#mobile .wrapper .container div.culture-item-box .culture-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  margin-left: 16px;
}
body#mobile .wrapper .container div.culture-item-box .culture-item:not(:last-child) {
  margin-bottom: 18px;
}
body#mobile .wrapper .container div.culture-item-box .culture-item img {
  width: 80px;
  height: 80px;
  vertical-align: bottom;
}
body#mobile .wrapper .container div.culture-item-box .culture-item .item-text {
  display: flex;
  flex-direction: column;
}
body#mobile .wrapper .container div.culture-item-box .culture-item .item-text h5 {
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 500;
  line-height: var(--line-normal);
  padding-bottom: 4px;
}
body#mobile .wrapper .container div.culture-item-box .culture-item .item-text h5 > b {
  font-weight: 700;
}
body#mobile .wrapper .container div.culture-item-box .culture-item .item-text p {
  color: var(--color-dark_gray);
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 400;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .culture-activities h4 {
  width: 100%;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-normal);
  text-align: center;
  margin-bottom: 10px;
}
body#mobile .wrapper .container .culture-activities .active-list-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 10px;
  column-gap: 12px;
  width: 100%;
}
body#mobile .wrapper .container .culture-activities .active-list-box .active-items {
  position: relative;
  width: 158px;
  height: 124px;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  cursor: pointer;
}
body#mobile .wrapper .container .culture-activities .active-list-box .active-items .item-img {
  height: 100%;
  overflow: hidden;
}
body#mobile .wrapper .container .culture-activities .active-list-box .active-items .item-img img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  transform: scale(1);
  transition: transform 0.35s;
  vertical-align: bottom;
  object-fit: cover;
}
body#mobile
  .wrapper
  .container
  .culture-activities
  .active-list-box
  .active-items
  .item-img:hover
  img {
  transform: scale(1.2);
  transition: transform 0.35s;
}
body#mobile .wrapper .container .culture-activities .active-list-box .active-items .item-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  box-sizing: border-box;
}
body#mobile .wrapper .container .culture-activities .active-list-box .active-items .item-text h5 {
  color: var(--color-white);
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 500;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .culture-activities .active-list-box .active-items .item-text span {
  color: var(--color-white);
  font-family: 'Freesentation';
  font-size: 12px;
  font-weight: 400;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .active-items-more-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
body#mobile .wrapper .container .active-items-more-box button {
  position: relative;
  width: 21px;
  height: 21px;
  margin-bottom: 8px;
  border-radius: 50%;
  background-color: var(--color-blue);
}
body#mobile .wrapper .container .active-items-more-box button::after {
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background: url('../assets/images/mobile/mob-arrow_down_ico.png') center center/cover no-repeat;
}

body#mobile .wrapper .container .active-items-more-box span {
  display: inline-block;
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 20px;
  font-weight: 800;
  line-height: var(--line-normal);
  text-align: center;
}
body#mobile .wrapper .container .culture-recruit {
  position: relative;
  text-align: center;
  padding: 112px 0px;
}
body#mobile .wrapper .container .culture-recruit h4 {
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-normal);
  margin-bottom: 17px;
}
body#mobile .wrapper .container .culture-recruit p {
  color: var(--color-black);
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 300;
  line-height: var(--line-normal);
  text-align: center;
  margin-bottom: 6px;
}
body#mobile .wrapper .container .culture-recruit p > b {
  font-weight: 700;
}
body#mobile .wrapper .container .culture-recruit .recruit-email {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 17px;
}
body#mobile .wrapper .container .culture-recruit .recruit-email span {
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 600;
  line-height: var(--line-normal);
}
body#mobile .wrapper .container .culture-recruit .recruit-email a {
  color: var(--color-dark_gray);
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 500;
  line-height: var(--line-normal);
  text-decoration: underline;
  text-underline-position: under;
}
body#mobile .wrapper .container .culture-recruit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 42px;
  color: var(--color-white);
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 500;
  box-sizing: border-box;
  border-radius: 6px;
  white-space: nowrap;
  background-color: var(--color-blue);
}
body#mobile .wrapper .container .culture-detail-box {
  position: relative;
  margin: 0 16px;
}
body#mobile .wrapper .container .culture-detail-box .culture-imgs-box {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
body#mobile .wrapper .container .culture-detail-box .culture-imgs-box img {
  width: 100%;
  /* height: 220px; */
  border-radius: 6px;
}

body#mobile .wrapper .container .culture-detail-box .culture-title-box {
  margin-bottom: 41px;
}
body#mobile .wrapper .container .culture-detail-box .culture-title-box h4 {
  font-family: 'Freesentation';
  font-size: 18px;
  font-weight: 700;
  line-height: var(--line-normal);
  margin-bottom: 4px;
}
body#mobile .wrapper .container .culture-detail-box .culture-title-box span {
  display: block;
  font-family: 'Freesentation';
  font-size: 16px;
  font-weight: 500;
  line-height: var(--line-normal);
  margin-bottom: 2px;
}
body#mobile .wrapper .container .culture-detail-box .culture-title-box p {
  display: block;
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 400;
  line-height: var(--line-normal);
}

/* contact */
body#mobile.contact .wrapper {
  position: relative;
  padding-bottom: 100px;
}
body#mobile.contact .wrapper .container {
  position: relative;
  margin: 0 16px;
}
body#mobile.contact .wrapper .container .title-box {
  margin: 0 0 8px;
}
body#mobile.contact .wrapper .container .title-sub-box {
  margin: 0 0 7px;
}
body#mobile.contact .wrapper .container .company-map-box {
  margin-bottom: 12px;
}
body#mobile.contact .wrapper .container .company-map-box img {
  width: 100%;
}
body#mobile.contact .wrapper .container .company-info-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  padding: 18px 15px;
  margin-bottom: 12px;
  box-sizing: border-box;
  background-color: var(--color-dark_white);
}
body#mobile.contact .wrapper .container .company-info-box dl:not(:last-child) {
  margin-bottom: 16px;
}
body#mobile.contact .wrapper .container .company-info-box dl dt {
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 16px;
  font-weight: 700;
  line-height: var(--line-normal);
  text-align: left;
  margin-bottom: 6px;
}
body#mobile.contact .wrapper .container .company-info-box dl dd {
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 500;
  line-height: var(--line-normal);
  text-align: left;
}
body#mobile.contact .wrapper .container .company-btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
body#mobile.contact .wrapper .container .company-btn-box button {
  position: relative;
  width: 158px;
  height: 46px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid var(--color-blue);
}
body#mobile.contact .wrapper .container .company-btn-box button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-family: 'Freesentation';
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
body#mobile.contact .wrapper .container .company-btn-box button.doc {
  background-color: var(--color-white);
}
body#mobile.contact .wrapper .container .company-btn-box button.doc a {
  color: var(--color-blue);
}
body#mobile.contact .wrapper .container .company-btn-box button.inquiry {
  background-color: var(--color-blue);
}
body#mobile.contact .wrapper .container .company-btn-box button.inquiry a {
  color: var(--color-white);
}
body#mobile .wrapper .oveflow-box {
  overflow: hidden;
}
body#mobile .wrapper .oveflow-box.mb12 {
  margin-bottom: 12px;
}

/* swiper */
.bottom-slider-box .swiper {
  margin: 0 25px !important;
}

.bottom-slider-box .swiper .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  width: 100%;
}
.bottom-slider-box .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0 !important;
  background-color: var(--color-gray);
}
.bottom-slider-box .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-blue);
}
.bottom-slider-box .swiper .swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.bottom-slider-box .swiper .swiper-wrapper div.swiper-slide img {
  width: 100%;
  height: 205px;
}
.bottom-slider-box .prev-btn {
  position: absolute;
  top: 100px;
  left: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: url('../assets/images/slider_arrow_ico.png') center center/12.58px 21px no-repeat;
}
.bottom-slider-box .next-btn {
  position: absolute;
  top: 100px;
  right: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  background: url('../assets/images/slider_arrow_ico.png') center center/12.58px 21px no-repeat;
  transform: rotate(180deg);
}

/* mobile Nav Menu */
body#mobile .nav-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  background: url('../assets/images/mobile/mob-nav-menu-bg.png') 0 0 / cover no-repeat;
  z-index: 98;
  display: none;
}
body#mobile .nav-menu button.close {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  background: url('../assets/images/mobile/mob-nav-menu-close-ico.png') center center/14px 14px
    no-repeat;
}
body#mobile .nav-menu .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
body#mobile .nav-menu .inner ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
body#mobile .nav-menu .inner ul li:not(:last-child) {
  margin-bottom: 81px;
}
body#mobile .nav-menu .inner ul li a {
  color: var(--color-blue);
  font-family: 'Paperlogy';
  font-size: 22px;
  font-weight: 700;
  line-height: var(--line-normal);
  text-align: center;
}

/* footer */
body#mobile button.scrTop {
  position: fixed;
  width: 30px;
  height: 30px;
  right: 16px;
  bottom: -100px;
  z-index: 100;
  background: var(--color-blue);
  transition: all 0.35s;
}
body#mobile button.scrTop::before {
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 7.5px);
  width: 15px;
  height: 16px;
  background: url('../assets/images/main_arrow_down_ico.png') center center / 15px 16px no-repeat;
  transform: rotateX(-180deg);
}
body#mobile footer {
  position: relative;
  bottom: 12px;
  width: 100%;
  max-height: 80px;
  color: var(--color-white_gray);
  font-family: 'Paperlogy';
  font-size: 10px;
  font-weight: 500;
  text-align: center;
  line-height: var(--line-normal);
  margin: 0 auto;
  background-color: transparent;
}
body#mobile.home footer {
  position: absolute;
  left: 0;
}
body#mobile.contact footer {
  position: absolute;
}
