@charset "UTF-8";
/* ---------------애니메이션 START--------------- */
@keyframes rotate1 {
  0% {
    transform: rotateX(0) translateZ(0.55em);
  }
  100% {
    transform: rotateX(360deg) translateZ(0.55em);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotateX(90deg) translateZ(0.55em);
  }
  75% {
    transform: rotateX(360deg) translateZ(0.55em);
  }
  75.001% {
    transform: rotateX(0deg) translateZ(0.55em);
  }
  100% {
    transform: rotateX(90deg) translateZ(0.55em);
  }
}
@keyframes rotate3 {
  0% {
    transform: rotateX(180deg) translateZ(0.55em);
  }
  50% {
    transform: rotateX(360deg) translateZ(0.55em);
  }
  50.001% {
    transform: rotateX(0deg) translateZ(0.55em);
  }
  100% {
    transform: rotateX(180deg) translateZ(0.55em);
  }
}
@keyframes rotate4 {
  0% {
    transform: rotateX(270deg) translateZ(0.55em);
  }
  25% {
    transform: rotateX(360deg) translateZ(0.55em);
  }
  25.001% {
    transform: rotateX(0deg) translateZ(0.55em);
  }
  100% {
    transform: rotateX(270deg) translateZ(0.55em);
  }
}
/* ---------------애니메이션 END--------------- */
/* 

*/
/* ---------------공통 START--------------- */
.main-title {
  font-size: 36px;
  line-height: 150%;
}

.main-title + .main-desc {
  margin-top: 25px;
}

.main-desc {
  font-size: 20px;
  line-height: 150%;
}

.dummy-line {
  height: 1px;
  background-color: #EEE;
}

/* ---------------공통 END--------------- */
/* 

*/
/* ---------------main-visual START--------------- */
.main-visual {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40vw;
  max-height: 90vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.main-visual .video-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 1s;
}
.main-visual .video-box.active {
  opacity: 1;
}
.main-visual .video-box .video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .bg-poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: opacity 1s;
}
.main-visual .bg-poster.active {
  opacity: 0;
}
.main-visual .bg-dummy {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.main-visual .text-box {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main-visual .text-box .main-visual-title {
  line-height: 130%;
  font-size: 3.5vw;
}
.main-visual .text-box .main-visual-title > span {
  display: block;
  line-height: inherit;
  opacity: 0;
  transition: opacity 2s;
}
.main-visual .text-box .main-visual-title > span:nth-of-type(1) {
  transition-delay: 0.3s;
}
.main-visual .text-box .main-visual-title > span:nth-of-type(2) {
  transition-delay: 0.8s;
}
.main-visual.active .text-box .main-visual-title > span {
  opacity: 1;
}

/* ---------------main-visual END--------------- */
/* 

*/
/* ---------------service-wrap START--------------- */
.service-list-wrap .service-list {
  display: flex;
  width: 100%;
  align-items: stretch;
}
.service-list-wrap .service-list li {
  position: relative;
  width: 25%;
}
.service-list-wrap .service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5%;
  display: block;
  width: 1px;
  height: 90%;
  background-color: #DDD;
}
.service-list-wrap .service-list li:nth-of-type(1)::before {
  display: none;
}
.service-list-wrap .service-list li .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 0 25px;
}
.service-list-wrap .service-list li .inner .icon-box {
  height: 85px;
}
.service-list-wrap .service-list li .inner .icon-box .icon {
  display: block;
  height: 100%;
  width: auto;
}
.service-list-wrap .service-list li .inner .tit {
  text-align: center;
  font-size: 25px;
  margin-top: 35px;
  white-space: nowrap;
}
.service-list-wrap .service-list li .inner .desc {
  font-size: 18px;
  line-height: 150%;
  margin-top: 20px;
}

/* ---------------service-wrap END--------------- */
/* 

*/
/* ---------------main-latest START--------------- */
.latest-list-wrap .latest-list {
  display: flex;
  width: 100%;
}
.latest-list-wrap .latest-list .list-item {
  position: relative;
  width: calc(33.3333333333% - 23.3333333333px);
}
.latest-list-wrap .latest-list .list-item:not(:nth-of-type(3n+1)) {
  margin-left: 35px;
}
.latest-list-wrap .latest-list .list-item .inner {
  display: block;
}
.latest-list-wrap .latest-list .list-item .inner .bg-box {
  width: 100%;
  height: 15.8vw;
  max-height: 248px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #EEE;
}
.latest-list-wrap .latest-list .list-item .inner .bg-box .bg {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s;
  transition-timing-function: linear;
}
.latest-list-wrap .latest-list .list-item .inner .text-box {
  margin-top: 20px;
}
.latest-list-wrap .latest-list .list-item .inner .text-box .tit {
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.5;
  height: 3em;
  text-align: left;
  word-break: break-all;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.latest-list-wrap .latest-list .list-item .inner .text-box .tit span {
  word-break: inherit;
}
.latest-list-wrap .latest-list .list-item .inner .text-box .desc {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 1.3;
  height: 3.9em;
  text-align: left;
  word-break: break-all;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-top: 10px;
}
.latest-list-wrap .latest-list .list-item .inner .text-box .date {
  display: block;
  font-size: 14px;
  margin-top: 15px;
}
.latest-list-wrap .latest-list .empty_list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 400px;
  color: #bab8b6;
  font-size: 16px;
  font-weight: 400;
  padding: unset !important;
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}

/* ---------------main-latest END--------------- */
/* 

*/
/* ---------------main-shortcut START--------------- */
.main-shortcut {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
}
.main-shortcut .bg-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.main-shortcut .bg-box .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;
  transition: transform 25s;
  transition-timing-function: linear;
}
.main-shortcut .text-box {
  position: relative;
}

/* ---------------main-shortcut END--------------- */
/* 

*/
/* ---------------portfolio-list-wrap START--------------- */
@keyframes horizon {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-400vw);
  }
}
.portfolio-list-wrap {
  position: relative;
}
.portfolio-list-wrap::before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
.portfolio-list-wrap .img-wrap {
  overflow: hidden;
}
.portfolio-list-wrap .img-wrap .img-list {
  display: flex;
  width: 100%;
  animation: horizon 225s linear infinite;
}
.portfolio-list-wrap .img-wrap .img-list:nth-of-type(2) {
  margin-left: -10%;
}
.portfolio-list-wrap .img-wrap .img-list li {
  flex-shrink: 0;
  width: 20%;
}
.portfolio-list-wrap .img-wrap .img-list li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio-list-wrap .text-box {
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.3);
}

/* ---------------portfolio-list-wrap END--------------- */
/* 

*/
/* ---------------contact-list-wrap START--------------- */
.contact-list-wrap .contact-list {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.1);
}
.contact-list-wrap .contact-list li {
  flex-shrink: 0;
  width: 50%;
  box-sizing: border-box;
}
.contact-list-wrap .contact-list li:nth-of-type(1) {
  padding: 100px 100px 100px 50px;
}
.contact-list-wrap .contact-list li:nth-of-type(1) .text-box {
  align-items: flex-end;
  text-align: right;
}
.contact-list-wrap .contact-list li:nth-of-type(2) {
  padding: 100px 50px 100px 100px;
  background-color: #FFF;
}
.contact-list-wrap .contact-list li:nth-of-type(2) .text-box {
  align-items: flex-start;
  text-align: left;
}
.contact-list-wrap .contact-list li .text-box {
  display: flex;
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
}
.contact-list-wrap .contact-list li .text-box a {
  margin-top: 50px;
}

/* ---------------contact-list-wrap END--------------- */
/* 

*/
/* ---------------media query START--------------- */
@media screen and (min-width: 850.1px) {
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list .list-item .inner:hover .bg-box .bg {
    transform: scale(1.05);
  }
  /* ---------------main-latest END--------------- */
}
@media screen and (max-width: 1350px) {
  /* ---------------공통 START--------------- */
  .main-title {
    font-size: 33px;
  }
  .main-title + .main-desc {
    margin-top: 23px;
  }
  .main-desc {
    font-size: 18px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------main-visual START--------------- */
  /* ---------------main-visual END--------------- */
  /* 

  */
  /* ---------------service-wrap START--------------- */
  .service-list-wrap .service-list li .inner {
    padding: 0 20px;
  }
  .service-list-wrap .service-list li .inner .icon-box {
    height: 80px;
  }
  .service-list-wrap .service-list li .inner .tit {
    font-size: 23px;
    margin-top: 30px;
  }
  .service-list-wrap .service-list li .inner .desc {
    font-size: 17px;
    margin-top: 17px;
  }
  /* ---------------service-wrap END--------------- */
  /* 

  */
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list .list-item {
    width: calc(33.3333333333% - 22px);
  }
  .latest-list-wrap .latest-list .list-item:not(:nth-of-type(3n+1)) {
    margin-left: 33px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box {
    margin-top: 17px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .tit {
    font-size: 17px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .desc {
    font-size: 15px;
    margin-top: 9px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .date {
    margin-top: 13px;
  }
  .latest-list-wrap .latest-list .empty_list {
    height: 350px;
    font-size: 15px;
  }
  /* ---------------main-latest END--------------- */
  /* 

  */
  /* ---------------main-shortcut START--------------- */
  .main-shortcut {
    height: 450px;
  }
  /* ---------------main-shortcut END--------------- */
  /* 

  */
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    border-radius: 37px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 90px 90px 90px 40px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 90px 40px 90px 90px;
  }
  .contact-list-wrap .contact-list li .text-box a {
    margin-top: 46px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
@media screen and (max-width: 1150px) {
  /* ---------------공통 START--------------- */
  .main-title {
    font-size: 30px;
  }
  .main-title + .main-desc {
    margin-top: 20px;
  }
  .main-desc {
    font-size: 17px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------main-visual START--------------- */
  /* ---------------main-visual END--------------- */
  /* 

  */
  /* ---------------service-wrap START--------------- */
  .service-list-wrap .service-list li .inner {
    padding: 0 15px;
  }
  .service-list-wrap .service-list li .inner .icon-box {
    height: 70px;
  }
  .service-list-wrap .service-list li .inner .tit {
    font-size: 21px;
    margin-top: 25px;
  }
  .service-list-wrap .service-list li .inner .desc {
    font-size: 16px;
    margin-top: 15px;
  }
  /* ---------------service-wrap END--------------- */
  /* 

  */
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list .list-item {
    width: calc(33.3333333333% - 20px);
  }
  .latest-list-wrap .latest-list .list-item:not(:nth-of-type(3n+1)) {
    margin-left: 30px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box {
    margin-top: 15px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .tit {
    font-size: 16px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .desc {
    font-size: 14px;
    margin-top: 7px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .date {
    font-size: 13px;
    margin-top: 10px;
  }
  .latest-list-wrap .latest-list .empty_list {
    height: 300px;
    font-size: 14px;
  }
  /* ---------------main-latest END--------------- */
  /* 

  */
  /* ---------------main-shortcut START--------------- */
  .main-shortcut {
    height: 400px;
  }
  /* ---------------main-shortcut END--------------- */
  /* 

  */
  /* ---------------portfolio-list-wrap START--------------- */
  .portfolio-list-wrap .img-wrap .img-list:nth-of-type(2) {
    margin-left: -12.5%;
  }
  .portfolio-list-wrap .img-wrap .img-list li {
    width: 25%;
  }
  /* ---------------portfolio-list-wrap END--------------- */
  /* 

  */
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    border-radius: 35px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 80px 80px 80px 30px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 80px 30px 80px 80px;
  }
  .contact-list-wrap .contact-list li .text-box a {
    margin-top: 40px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
@media screen and (max-width: 991px) {
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    border-radius: 33px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 70px 70px 70px 20px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 70px 20px 70px 70px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
@media screen and (max-width: 850px) {
  /* ---------------공통 START--------------- */
  .main-title {
    font-size: 27px;
  }
  .main-title + .main-desc {
    margin-top: 17px;
  }
  .main-desc {
    font-size: 16px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------main-visual START--------------- */
  .main-visual {
    height: 56.25vw;
  }
  .main-visual .text-box .main-visual-title {
    font-size: 4.5vw;
  }
  /* ---------------main-visual END--------------- */
  /* 

  */
  /* ---------------service-wrap START--------------- */
  .service-list-wrap .service-list {
    flex-wrap: wrap;
  }
  .service-list-wrap .service-list li {
    width: 50%;
  }
  .service-list-wrap .service-list li:nth-of-type(3)::before {
    display: none;
  }
  .service-list-wrap .service-list li:nth-of-type(3)::after, .service-list-wrap .service-list li:nth-of-type(4)::after {
    content: "";
    position: absolute;
    left: 5%;
    top: 0;
    display: block;
    width: 90%;
    height: 1px;
    background-color: #DDD;
  }
  .service-list-wrap .service-list li .inner {
    padding: 30px 20px;
  }
  .service-list-wrap .service-list li .inner .icon-box {
    height: 65px;
  }
  .service-list-wrap .service-list li .inner .tit {
    font-size: 19px;
    margin-top: 23px;
  }
  .service-list-wrap .service-list li .inner .desc {
    font-size: 15px;
    margin-top: 13px;
  }
  /* ---------------service-wrap END--------------- */
  /* 

  */
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list {
    flex-wrap: wrap;
    justify-content: center;
  }
  .latest-list-wrap .latest-list .list-item {
    width: calc(50% - 12.5px);
    margin-top: 50px;
  }
  .latest-list-wrap .latest-list .list-item:nth-of-type(1), .latest-list-wrap .latest-list .list-item:nth-of-type(2) {
    margin-top: unset;
  }
  .latest-list-wrap .latest-list .list-item:not(:nth-of-type(3n+1)) {
    margin-left: unset;
  }
  .latest-list-wrap .latest-list .list-item:not(:nth-of-type(2n+1)) {
    margin-left: 25px;
  }
  .latest-list-wrap .latest-list .list-item .inner .bg-box {
    height: 23.9vw;
  }
  /* ---------------main-latest END--------------- */
  /* 

  */
  /* ---------------main-shortcut START--------------- */
  .main-shortcut {
    height: 350px;
  }
  /* ---------------main-shortcut END--------------- */
  /* 

  */
  /* ---------------portfolio-list-wrap START--------------- */
  .portfolio-list-wrap .img-wrap .img-list:nth-of-type(2) {
    margin-left: -17%;
  }
  .portfolio-list-wrap .img-wrap .img-list li {
    width: 33.3333333333%;
  }
  /* ---------------portfolio-list-wrap END--------------- */
  /* 

  */
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    flex-direction: column;
  }
  .contact-list-wrap .contact-list li {
    width: 100%;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 70px 0;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) .text-box {
    align-items: center;
    text-align: center;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 70px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) .text-box {
    align-items: center;
    text-align: center;
  }
  .contact-list-wrap .contact-list li .text-box {
    width: 90%;
    margin: 0 auto;
  }
  .contact-list-wrap .contact-list li .text-box a {
    margin-top: 34px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
@media screen and (max-width: 600px) {
  /* ---------------공통 START--------------- */
  .main-title {
    font-size: 25px;
  }
  .main-title + .main-desc {
    margin-top: 15px;
  }
  .main-desc {
    font-size: 15px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------main-visual START--------------- */
  .main-visual {
    height: 70vw;
  }
  .main-visual .text-box .main-visual-title {
    font-size: 6vw;
  }
  /* ---------------main-visual END--------------- */
  /* 

  */
  /* ---------------service-wrap START--------------- */
  .service-list-wrap .service-list li .inner {
    padding: 25px 15px;
  }
  .service-list-wrap .service-list li .inner .icon-box {
    height: 60px;
  }
  .service-list-wrap .service-list li .inner .tit {
    font-size: 18px;
    margin-top: 20px;
  }
  .service-list-wrap .service-list li .inner .desc {
    font-size: 14px;
    margin-top: 10px;
  }
  /* ---------------service-wrap END--------------- */
  /* 

  */
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list .list-item {
    width: calc(50% - 10px);
    margin-top: 45px;
  }
  .latest-list-wrap .latest-list .list-item:not(:nth-of-type(2n+1)) {
    margin-left: 20px;
  }
  .latest-list-wrap .latest-list .list-item .inner .bg-box {
    height: 23.6vw;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box {
    margin-top: 13px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .tit {
    font-size: 15px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .desc {
    font-size: 13px;
    height: 2.6em;
    -webkit-line-clamp: 2;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .date {
    font-size: 12px;
    margin-top: 8px;
  }
  .latest-list-wrap .latest-list .empty_list {
    height: 250px;
    font-size: 13px;
  }
  /* ---------------main-latest END--------------- */
  /* 

  */
  /* ---------------main-shortcut START--------------- */
  .main-shortcut {
    height: 300px;
  }
  /* ---------------main-shortcut END--------------- */
  /* 

  */
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    border-radius: 30px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 60px 0;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 60px 0;
  }
  .contact-list-wrap .contact-list li .text-box a {
    margin-top: 30px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
@media screen and (max-width: 450px) {
  /* ---------------공통 START--------------- */
  .main-title {
    font-size: 23px;
  }
  .main-title + .main-desc {
    margin-top: 13px;
  }
  .main-desc {
    font-size: 14px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------main-visual START--------------- */
  .main-visual .text-box .main-visual-title {
    font-size: 6.5vw;
  }
  /* ---------------main-visual END--------------- */
  /* 

  */
  /* ---------------service-wrap START--------------- */
  .service-list-wrap .service-list li .inner {
    padding: 20px 10px;
  }
  .service-list-wrap .service-list li .inner .icon-box {
    height: 55px;
  }
  .service-list-wrap .service-list li .inner .tit {
    font-size: 17px;
    margin-top: 15px;
  }
  .service-list-wrap .service-list li .inner .desc {
    font-size: 13px;
  }
  /* ---------------service-wrap END--------------- */
  /* 

  */
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list .list-item {
    width: 100%;
    margin-top: 40px;
  }
  .latest-list-wrap .latest-list .list-item:nth-of-type(2) {
    margin-top: 40px;
  }
  .latest-list-wrap .latest-list .list-item:not(:nth-of-type(2n+1)) {
    margin-left: unset;
  }
  .latest-list-wrap .latest-list .list-item .inner .bg-box {
    height: 50vw;
  }
  .latest-list-wrap .latest-list .empty_list {
    height: 200px;
    font-size: 12px;
  }
  /* ---------------main-latest END--------------- */
  /* 

  */
  /* ---------------main-shortcut START--------------- */
  .main-shortcut {
    height: 250px;
  }
  /* ---------------main-shortcut END--------------- */
  /* 

  */
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    border-radius: 27px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 50px 0;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 50px 0;
  }
  .contact-list-wrap .contact-list li .text-box a {
    margin-top: 26px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
@media screen and (max-width: 350px) {
  /* ---------------공통 START--------------- */
  .main-title {
    font-size: 20px;
  }
  .main-title + .main-desc {
    margin-top: 10px;
  }
  .main-desc {
    font-size: 13px;
  }
  /* ---------------공통 END--------------- */
  /* 

  */
  /* ---------------main-visual START--------------- */
  /* ---------------main-visual END--------------- */
  /* 

  */
  /* ---------------service-wrap START--------------- */
  .service-list-wrap .service-list li .inner {
    padding: 15px 7px;
  }
  .service-list-wrap .service-list li .inner .icon-box {
    height: 50px;
  }
  .service-list-wrap .service-list li .inner .tit {
    font-size: 16px;
    margin-top: 13px;
  }
  .service-list-wrap .service-list li .inner .desc {
    margin-top: 7px;
    font-size: 12px;
  }
  /* ---------------service-wrap END--------------- */
  /* 

  */
  /* ---------------main-latest START--------------- */
  .latest-list-wrap .latest-list .list-item {
    margin-top: 35px;
  }
  .latest-list-wrap .latest-list .list-item:nth-of-type(2) {
    margin-top: 35px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box {
    margin-top: 10px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .tit {
    font-size: 14px;
    line-height: 1.4;
    height: 2.8em;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .desc {
    font-size: 12px;
    margin-top: 6px;
  }
  .latest-list-wrap .latest-list .list-item .inner .text-box .date {
    font-size: 11px;
    margin-top: 7px;
  }
  .latest-list-wrap .latest-list .empty_list {
    height: 150px;
  }
  /* ---------------main-latest END--------------- */
  /* 

  */
  /* ---------------main-shortcut START--------------- */
  .main-shortcut {
    height: 200px;
  }
  /* ---------------main-shortcut END--------------- */
  /* 

  */
  /* ---------------contact-list-wrap START--------------- */
  .contact-list-wrap .contact-list {
    border-radius: 25px;
  }
  .contact-list-wrap .contact-list li:nth-of-type(1) {
    padding: 40px 0;
  }
  .contact-list-wrap .contact-list li:nth-of-type(2) {
    padding: 40px 0;
  }
  .contact-list-wrap .contact-list li .text-box a {
    margin-top: 20px;
  }
  /* ---------------contact-list-wrap END--------------- */
}
/* ---------------media query END--------------- */