@charset "UTF-8";
/* INIT */
html {
  font-size: 62.5%;
}

body {
  color: #191919;
  font-family: "Pretendard";
  font-weight: 400;
  letter-spacing: -0.015em;
}

/* COMMON */
.skip_nav {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}

.skip_nav a {
  position: absolute;
  left: 0;
  top: -100px;
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.5);
}

.skip_nav a:focus,
.skip_nav a:active {
  top: 0;
}

.ratio {
  position: relative;
}

.ratio::after,
.ratio > * {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  background-size: contain;
  content: "";
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-center2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-center3 {
  display: flex;
  justify-content: center;
}

.oh {
  overflow: hidden;
}

.blind {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

br.mo,
br.mo480 {
  display: none;
}

section {
  position: relative;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

input::placeholder {
  color: #999;
}

.float-title {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.float-title.show {
  opacity: 1;
  transform: translateY(0px);
}

.left-in {
  opacity: 0;
  transform: translateX(-50px);
  transition: 0.8s;
}

.left-in.show {
  opacity: 1;
  transform: translateX(0px);
}

.right-in {
  opacity: 0;
  transform: translateX(50px);
  transition: 0.8s;
}

.right-in.show {
  opacity: 1;
  transform: translateX(0px);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s;
}

.fade-in.show {
  opacity: 1;
}

.expand-line {
  height: 0px;
  transition: 0.8s;
}

.expand-line.show {
  height: 116px;
}

.expand-line::after {
  display: none;
}

.expand-line.show::after {
  display: block;
  transition-delay: 0.5s;
}

.delay-0.show {
  transition-delay: 0s;
}

.delay-1.show {
  transition-delay: 0.2s;
}

.delay-2.show {
  transition-delay: 0.4s;
}

.delay-3.show {
  transition-delay: 0.6s;
}

.delay-4.show {
  transition-delay: 0.8s;
}

.delay-5.show {
  transition-delay: 1s;
}

.delay-6.show {
  transition-delay: 1.2s;
}

.delay-7.show {
  transition-delay: 1.4s;
}

.delay-8.show {
  transition-delay: 1.6s;
}

.delay-9.show {
  transition-delay: 1.8s;
}

.delay-10.show {
  transition-delay: 2s;
}

.delay-11.show {
  transition-delay: 2.2s;
}

.delay-12.show {
  transition-delay: 2.4s;
}

.delay-13.show {
  transition-delay: 2.6s;
}

.delay-14.show {
  transition-delay: 2.8s;
}

.delay-15.show {
  transition-delay: 3s;
}

/* LAYOUT */
.inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

/* HEADER */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

header .top-menu {
  background: #f5eee5;
}

header .top-menu .inner {
  justify-content: flex-end;
  height: 40px;
}

header .top-menu li {
  color: #595959;
  font-size: 1.4em;
  line-height: 1;
}

header .top-menu .menu-login li {
  position: relative;
  margin-left: 19px;
}

header .top-menu .menu-login li + li::before {
  position: absolute;
  left: -9px;
  top: 50%;
  display: block;
  width: 1px;
  height: 12px;
  background: #595959;
  transform: translateY(-50%);
  content: "";
}

header .top-menu .menu-country li {
  width: 25px;
  height: 17px;
  margin-left: 6px;
  font-size: 0;
  background: no-repeat center/cover;
}

header .top-menu .menu-country li:first-child {
  margin-left: 42px;
}

header .top-menu .menu-country li.th {
  background-image: url("../img/ic_th.png");
}

header .top-menu .menu-country li.jp {
  background-image: url("../img/ic_jp.png");
}

header .top-menu .menu-country li.us {
  background-image: url("../img/ic_us.png");
}

header .top-menu .menu-country li.eu {
  background-image: url("../img/ic_eu.png");
}

header .top-menu .menu-country li a {
  display: block;
  width: 100%;
  height: 100%;
}

header .top-menu .lang-ic {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 10px 0 38px;
  background: url("../img/ic_lang.png") no-repeat center/cover;
}

header .top-menu .menu-lang {
  position: relative;
  width: 48px;
  color: #595959;
  font-size: 1.4em;
  font-weight: 500;
  background: url("../img/ic_arrow.png") no-repeat 100% 50%;
  cursor: pointer;
}

/* header .top-menu .menu-lang::-ms-expand { display: none; } */
header .top-menu .menu-lang option {
  font-family: "Pretendard";
  font-size: 1em;
  font-weight: 500;
}

header .top-menu #google_translate_element {
  display: none;
  margin-left: 1vw;
}

header .global-menu {
  position: relative;
  /* border-bottom: 1px solid #cddbe7; */
  box-sizing: border-box;
}

header .global-menu .inner {
  position: static;
  justify-content: space-between;
  height: 76px;
}

header h1 {
  width: 180px;
}

header h1 a {
  display: block;
  padding-top: 20%;
  font-size: 0;
}

header h1 a.ratio::after {
  background-image: url("../img/logo-main-5.svg");
}

nav {
  height: 100%;
}

nav .main-menu {
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

nav .main-menu > li {
  height: 100%;
  padding: 0 16px;
  color: #191919;
}

nav .main-menu > li:last-child {
  padding-right: 8px;
}

nav .main-menu > li > span,
nav .main-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 8px;
  font-size: 1.5em;
  font-weight: 500;
  text-align: center;
  word-break: keep-all;
}

nav .main-menu > li > span::after,
nav .main-menu > li > a::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: 0%;
  height: 3px;
  background: #5E4F44;
  transition: 0.4s ease-in-out;
  content: "";
}

nav .main-menu > li:hover > span::after,
nav .main-menu > li:hover > a::after {
  left: 0;
  width: 100%;
}

header .sub-depth-wrap {
  position: absolute;
  left: 0;
  top: 77px;
  width: 100%;
  background: #fff;
  z-index: 9;
  display: none;
}

nav .main-menu > li:hover .sub-depth-wrap {
  display: block;
}

header .sub-depth {
  display: flex;
  justify-content: flex-end;
  max-width: 1280px;
  margin: 0 auto;
}

header .sub-depth .sub-menu ul {
  display: block;
  width: 260px;
  padding: 45px 0 0 40px;
  border-left: 1px solid #f4f4f4;
  box-sizing: border-box;
}

header .sub-depth .sub-menu.flex.sub01 ul {
    width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30px 30px 30px;
    gap: 10px 20px;
    grid-auto-flow: column;
    align-items: center;
}

header .sub-depth .sub-menu.flex.sub04 ul{
    width: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 30px 30px 30px 30px;
    gap: 10px 20px;
    grid-auto-flow: column;
    align-items: center;
}

header .sub-depth .sub-menu ul li {
  margin-bottom: 20px;
}

header .sub-depth .sub-menu ul li a {
  color: #999999;
  font-size: 1.4em;
}

header .sub-depth .sub-menu ul li a:hover {
  color: #5E4F44;
  font-weight: 600;
}

header .sub-depth .img-wrap {
  padding: 0 40px;
  border-left: 1px solid #f4f4f4;
}

header .sub-depth .img-wrap .img {
  width: 378px;
}

header .sub-depth .img-wrap .img .ratio {
  padding-top: 47.0899%;
}

header .sub-depth .sub01 .img-wrap .img .ratio::after {
  background-image: url("../img/sub-1.png");
}

header .sub-depth .sub02 .img-wrap .img .ratio::after {
  background-image: url("../img/sub2.png");
}

header .sub-depth .sub03 .img-wrap .img .ratio::after {
  background-image: url("../img/sub3.png");
}

header .sub-depth .sub04 .img-wrap .img .ratio::after {
  background-image: url("../img/sub4.png");
}

header .sub-depth .sub05 .img-wrap .img .ratio::after {
  background-image: url("../img/sub5.png");
}

header .sub-depth .sub07 .img-wrap .img .ratio::after {
  background-image: url("../img/sub7.png");
}

header .sub-depth .sub08 .img-wrap .img .ratio::after {
  background-image: url("../img/sub8.png");
}

header .sub-depth .simple-req {
  width: 370px;
  padding: 27px 30px;
  background: #f5eee5;
}

header .sub-depth .simple-req > .title {
  align-items: flex-end;
  margin-bottom: 15px;
  color: #5E4F44;
  font-size: 2.2em;
  font-weight: 600;
}

header .sub-depth .simple-req > .title span {
  position: relative;
  padding-left: 24px;
  margin-left: 22px;
  color: #191919;
  font-size: 0.9em;
}

header .sub-depth .simple-req > .title span::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/ic_call.png") no-repeat center/cover;
  transform: translateY(-50%);
  content: "";
}

header .sub-depth .simple-req form {
  margin-bottom: 25px;
}

header .sub-depth .simple-req form input {
  display: block;
  height: 34px;
  padding: 0 13px;
  margin: 0;
  font-size: 1.4em;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

header .sub-depth .simple-req form input.name {
  width: 96px;
  border-right: 1px solid #dbdbdb;
}

header .sub-depth .simple-req form input.tel {
  width: 150px;
}

header .sub-depth .simple-req form input.submit {
  width: calc(100% - 246px);
  color: #fff;
  font-size: 1.6em;
  font-weight: 600;
  background: #5E4F44;
}

header .sub-depth .simple-req .timetable li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.4em;
}

header .sub-depth .simple-req .timetable li:last-child {
  margin-bottom: 0;
}

header .sub-depth .simple-req .timetable li .title {
  display: flex;
  justify-content: space-between;
  width: 55px;
  padding-top: 4px;
  margin-right: 25px;
  color: #595959;
  text-align: justify;
  line-height: 0;
}

header .sub-depth .simple-req .timetable li .title em {
  font-style: normal;
}

header .gnb-trigger {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: none;
}

header .gnb-trigger span {
  display: block;
  width: 34px;
  height: 2px;
  margin-bottom: 8px;
  background: #000;
  transition: 0.4s;
}

header .gnb-trigger span:last-child {
  margin-bottom: 0;
}

header .gnb-trigger.on span:nth-child(2) {
  display: none;
}

header .gnb-trigger.on span:first-child {
  transform: rotate(45deg) translate(8px, 0px);
}

header .gnb-trigger.on span:last-child {
  transform: rotate(-45deg) translate(8px, 0px);
}

main {
  padding-top: 116px;
}

@media all and (max-width: 1366px) {
  main {
    width: 1366px;
  }
}
@media all and (max-width: 1280px) {
  header .top-menu .inner {
    padding: 0 20px;
  }
  header .global-menu .inner {
    padding: 0 20px;
  }
  header h1 {
    width: 127px;
  }
  nav .main-menu > li {
    padding: 0 10px;
  }
}
@media all and (max-width: 1190px) {
  header .sub-depth .sub-menu ul {
    width: 220px;
  }
  header .sub-depth .img-wrap .img {
    width: 320px;
  }
}
@media all and (max-width: 960px) {
  nav .main-menu > li > a,
  nav .main-menu > li > span {
    font-size: 1.3em;
  }
  header .sub-depth .img-wrap {
    display: none;
  }
}
@media all and (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
  br.mo {
    display: block;
  }
  br.pc {
    display: none;
  }
  header .top-menu {
    display: none;
  }
  header .top-menu.show {
    position: absolute;
    right: 0;
    top: 100px;
    display: block;
    width: 100%;
  }
  header .top-menu .inner {
    height: 60px;
  }
  header .top-menu .menu-country {
    display: none;
  }
  header .top-menu li {
    font-size: 2.2em;
  }
  header .top-menu .menu-login li {
    margin-left: 32px;
  }
  header .top-menu .menu-login li + li::before {
    left: -16px;
    height: 18px;
  }
  header .top-menu .menu-lang {
    width: 60px;
    font-size: 2em;
  }
  header .top-menu .lang-ic {
    margin-left: 28px;
  }
  header .global-menu .inner {
    height: 100px;
    justify-content: center;
    -webkit-box-shadow: 2px 2px 7px 0px rgba(73, 72, 75, 0.1);
    box-shadow: 2px 2px 7px 0px rgba(73, 72, 75, 0.1);
    z-index: 100;
  }
  header h1 {
    width: 207px;
  }
  header h1 a.ratio::after {
    background-image: url("../img/logo-main-5.svg");
  }
  header .gnb-trigger {
    display: block;
  }
  nav {
    display: none;
  }
  nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 160px);
    padding: 32px 40px;
    background: #5E4F44;
  }
  nav .main-menu {
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: flex-start; */
    width: 100%;
    padding: 0;
  }
  nav .main-menu > li {
    width: 50%;
    height: auto;
    padding: 0;
  }
  nav .main-menu > li > a,
  nav .main-menu > li > span {
    padding: 0;
    color: #fff;
    font-size: 2.8em;
    text-align: left;
    line-height: 2;
  }
  nav .main-menu > li > a::after,
  nav .main-menu > li > span::after {
    display: none;
  }
  nav .main-menu > li:hover a,
  nav .main-menu > li:hover span {
    display: inline-block;
    width: auto;
    border-bottom: 3px solid #fff;
  }
  header .sub-depth-wrap {
    top: 0;
    left: auto;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 100;
  }
  header .sub-depth {
    justify-content: flex-start;
    width: 100%;
    height: 100%;
  }
  header .sub-depth .sub-menu {
    width: 100%;
  }
  header .sub-depth .sub-menu ul {
    width: 100%;
    padding: 34px 0 0;
    border-left: 0;
  }
  header .sub-depth .sub-menu ul li {
    padding: 0 25px 13px;
    margin-bottom: 18px;
    border-bottom: 1px solid #dbdbdb;
  }
  header .sub-depth .sub-menu ul li a {
    font-size: 2.6em;
    line-height: 2;
  }
  header .sub-depth .simple-req {
    display: none;
  }
  main {
    width: 100%;
    overflow: hidden;
    padding-top: 100px;
  }
}
@media all and (max-width: 640px) {
  header h1 {
    width: 32.3438vw;
  }
  header .top-menu.show {
    top: 15.625vw;
    z-index: 1;
  }
  header .top-menu .inner {
    height: 9.375vw;
  }
  header .top-menu li {
    font-size: 3.4375vw;
  }
  header .top-menu .menu-lang {
    width: 10vw;
    font-size: 3.125vw;
  }
  header .top-menu .lang-ic {
    width: 2.5vw;
    height: 2.5vw;
    margin: 0 1.5625vw 0 4.375vw;
  }
  header .top-menu .menu-login li {
    margin-left: 5vw;
  }
  header .top-menu .menu-login li + li::before {
    left: -2.5vw;
    height: 2.8125vw;
  }
  header .gnb-trigger.on span:first-child {
    transform: rotate(45deg) translate(1.25vw, 0);
  }
  header .gnb-trigger.on span:last-child {
    transform: rotate(-45deg) translate(1.25vw, 0);
  }
  header .global-menu .inner {
    height: 15.625vw;
  }
  header .gnb-trigger {
    right: 6.25vw;
  }
  header .gnb-trigger span {
    width: 5.3125vw;
    margin-bottom: 1.25vw;
  }
  nav {
    height: calc(100% - 25vw);
    padding: 5vw 6.25vw;
  }
  nav .main-menu > li > a,
  nav .main-menu > li > span {
    font-size: 4.375vw;
  }
  header .sub-depth .sub-menu ul {
    padding-top: 5vw;
  }
  header .sub-depth .sub-menu ul li {
    padding: 0 3.9063vw 2.0313vw;
    margin-bottom: 2.8125vw;
  }
  header .sub-depth .sub-menu ul li a {
    font-size: 4.0625vw;
  }
  main {
    padding-top: 15.625vw;
  }
  header .sub-depth .sub-menu.flex.sub01 ul, 
  header .sub-depth .sub-menu.flex.sub04 ul {
    all: unset
  }
}
@media all and (max-width: 480px) {
  br.mo480 {
    display: block;
  }
}
/* FLOATING MENU */
.float-menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  box-shadow: 0 0 16px 0 rgba(80, 80, 80, 0.3);
}

.float-menu li {
  position: relative;
  right: 0;
  width: 66px;
  height: 66px;
  padding: 0 22px;
  background: #faf7f4;
  transition: 0.4s;
}

.float-menu li + li::before {
  position: absolute;
  left: 50%;
  top: -1px;
  display: block;
  width: 52px;
  height: 1px;
  background: #999999;
  transform: translateX(-50%);
  content: "";
}

.float-menu li:last-child::before {
  display: none;
}

.float-menu li.top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #333333;
}

.float-menu li.top:hover {
  background: #C4AA8B;
}

.float-menu li .ic {
  display: block;
  width: 22px;
  height: 22px;
  background: no-repeat center/cover;
}

.float-menu li .ic svg, .float-menu li .ic img {
  width: 100%;
  height: 100%;
}

.float-menu li:hover .ic {
  transform: scale(1);
}

.float-menu li .txt {
  display: none;
}

.float-menu li .hovertxt {
  position: absolute;
  right: -186px;
  top: 0;
  /* display: none;  */
  width: 186px;
  height: calc(100% + 1px);
  padding: 0 22px;
  color: #fff;
  font-size: 1.5em;
  background: #C4AA8B;
  opacity: 0;
  transition: 0.4s;
  z-index: 3;
}

.float-menu li .hovertxt .ic {
  margin-right: 12px;
}

.float-menu li:hover::before {
  display: none;
}

.float-menu li:hover .hovertxt {
  right: 0;
  opacity: 1;
}

@media all and (max-width: 800px) {
  .float-menu {
    top: auto;
    bottom: 0;
    width: 100%;
    transform: translateY(0);
  }
  .float-menu ul {
    display: flex;
    background: #FAF7F4;
  }
  .float-menu li {
    width: 20%;
    height: 100px;
    padding: 10px 0;
    text-align: center;
  }
  .float-menu li + li::before {
    display: none;
  }
  .float-menu li.top {
    display: none;
  }
  .float-menu li a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .float-menu li .ic {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
  }
  .float-menu li .txt {
    display: block;
    width: 100%;
    font-size: 3.4375vw;
    font-weight: 500;
  }
  .float-menu li .hovertxt {
    display: none;
    background: #f5eee5;
  }
}
@media all and (max-width: 640px) {
  .float-menu li {
    height: auto;
    padding: 2.5vw 0;
  }
  .float-menu li .ic {
    width: 5.9375vw;
    height: 5.9375vw;
    margin: 0 auto 1.5625vw;
  }
}
/* FOOTER */
/* CS */
.sec-cs {
  padding: 95px 0;
}

.sec-cs .inner {
  justify-content: space-between;
}

.sec-cs .left-sec {
  width: 34.375%;
  padding-right: 50px;
}

.sec-cs .sec-desc {
  margin-bottom: 20px;
}

.sec-cs .cs-call {
  display: block;
  margin-bottom: 50px;
  color: #5E4F44;
  font-size: 4.2em;
  font-weight: 600;
}

.sec-cs .timetable > .title {
  padding-bottom: 7px;
  margin-bottom: 18px;
  font-size: 1.6em;
  font-weight: 600;
  border-bottom: 2px solid #5E4F44;
}

.sec-cs .timetable > .title span {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url("../img/ic_time.png") no-repeat center/cover;
}

.sec-cs .timetable li {
  display: flex;
  align-items: center;
  padding: 0 3px 16px;
  margin-bottom: 14px;
  font-size: 1.6em;
  border-bottom: 1px solid #dbdbdb;
  box-sizing: border-box;
}

.sec-cs .timetable li:last-child {
  margin-bottom: 12px;
}

.sec-cs .timetable li .title {
  display: flex;
  justify-content: space-between;
  width: 55px;
  padding-top: 2px;
  margin-right: 28px;
  color: #595959;
  text-align: justify;
  line-height: 0;
}

.sec-cs .timetable li .title em {
  font-style: normal;
}

.sec-cs .timetable .desc {
  margin-bottom: 0;
  color: #959491;
  font-size: 1.6em;
  font-weight: 300;
  word-break: keep-all;
}

.sec-cs .right-sec {
  width: 65.625%;
}

.sec-cs .map-area {
  margin-bottom: 24px;
}

.sec-cs .map-img {
  width: 100%;
}

.sec-cs .map-img .ratio {
  padding-top: 56.4285%;
}

.sec-cs .map-img .ratio::after {
  background-image: url("../img/test3.png");
}

.sec-cs .address {
  position: relative;
  padding-left: 26px;
  margin-right: 22px;
  font-size: 2em;
  font-weight: 400;
}

.sec-cs .address::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 14px;
  height: 20px;
  background: url("../img/ic_map.png") no-repeat center/cover;
  transform: translateY(-50%);
  content: "";
}

.sec-cs .parking {
  color: #767676;
  font-size: 1.6em;
}

.sec-cs .parking strong {
  position: relative;
  padding-right: 18px;
  font-weight: 600;
  color: #191919;
}

.sec-cs .parking strong::after {
  position: absolute;
  right: 7px;
  top: 50%;
  display: block;
  width: 2px;
  height: 14px;
  background: #5E4F44;
  transform: translateY(-50%);
  content: "";
}

/* REQUEST */
.sec-request {
  padding: 56px 0 40px;
  background: #f5eee5;
}

.sec-request .inner {
  justify-content: center;
}

.sec-request h2 {
  padding-top: 5px;
  margin-right: 45px;
  color: #5E4F44;
  font-size: 2.6em;
  font-weight: 600;
  line-height: 1;
}

.sec-request form {
  width: 73.828125%;
}

.sec-request form fieldset {
  display: flex;
}

.sec-request form input,
.sec-request form select {
  display: block;
  height: 38px;
  padding: 0 14px;
  margin: 0;
  font-size: 1.5em;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

.sec-request form input.name,
.sec-request form input.tel {
  width: 190px;
  border-right: 1px solid #999;
}

.sec-request form #category2 {
  width: 142px;
  border-right: 1px solid #999;
  background: #fff url("../img/ic_expand.png") no-repeat 90% 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.sec-request form #category2::-ms-expand {
  display: none;
}

.sec-request form input.cont {
  width: 300px;
}

.sec-request form input.submit {
  width: 120px;
  color: #fff;
  font-size: 1.8em;
  background: #5E4F44;
}

.sec-request form input[type=checkbox] {
  margin-right: 8px;
}

.sec-request form .label-text {
  margin-right: 28px;
  color: #767676;
  font-size: 1.5em;
}

.sec-request form .label-text a {
  text-decoration: underline;
}

/* SITEMAP */
.sec-sitemap {
  background: #333;
}

.sec-sitemap .toggler {
  padding: 26px 0;
  color: #fff;
  border-bottom: 1px solid rgba(153, 153, 153, 0.1);
  cursor: pointer;
}

.sec-sitemap .toggler span {
  position: relative;
  display: block;
  padding-right: 22px;
  font-size: 1.5em;
  font-weight: 500;
}

.sec-sitemap .toggler span::after {
  position: absolute;
  right: 0;
  top: 50%;
  display: block;
  width: 10px;
  height: 5px;
  background: url("../img/ic_sitemap.png") no-repeat center/cover;
  transform: translateY(-50%);
  content: "";
}

.sec-sitemap.off .toggler span::after {
  transform: translateY(-50%) rotate(180deg);
}

.sec-sitemap .inner {
  max-width: 1320px;
  height: 390px;
  overflow: hidden;
  transition: 1s;
}

.sec-sitemap.off .inner {
  height: 0;
}

.sec-sitemap ul {
  width: 16.6%;
  padding: 60px 10px 50px 42px;
  border-left: 1px solid rgba(153, 153, 153, 0.1);
}

.sec-sitemap ul:last-child {
  border-right: 1px solid rgba(153, 153, 153, 0.1);
}

.sec-sitemap li {
  margin-bottom: 18px;
}

.sec-sitemap li a {
  color: #999999;
  font-size: 1.4em;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.sec-sitemap li.smttl {
  margin-bottom: 50px;
}

.sec-sitemap li.smttl a {
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
}

.sec-sitemap li a:hover {
  color: #fff;
}

/* INFO */
.sec-info {
  color: #fff;
  border-top: 1px solid rgba(153, 153, 153, 0.1);
  background: #333;
}

.sec-info .inner {
  align-items: flex-start;
  max-width: 1320px;
  padding: 40px 0 50px;
}

.sec-info .wrap1 {
  display: flex;
}

.sec-info .logo {
  width: 148px;
  margin-right: 40px;
}

.sec-info .logo .ratio {
  padding-top: 20%;
}

.sec-info .logo .ratio::after {
  background-image: url("../img/logo_white4.svg");
}

.sec-info .footer-menu li {
  margin-right: 30px;
  font-size: 1.4em;
}

.sec-info .footer-menu li:last-child {
  margin-right: 114px;
}

.sec-info .info dl {
  margin-bottom: 14px;
}

.sec-info .info dt,
.sec-info .info dd {
  position: relative;
  font-size: 1.2em;
  font-weight: 300;
}

.sec-info .info dt {
  margin-right: 6px;
}

.sec-info .info dd {
  margin-right: 24px;
  color: #999;
}

.sec-info .info dd + dt::before {
  position: absolute;
  left: -12px;
  top: 50%;
  display: block;
  width: 1px;
  height: 10px;
  background: #fff;
  transform: translateY(-50%);
  content: "";
}

.sec-info .info span {
  color: #999;
  font-size: 1.2em;
}

.sec-info .copy {
  margin-left: auto;
  color: #999;
  font-size: 1.2em;
}

@media all and (max-width: 1366px) {
  footer {
    width: 1366px;
  }
}
@media all and (max-width: 800px) {
  footer {
    width: 100%;
  }
  .sec-cs {
    padding: 0 0;
    background: #faf7f4;
  }
  .sec-cs .inner {
    flex-direction: column;
  }
  .sec-cs .left-sec {
    width: 100%;
    padding: 80px 40px 64px;
    margin-bottom: 12px;
    text-align: center;
    background: #fff;
  }
  .sec-cs .timetable > .title {
    font-size: 2.8em;
    font-weight: 600;
  }
  .sec-cs .timetable li {
    font-size: 2.4em;
  }
  .sec-cs .timetable li .title {
    width: 22.9688vw;
    padding: 0 32px;
  }
  .sec-cs .timetable li span {
    text-align: left;
  }
  .sec-cs .timetable .desc {
    font-size: 2.2em;
  }
  .sec-cs .right-sec {
    width: 100%;
    padding: 70px 40px 90px;
    background: #fff;
  }
  .sec-cs .right-sec .desc {
    flex-direction: column;
  }
  .sec-cs .address {
    margin-right: 0;
    margin-bottom: 18px;
    font-size: 2.8em;
    font-weight: 600;
  }
  .sec-cs .parking {
    text-align: center;
    font-size: 2.4em;
  }
  .sec-cs .parking span {
    display: block;
    margin-top: 8px;
  }
  .sec-request .inner {
    flex-direction: column;
    align-items: center;
    padding: 0 40px;
  }
  .sec-request h2 {
    margin: 0 0 40px;
  }
  .sec-request form {
    position: relative;
    width: 100%;
  }
  .sec-request form fieldset {
    flex-direction: column;
  }
  .sec-request form .input-wrap {
    flex-direction: column;
  }
  .sec-request form input.name,
  .sec-request form input.tel,
  .sec-request form #category2,
  .sec-request form input.cont {
    width: 100%;
    height: 75px;
    margin-bottom: 15px;
    font-size: 2.5em;
  }
  .sec-request form input.name,
  .sec-request form input.tel,
  .sec-request form #category2 {
    border-right: 0;
  }
  .sec-request form #category2 {
    background-position: 95% 50%;
  }
  .sec-request form input.submit {
    width: 100%;
    height: 80px;
    font-size: 3em;
  }
  .sec-request form .input-wrap.first {
    position: relative;
  }
  .sec-request form .input-wrap.second {
    width: 100%;
  }
  .sec-request form .input-wrap .chk-wrap {
    width: 100%;
    padding: 23px 28px;
    background: #fff;
    box-sizing: border-box;
  }
  .sec-request form .input-wrap .chk-wrap:last-child {
    border-top: 1px solid #dbdbdb;
  }
  .sec-request form input[type=checkbox] {
    width: 28px;
    height: 28px;
    margin-right: 12px;
  }
  .sec-request form .label-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-right: 0;
    color: #191919;
    font-size: 2.3em;
  }
  .sec-request form .label-text a {
    color: #999;
    font-size: 0.9em;
  }
  .sec-sitemap {
    display: none;
  }
  .sec-info {
    padding-bottom: 100px;
  }
  .sec-info .inner {
    flex-wrap: wrap;
    padding: 55px 40px 40px;
  }
  .sec-info .wrap1 {
    width: 100%;
    align-items: center;
    margin-bottom: 70px;
  }
  .sec-info .logo {
    margin-right: auto;
  }
  .sec-info .footer-menu {
    justify-content: flex-end;
  }
  .sec-info .footer-menu li {
    margin-right: 24px;
    font-size: 2.2em;
  }
  .sec-info .footer-menu li:last-child {
    margin-right: 0;
  }
  .sec-info .info {
    width: 100%;
    margin-bottom: 48px;
  }
  .sec-info .info dl {
    width: 100%;
  }
  .sec-info .info dt,
  .sec-info .info dd,
  .sec-info .info span {
    font-size: 2em;
  }
  .sec-info .copy {
    margin-left: 0;
    font-size: 2em;
  }
}
@media all and (max-width: 640px) {
  .sec-cs .sec-desc {
    margin-bottom: 3.75vw;
  }
  .sec-cs .left-sec::after {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 1px;
    height: 12.5vw;
    margin-left: -0.5px;
    background: #d6d6d6;
    content: "";
  }
  .sec-cs .left-sec {
    padding: 15.625vw 6.25vw 10vw;
  }
  .sec-cs .cs-call {
    margin-bottom: 7.8125vw;
    font-size: 6.875vw;
  }
  .sec-cs .parking {
    font-size: 3.75vw;
  }
  .sec-cs .address {
    font-size: 4.375vw;
  }
  .sec-cs .timetable > .title {
    font-size: 4.375vw;
  }
  .sec-cs .timetable li {
    font-size: 3.75vw;
  }
  .sec-cs .timetable li .title {
    padding: 0 3.125vw;
  }
  .sec-request {
    padding: 8.75vw 0 15.625vw;
  }
  .sec-request .inner {
    padding: 0 6.25vw;
  }
  .sec-request h2 {
    margin-bottom: 6.25vw;
    font-size: 6.25vw;
  }
  .sec-request form input.name,
  .sec-request form input.tel,
  .sec-request form #category2,
  .sec-request form input.cont {
    height: 11.25vw;
    padding: 0 4.375vw;
    margin-bottom: 2.3438vw;
    font-size: 3.9063vw;
  }
  .sec-request form input[type=checkbox] {
    width: 4.375vw;
    height: 4.375vw;
  }
  .sec-request form .input-wrap .chk-wrap {
    padding: 3.5938vw 4.375vw;
  }
  .sec-request form .label-text {
    font-size: 3.5938vw;
  }
  .sec-request form input.submit {
    height: 12.5vw;
    margin-top: 6.25vw;
    font-size: 4.6875vw;
  }
  .sec-cs .right-sec {
    padding: 10.9375vw 6.25vw 15.625vw;
  }
  .sec-info {
    padding-bottom: 15.625vw;
  }
  .sec-info .inner {
    padding: 8.4375vw 6.25vw 7.0313vw;
  }
  .sec-info .wrap1 {
    margin-bottom: 10.9375vw;
  }
  .sec-info .footer-menu li {
    font-size: 3.4375vw;
  }
  .sec-info .info {
    margin-bottom: 8.4375vw;
  }
  .sec-info .info dl {
    flex-wrap: wrap;
    margin-bottom: 3.125vw;
  }
  .sec-info .info dt,
  .sec-info .info dd,
  .sec-info .info span,
  .sec-info .copy {
    font-size: 3.125vw;
  }
  .sec-info .info dt {
    margin-right: 1.5625vw;
  }
  .sec-info .info dd {
    margin-right: 5vw;
  }
  .sec-info .info dd + dt::before {
    left: -2.5vw;
    height: 2.1875vw;
  }
  .sec-info .info dd:last-child {
    margin-right: 0;
  }
}
@media all and (max-width: 560px) {
  /* .sec-cs .timetable li .title { padding: 0 16px; margin-right: 16px; } */
  .sec-cs .timetable .desc {
    font-size: 1.6em;
  }
  /* .sec-cs .right-sec { padding: 50px 6.25vw 70px; } */
  .sec-info .logo {
    width: 23.125vw;
  }
  .sec-info .info dd {
    margin-right: 4vw;
  }
  .sec-info .info dd + dt::before {
    left: -2vw;
  }
}
/* 약관 팝업 */
.terms-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  display: none;
}

.terms-popup .layer-back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.terms-popup .layer {
  position: absolute;
  left: 50%;
  top: calc(50% + 30px);
  width: 90%;
  max-width: 1280px;
  max-height: 60vh;
  background: #fff;
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(33, 76, 180, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(33, 76, 180, 0.2);
}

.terms-popup .layer .terms-cont {
  max-height: calc(60vh - 60px);
  padding: 10px 40px 50px;
  overflow: auto;
}

.terms-popup .layer .terms-cont h3 {
  margin-bottom: 24px;
  font-size: 3.6em;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.terms-popup .layer .terms-cont .cont {
  height: 100%;
  font-size: 1.6em;
  line-height: 1.5;
  text-align: justify;
}

.terms-popup .layer .close {
  width: 50px;
  height: 50px;
  padding-bottom: 3px;
  margin: 10px 10px 0 auto;
  font-size: 36px;
  cursor: pointer;
}

.terms-popup .layer .close span {
  font-size: 0;
}

@media all and (max-width: 640px) {
  .terms-popup .layer {
    max-height: 70vh;
  }
  .terms-popup .layer .terms-cont {
    max-height: calc(70vh - 7.8125vw - 1.5625vw);
    padding: 3.125vw 6.25vw 9.375vw;
  }
  .terms-popup .layer .terms-cont h3 {
    font-size: 6.875vw;
  }
  .terms-popup .layer .terms-cont .cont {
    font-size: 3.75vw;
  }
  .terms-popup .layer .close {
    width: 7.8125vw;
    height: 7.8125vw;
    margin: 1.5625vw 1.5625vw 0 auto;
    font-size: 9vw;
  }
}
/* ********************************************* */
/* SUB DEPTH VISUAL */
.sec-subvisual {
  color: #fff;
  background: no-repeat center/cover;
}

.sec-subvisual .inner {
  flex-direction: column;
  justify-content: center;
  height: 366px;
}

.sec-subvisual h2 {
  margin-bottom: 28px;
  font-size: 4.2em;
  font-weight: 300;
  line-height: 1;
  word-break: keep-all;
}

.sec-subvisual h2 strong {
  font-weight: 600;
}

.sec-subvisual p.desc {
  font-size: 1.6em;
  line-height: 2;
  word-break: keep-all;
}

.sec-subvisual p.desc strong {
  font-weight: 600;
}

.sec-subvisual p.desc br.mo {
  display: none;
}

/* SUB DEPTH MENU */
.sec-submenu {
  background: #FAF7F4;
}

.sec-submenu .inner {
  position: relative;
  padding-top: 40px;
}

.sec-submenu .breadcrumb li {
  position: relative;
  color: #595959;
  font-size: 1.5em;
}

.sec-submenu .breadcrumb li + li::before {
  display: inline-block;
  margin: 0 6px;
  vertical-align: top;
  content: ">";
}

.sec-submenu .submenu {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 51.04166%;
  height: 120px;
  padding: 0 20px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(73, 73, 75, 0.12);
  box-shadow: 2px 2px 6px 0px rgba(73, 73, 75, 0.12);
  z-index: 5;
}

.sec-submenu .submenu ul {
  width: 860px;
  align-items: center;
}

.sec-submenu .submenu li {
  position: relative;
  color: #595959;
  font-size: 1.5em;
  text-align: center;
}

.sec-submenu .submenu li + li::before {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 1px;
  height: 13px;
  background: #595959;
  transform: translateY(-50%);
  content: "";
}

.sec-submenu .submenu li.active {
  color: #5E4F44;
  font-weight: 600;
}

.sec-submenu .submenu li.active::after {
  position: absolute;
  left: 50%;
  bottom: -18px;
  display: block;
  width: 5px;
  height: 5px;
  background: #5E4F44;
  border-radius: 50%;
  content: "";
}

.sec-submenu .submenu li.active a {
  display: block;
  transform: translateY(-10px);
}

/* SUB DEPTH COMMON */
.sec-title {
  margin-bottom: 6px;
  font-size: 4em;
  font-weight: 300;
  line-height: 1.2;
  word-break: keep-all;
}

.sec-title strong {
  font-weight: 600;
}

.sec-desc {
  color: #767676;
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.77;
  word-break: keep-all;
}

.sec-intro {
  background: #FAF7F4;
}

.sec-intro .inner {
  padding: 120px 20px 200px;
}

.sec-intro .txt-box {
  position: relative;
  width: 50%;
  padding: 79px 70px 68px;
  background: #fff;
  z-index: 2;
  -webkit-box-shadow: 10px 10px 16px 0px rgba(73, 73, 75, 0.06);
  box-shadow: 10px 10px 16px 0px rgba(73, 73, 75, 0.06);
}

.sec-intro .txt-box .sub-desc {
  margin-bottom: 16px;
  color: #5E4F44;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.sec-intro .txt-box h3 {
  margin-bottom: 28px;
  font-size: 4em;
  font-weight: 300;
  line-height: 1.375;
  word-break: keep-all;
}

.sec-intro .txt-box h3 strong {
  font-weight: 600;
}

.sec-intro .txt-box .main-desc {
  color: #595959;
  font-size: 1.8em;
  line-height: 1.88;
  text-align: justify;
}

.sec-intro .pic-box {
  position: absolute;
  right: 0;
  bottom: 130px;
  width: 61.6129%;
  z-index: 1;
}

@media all and (max-width: 800px) {
  .sec-subvisual {
    position: relative;
    height: 730px;
  }
  .sec-subvisual .inner {
    position: absolute;
    left: 0;
    bottom: 0;
    justify-content: flex-end;
    width: 100%;
    height: auto;
    padding: 64px 40px 60px;
  }
  .sec-subvisual p.desc br.mo {
    display: block;
  }
  .sec-subvisual p.desc .pc {
    display: none;
  }
  .sec-submenu .inner {
    padding: 40px 40px 0;
  }
  .sec-submenu .submenu {
    display: none;
  }
  .sec-submenu.fff {
    background: #fff;
  }
  .sec-intro .inner {
    padding: 90px 40px 65%;
  }
  .sec-intro .txt-box {
    width: 77.34375%;
    padding: 6.25vw;
  }
  .sec-intro .pic-box {
    right: 40px;
    width: 75.9375%;
    bottom: 100px;
  }
  .sec-desc {
    padding: 0 40px;
  }
}
@media all and (max-width: 640px) {
  .sec-title {
    font-size: 6.25vw;
  }
  .sec-desc {
    font-size: 3.4375vw;
    padding: 0 6.25vw;
  }
  .sec-subvisual {
    height: 114.0625vw;
  }
  .sec-subvisual .inner {
    padding: 10vw 6.25vw 9.375vw;
  }
  .sec-subvisual h2 {
    margin-bottom: 4.375vw;
    font-size: 6.5625vw;
  }
  .sec-subvisual p.desc {
    font-size: 3.75vw;
  }
  .sec-submenu .inner {
    padding: 7.8125vw 6.25vw 0;
  }
  .sec-submenu .breadcrumb li {
    font-size: 3.125vw;
  }
  .sec-intro .inner {
    padding: 15.625vw 6.25vw;
  }
  .sec-intro .txt-box {
    width: 100%;
    margin-bottom: 5vw;
  }
  .sec-intro .txt-box .sub-desc {
    font-size: 2.3438vw;
  }
  .sec-intro .txt-box h3 {
    font-size: 6.25vw;
  }
  .sec-intro .txt-box .main-desc {
    font-size: 3.75vw;
  }
  .sec-intro .pic-box {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
  }
}
/* SUB DEPTH BOTTOM */
/* FIELD */
.sec-field {
  position: relative;
  padding: 96px 0px 100px;
  text-align: center;
}

.sec-field::after {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 70px;
  margin-left: -0.5px;
  background: #d6d6d6;
  content: "";
}

.sec-field .sec-title {
  margin-bottom: 6px;
}

.sec-field .sec-desc {
  margin-bottom: 48px;
}

.field-slide .swiper-wrapper {
  justify-content: center;
}

.field-slide .swiper-slide {
  width: 96px;
  margin: 0 10px;
  font-size: 1.8em;
  font-weight: 500;
}

.field-slide .swiper-slide:last-child {
  margin-right: 0;
}

.field-slide .swiper-slide .thumb {
  padding-top: 100%;
  margin-bottom: 18px;
  background: #FAF7F4 no-repeat center;
  transition: 0.4s;
}

/* .field-slide .swiper-slide.swiper-slide-active .thumb { background: #C4AA8B; -webkit-box-shadow: 0px 0px 14px 5px rgba(63,177,195,0.14); box-shadow: 0px 0px 14px 5px rgba(63,177,195,0.14); } */
.field-slide .swiper-slide.over .thumb {
  background: #C4AA8B;
  -webkit-box-shadow: 0px 0px 14px 5px rgb(196, 170, 136, 0.4);
  box-shadow: 0px 0px 14px 5px rgb(196, 170, 136, 0.4);
}

.field-slide .swiper-slide.d1 .thumb::after {
  background-image: url("../img/icon_d_01.svg");
}

.field-slide .swiper-slide.d1.over .thumb::after {
  background-image: url("../img/icon_d_01_fff.svg");
}

.field-slide .swiper-slide.d2 .thumb::after {
  background-image: url("../img/icon_d_02.svg");
}

.field-slide .swiper-slide.d2.over .thumb::after {
  background-image: url("../img/icon_d_02_fff.svg");
}

.field-slide .swiper-slide.d3 .thumb::after {
  background-image: url("../img/icon_d_03.svg");
}

.field-slide .swiper-slide.d3.over .thumb::after {
  background-image: url("../img/icon_d_03_fff.svg");
}

.field-slide .swiper-slide.d4 .thumb::after {
  background-image: url("../img/icon_d_04.svg");
}

.field-slide .swiper-slide.d4.over .thumb::after {
  background-image: url("../img/icon_d_04_fff.svg");
}

.field-slide .swiper-slide.d5 .thumb::after {
  background-image: url("../img/icon_d_05.svg");
}

.field-slide .swiper-slide.d5.over .thumb::after {
  background-image: url("../img/icon_d_05_fff.svg");
}

.field-slide .swiper-slide.d6 .thumb::after {
  background-image: url("../img/icon_d_06.svg");
}

.field-slide .swiper-slide.d6.over .thumb::after {
  background-image: url("../img/icon_d_06_fff.svg");
}

.field-slide .swiper-slide.d7 .thumb::after {
  background-image: url("../img/icon_d_07.svg");
}

.field-slide .swiper-slide.d7.over .thumb::after {
  background-image: url("../img/icon_d_07_fff.svg");
}

.field-slide .swiper-slide.s1 .thumb::after {
  background-image: url("../img/icon_f_01.svg");
}

.field-slide .swiper-slide.s1.over .thumb::after {
  background-image: url("../img/icon_f_01_fff.svg");
}

.field-slide .swiper-slide.s2 .thumb::after {
  background-image: url("../img/icon_f_02.svg");
}

.field-slide .swiper-slide.s2.over .thumb::after {
  background-image: url("../img/icon_f_02_fff.svg");
}

.field-slide .swiper-slide.s3 .thumb::after {
  background-image: url("../img/icon_f_03.svg");
}

.field-slide .swiper-slide.s3.over .thumb::after {
  background-image: url("../img/icon_f_03_fff.svg");
}

.field-slide .swiper-slide.s4 .thumb::after {
  background-image: url("../img/icon_f_04.svg");
}

.field-slide .swiper-slide.s4.over .thumb::after {
  background-image: url("../img/icon_f_04_fff.svg");
}

.field-slide .swiper-slide.s5 .thumb::after {
  background-image: url("../img/icon_f_05.svg");
}

.field-slide .swiper-slide.s5.over .thumb::after {
  background-image: url("../img/icon_f_05_fff.svg");
}

.field-slide .swiper-slide.s6 .thumb::after {
  background-image: url("../img/icon_f_06.svg");
}

.field-slide .swiper-slide.s6.over .thumb::after {
  background-image: url("../img/icon_f_06_fff.svg");
}

.field-slide .swiper-slide.s7 .thumb::after {
  background-image: url("../img/icon_f_07.svg");
}

.field-slide .swiper-slide.s7.over .thumb::after {
  background-image: url("../img/icon_f_07_fff.svg");
}

.field-slide .swiper-slide.s8 .thumb::after {
  background-image: url("../img/icon_f_08.svg");
}

.field-slide .swiper-slide.s8.over .thumb::after {
  background-image: url("../img/icon_f_08_fff.svg");
}

.field-slide .swiper-slide.s9 .thumb::after {
  background-image: url("../img/icon_f_09.svg");
}

.field-slide .swiper-slide.s9.over .thumb::after {
  background-image: url("../img/icon_f_09_fff.svg");
}

.field-slide .slick-arrow {
  display: none !important;
}

@media all and (max-width: 640px) {
  .sec-field {
    padding: 15.625vw 6.25vw;
  }
  .sec-field::after {
    height: 12.5vw;
  }
  .sec-field .sec-desc {
    padding: 0;
    margin-bottom: 5vw;
  }
  .field-slide {
    display: block;
  }
  .field-slide .swiper-wrapper {
    justify-content: flex-start;
  }
  .field-slide .swiper-slide {
    margin: 0 20px 0 0;
    font-size: 3.125vw;
  }
  .field-slide .swiper-slide:last-child {
    margin-right: 0;
  }
  /* 
  .field-slide .swiper-slide.swiper-slide-active .thumb { background: #FAF7F4; -webkit-box-shadow: none; box-shadow: none; }
  .field-slide .swiper-slide.s1.swiper-slide-active .thumb::after { background-image: url('../img/f_01.png'); }
  .field-slide .swiper-slide.s2.swiper-slide-active .thumb::after { background-image: url('../img/f_02.png'); }
  .field-slide .swiper-slide.s3.swiper-slide-active .thumb::after { background-image: url('../img/f_03.png'); }
  .field-slide .swiper-slide.s4.swiper-slide-active .thumb::after { background-image: url('../img/f_04.png'); }
  .field-slide .swiper-slide.s5.swiper-slide-active .thumb::after { background-image: url('../img/f_05.png'); }
  .field-slide .swiper-slide.s6.swiper-slide-active .thumb::after { background-image: url('../img/f_06.png'); }
  .field-slide .swiper-slide.s7.swiper-slide-active .thumb::after { background-image: url('../img/f_07.png'); }
  .field-slide .swiper-slide.s8.swiper-slide-active .thumb::after { background-image: url('../img/f_08.png'); }
  .field-slide .swiper-slide.s9.swiper-slide-active .thumb::after { background-image: url('../img/f_09.png'); } */
}
/* KNOW HOW */
.sec-how {
  position: relative;
  background: #FAF7F4;
}

.sec-how::after {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 70px;
  margin-left: -0.5px;
  background: #dbdbdb;
  content: "";
}

.sec-how .inner {
  padding: 96px 0 116px;
}

.sec-how .sec-title {
  text-align: center;
}

.sec-how .sec-desc {
  margin-bottom: 48px;
  text-align: center;
}

.sec-how .points {
  justify-content: center;
  width: 920px;
  margin: 0 auto;
}

.sec-how .points .slick-arrow {
  display: none !important;
}

.slick-track:before,
.slick-track:after {
  display: none;
}

/* .sec-how .points .swiper-slide { width: 260px; }
.sec-how .points .swiper-slide:nth-child(n+2) { margin-left: 70px; } */
.sec-how .points .swiper-slide .img {
  margin-bottom: 24px;
  overflow: hidden;
}

.sec-how .points .swiper-slide .ratio {
  padding-top: 100%;
  transition: 0.5s;
}

.sec-how .points .swiper-slide .ratio:hover {
  transform: scale(1.15);
}

.sec-how .points .swiper-slide .ratio::after {
  transition: 0.5s;
}

.sec-how .points .swiper-slide.s1 .ratio::after {
  background-image: url("../img/obj-how-1.png");
}

.sec-how .points .swiper-slide.s2 .ratio::after {
  background-image: url("../img/obj-how-2.png");
}

.sec-how .points .swiper-slide.s3 .ratio::after {
  background-image: url("../img/obj-how-3.png");
}

.sec-how .points .swiper-slide .txt {
  text-align: center;
}

.sec-how .points .swiper-slide .txt .small {
  margin-bottom: 14px;
  color: #5E4F44;
  font-size: 1.4em;
  font-weight: 700;
}

.sec-how .points .swiper-slide .txt .ttl {
  padding-bottom: 18px;
  font-size: 2em;
  line-height: 1.6;
  border-bottom: 2px solid #5E4F44;
}

@media all and (max-width: 800px) {
  /* .sec-how .points { width: 100%; height: 72.5vw; padding: 0; }
  .sec-how .points .swiper-wrapper { align-items: center; }
  .sec-how .points .swiper-slide { margin: 0 28px; }
  .sec-how .points .swiper-slide:nth-child(n+2) { margin-left: 0; } */
  .sec-how .points {
    width: 100%;
    padding: 0 20.3125vw;
  }
  .sec-how .points .swiper-slide.swiper-slide-active {
    background: #fff;
  }
  .sec-how .points .swiper-slide .txt .ttl {
    font-size: 1.8em;
    word-break: keep-all;
  }
}
@media all and (max-width: 640px) {
  /* 
  .sec-how .points { height: 75.7813vw; }
  .sec-how .points .swiper-slide { margin: 0 4.375vw; } */
  .sec-how::after {
    height: 12.5vw;
  }
  .sec-how .inner {
    padding: 15.625vw 0;
  }
  .sec-how .sec-desc {
    margin-bottom: 5vw;
  }
  .sec-how .points .swiper-slide .txt .ttl {
    padding-bottom: 2.8125vw;
    font-size: 3.4375vw;
  }
  .sec-how .points .swiper-slide .txt .small {
    margin-bottom: 2.5vw;
    font-size: 2.8125vw;
  }
  .sec-how .points .swiper-slide .img {
    margin-bottom: 3.75vw;
  }
}
/* AWARDS */
.sec-awards {
  background: url("../img/banner-bottom.png") no-repeat center/cover;
}

.sec-awards .img .ratio {
  padding-top: 28.984375%;
}

/* .sec-awards .img .ratio::after {
  background-image: url("../img/obj_tongsa_cert.png");
} */

@media all and (max-width: 800px) {
  /* .sec-awards .img .ratio {
    padding-top: 91.875%;
  } */
  /* .sec-awards .img .ratio::after {
    background-image: url("../img/m_obj_awards.png");
  } */
}
/* 자주하는 질문 */
.sec-faq.gray {
  background: #FAF7F4;
}

.sec-faq::after {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 70px;
  background: #dbdbdb;
  content: "";
}

.sec-faq .inner {
  padding: 94px 110px 120px;
}

.sec-faq .sec-title {
  text-align: center;
}

.sec-faq .sec-desc {
  margin-bottom: 60px;
  text-align: center;
}

.sec-faq li {
  border-bottom: 1px solid #5E4F44;
  background: #fff;
}

.sec-faq li:first-child {
  border-top: 1px solid #5E4F44;
}

.sec-faq li.on {
  background: #FAF7F4;
  border-bottom: 1px solid #dbdbdb;
}

.sec-faq li .faq-q {
  padding: 29px 40px 30px;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.4;
}

.sec-faq li .faq-q p {
  position: relative;
  padding-right: 20px;
}

.sec-faq li .faq-q p::after {
  position: absolute;
  right: 0px;
  top: 50%;
  display: block;
  width: 12px;
  height: 8px;
  background: url("../img/ic_expand.png") no-repeat center/cover;
  transform: translateY(-50%);
  content: "";
}

.sec-faq li.on .faq-q p::after {
  background-image: url("../img/ic_collapse.png");
}

.sec-faq li .faq-a {
  display: none;
  padding: 0 40px 30px;
  color: #595959;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 2;
  text-align: justify;
}

@media all and (max-width: 800px) {
  .sec-faq .inner {
    padding: 94px 40px 120px;
  }
  .sec-faq li .faq-q {
    padding: 29px 20px 30px;
  }
  .sec-faq li .faq-q p {
    padding-right: 40px;
  }
  .sec-faq li .faq-a {
    padding: 0 20px 30px;
  }
  .sec-awards .img .ratio {
    padding-top: 24%;
  }
}
@media all and (max-width: 640px) {
  .sec-faq::after {
    height: 12.5vw;
  }
  .sec-faq .sec-desc {
    margin-bottom: 9.375vw;
  }
  .sec-faq .inner {
    padding: 15.625vw 6.25vw;
  }
  .sec-faq li .faq-q {
    padding: 4.6875vw 3.125vw;
    font-size: 3.75vw;
  }
  .sec-faq li .faq-q p {
    padding-right: 6.25vw;
  }
  .sec-faq li .faq-a {
    padding: 0 3.75vw 5.625vw;
    font-size: 3.75vw;
  }
  .sec-awards {
    background: url("../img/banner-bottom-mo.png") no-repeat center/cover;
  }
  .sec-awards .img .ratio {
    padding-top: 80%;
  }
}
/* 전후 사진 */
.sec-photo.bottom {
  background: #FAF7F4;
}

.sec-photo.bottom .inner {
  padding: 88px 20px 95px;
}

.sec-photo.bottom::after {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 70px;
  margin-left: -0.5px;
  background: #d6d6d6;
  content: "";
}

.sec-photo.bottom .sec-title {
  margin-bottom: 50px;
  text-align: center;
}

.sec-photo.bottom .photo-tab {
  padding-bottom: 60px;
}

.sec-photo.bottom .photo-tab > li {
  width: 140px;
  height: 31px;
  margin: 0 10px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  border: 1px solid #5E4F44;
  font-size: 16px;
  color: #5E4F44;
  cursor: pointer;
  font-weight: 600;
}

.sec-photo.bottom .photo-tab > li.active {
  background: #5E4F44;
  color: #fff;
}

.sec-photo.bottom .slider-wrap {
  position: relative;
  width: 100%;
  max-width: 1044px;
  margin: 0 auto;
}

.sec-photo.bottom .photo-slider {
  width: 100%;
  position: relative;
  max-width: 708px;
  height: 310px;
  margin: 0 auto;
  overflow: hidden;
}

.sec-photo.bottom .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.sec-photo.bottom .swiper-slide img {
  display: block;
  width: 100%;
}

.sec-photo.bottom .swiper-slide .slide-in {
  width: calc(50% - 1px);
  height: 100%;
}

.sec-photo.bottom .swiper-slide .slide-in .img {
  height: auto;
}

.sec-photo.bottom .swiper-slide .slide-in .caption {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 1.8em;
  text-align: center;
  background: #5E4F44;
}

.sec-photo.bottom .swiper-button-next,
.sec-photo.bottom .swiper-button-prev {
  width: 66px;
  height: 66px;
  margin-top: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #5E4F44;
  color: #5E4F44;
}

.sec-photo.bottom .swiper-button-next {
  right: 0;
}

.sec-photo.bottom .swiper-button-prev {
  left: 0;
}

.sec-photo.bottom .swiper-button-next::after,
.sec-photo.bottom .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

.sec-photo.bottom .swiper-button-next.swiper-button-disabled,
.sec-photo.bottom .swiper-button-prev.swiper-button-disabled {
  background: transparent;
  border-color: transparent;
  color: #999;
  opacity: 1;
}

.sec-photo.bottom .btn-more {
  position: absolute;
  right: -98px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  width: 128px;
  height: 40px;
  border: 1px solid #191919;
  transition: 0.4s;
}

.sec-photo.bottom .btn-more:hover {
  color: #fff;
  background: #5E4F44;
  border-color: #5E4F44;
}

@media all and (max-width: 800px) {
  .sec-photo.bottom .inner {
    padding: 88px 40px 100px;
  }
  .sec-photo.bottom .photoTop-slider {
    height: auto;
  }
  .sec-photo.bottom .photo-tab {
    justify-content: space-between;
  }
  .sec-photo.bottom .photo-tab > li {
    width: calc((100% - 40px) / 4);
    height: 50px;
    margin: 0 4px;
    border-width: 1.5px;
    border-radius: 25px;
  }
  .sec-photo.bottom .btn-more {
    position: static;
    margin: 50px auto;
  }
  .sec-photo.bottom .swiper-button-next,
  .sec-photo.bottom .swiper-button-prev {
    width: 42px;
    height: 42px;
    top: 45%;
    background: none;
    border: 0;
    transform: translateY(-100%);
  }
  .sec-photo.bottom .swiper-button-next {
    right: -42px;
  }
  .sec-photo.bottom .swiper-button-prev {
    left: -42px;
  }
}
@media all and (max-width: 640px) {
  .sec-photo.bottom::after {
    height: 12.5vw;
  }
  .sec-photo.bottom .inner {
    padding: 15.625vw 6.25vw;
  }
  .sec-photo.bottom .sec-title {
    margin-bottom: 7.8125vw;
  }
  .sec-photo.bottom .photo-tab {
    padding: 0 4px 7.8125vw;
  }
  .sec-photo.bottom .photo-tab > li {
    width: calc((100% - 3.75vw) / 4);
    height: 7.8125vw;
    margin: 0 1.25vw 0 0;
    font-size: 3.75vw;
  }
  .sec-photo.bottom .photo-tab > li:last-child {
    margin-right: 0;
  }
  .sec-photo.bottom .slider-wrap {
    padding: 0 3.75vw;
  }
  .sec-photo.bottom .photo-slider {
    height: auto;
  }
  .sec-photo.bottom .swiper-slide .slide-in {
    height: auto;
  }
  .sec-photo.bottom .swiper-button-next,
  .sec-photo.bottom .swiper-button-prev {
    top: 21.1875vw;
    width: 3.75vw;
    height: 3.75vw;
  }
  .sec-photo.bottom .swiper-button-next {
    right: -3.125vw;
  }
  .sec-photo.bottom .swiper-button-prev {
    left: -3.125vw;
  }
  .sec-photo.bottom .swiper-button-next::after,
  .sec-photo.bottom .swiper-button-prev::after {
    font-size: 2.8125vw;
  }
  .sec-photo.bottom .btn-more {
    width: 26.25vw;
    height: 7.8125vw;
    margin: 7.8125vw auto 0;
    font-size: 3.75vw;
    font-weight: 600;
    color: #fff;
    background: #5E4F44;
    border-color: #5E4F44;
  }
  .sec-photo.bottom .swiper-slide .slide-in .caption {
    height: 6.25vw;
    font-size: 3.125vw;
  }
}
/* 자필 후기 */
.sec-after {
  background: #FAF7F4;
}

.sec-after .inner {
  position: relative;
  justify-content: flex-end;
  padding: 110px 0 120px 0;
}

.sec-after .txt {
  position: absolute;
  left: 0;
  top: 110px;
  width: 480px;
  padding-left: 110px;
  background: #FAF7F4;
  z-index: 5;
}

.sec-after .sec-desc {
  margin-bottom: 130px;
}

.sec-after .btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 36px;
  font-size: 1.6em;
  font-weight: 600;
  border: 1px solid #191919;
  transition: 0.4s;
}

.sec-after .btn-more:hover {
  color: #fff;
  background: #5E4F44;
  border-color: #5E4F44;
}

.sec-after .slider-wrap {
  position: relative;
  padding-right: 70px;
}

.sec-after .after-slider {
  position: relative;
  width: 850px;
  padding: 18px 0;
  overflow: hidden;
}

.sec-after .swiper-slide {
  max-width: 190px !important;
  height: 240px;
  background: #fff;
  overflow: hidden;
}

.sec-after .swiper-slide.swiper-slide-active {
  max-width: 220px !important;
  height: 275px;
  margin-top: -17.5px;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(33, 76, 180, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(33, 76, 180, 0.2);
}

.sec-after .swiper-slide img {
  width: 100%;
}

.sec-after .swiper-button-next,
.sec-after .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  margin: 0;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  color: #5E4F44;
}

.sec-after .swiper-button-next {
  right: 0;
}

.sec-after .swiper-button-prev {
  left: 36px;
}

.sec-after .swiper-button-next::after {
  content: "next";
}

.sec-after .swiper-button-next::after,
.sec-after .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

.sec-after .swiper-button-next.swiper-button-disabled,
.sec-after .swiper-button-prev.swiper-button-disabled {
  background: transparent;
  border-color: transparent;
  color: #999;
  opacity: 1;
}

/* .sec-after .after-slider .slick-list { overflow: visible; }
.sec-after .after-slider .slide { width: 190px; height: 240px; margin: 0 10px; overflow: hidden; }
.sec-after .after-slider .slide.slick-current.slick-center { width: 220px; height: 275px; margin-top: -17.5px; -webkit-box-shadow: 0px 0px 10px 0px rgba(33,76,180,0.2); box-shadow: 0px 0px 10px 0px rgba(33,76,180,0.2); }
.sec-after .after-slider .slide img { width: 100%; height: 100%; }
.sec-after .s-next { border: 1px solid red; width: 60px; height: 60px; right: 0; top: 50%; } */
@media all and (max-width: 800px) {
  .sec-after .inner {
    flex-direction: column;
    padding: 72px 0 140px;
  }
  .sec-after .inner .txt {
    position: static;
    width: 100%;
    padding: 0;
  }
  .sec-after .sec-title {
    text-align: center;
  }
  .sec-after .sec-desc {
    padding: 0;
    margin-bottom: 70px;
    text-align: center;
  }
  .sec-after .btn-more {
    position: absolute;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%);
  }
  .sec-after .slider-wrap {
    padding-right: 0;
  }
  .sec-after .after-slider {
    /* padding: 5.0781vw 0; */
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }
  .sec-after .swiper-slide {
    max-width: 100% !important;
    height: auto;
  }
  .sec-after .swiper-slide.swiper-slide-active {
    max-width: 100% !important;
    height: auto;
    margin-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .sec-after .swiper-button-next {
    right: 0px;
  }
  .sec-after .swiper-button-prev {
    left: 0px;
  }
}
@media all and (max-width: 640px) {
  .sec-after::after {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    width: 1px;
    height: 12.5vw;
    margin-left: -0.5px;
    background: #d6d6d6;
    content: "";
  }
  .sec-after .inner {
    padding: 15.625vw 0 24.5vw;
  }
  .sec-after .sec-desc {
    margin-bottom: 9.375vw;
  }
  .sec-after .slider-wrap {
    padding: 0 15.625vw;
  }
  .sec-after .after-slider {
    padding: 0;
  }
  /* .sec-after .after-slider { padding: 0 6.25vw; } */
  /* .sec-after .after-slider .swiper-slide { width: 40%; margin: 0 1.5625vw; } */
  /* .sec-after .after-slider .swiper-slide.swiper-slide-active { width: 60%; } */
  .sec-after .btn-more {
    bottom: 7.5vw;
    width: 26.25vw;
    height: 7.8125vw;
    margin: 7.8125vw auto 0;
    font-size: 3.75vw;
    font-weight: 600;
    color: #fff;
    background: #5E4F44;
    border-color: #5E4F44;
  }
}
/* 주요 시술 부위 */
.sec-part::after {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 70px;
  margin-left: -0.5px;
  background: #d6d6d6;
  content: "";
}

.sec-part .inner {
  padding: 94px 7px 120px;
  text-align: center;
}

.sec-part .sec-desc {
  margin-bottom: 90px;
}

.sec-part .part-slide {
  justify-content: space-between;
}

.sec-part .part-slide li {
  width: calc((100% - 105px) / 8);
  padding: 40px 6px 14px;
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(25, 25, 25, 0.14);
  box-shadow: 0px 0px 12px 0px rgba(25, 25, 25, 0.14);
}

.sec-part .part-slide li .img {
  width: 63.4482%;
  margin: 0 auto 34px;
}

.sec-part .part-slide li .img .ratio {
  padding-top: 90.2174%;
}

.sec-part .part-slide li .item-title {
  padding: 5px;
  margin-bottom: 13px;
  color: #fff;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1;
  background: #5E4F44;
  border-radius: 5px;
}

.sec-part .part-slide li .desc {
  height: 6.64em;
  font-size: 1.5em;
  font-weight: 300;
  line-height: 1.66;
}

.sec-part .part-slide li.item1 .img .ratio::after {
  background-image: url("../img/obj_part1.png");
}

.sec-part .part-slide li.item2 .img .ratio::after {
  background-image: url("../img/obj_part2.png");
}

.sec-part .part-slide li.item3 .img .ratio::after {
  background-image: url("../img/obj_part3.png");
}

.sec-part .part-slide li.item4 .img .ratio::after {
  background-image: url("../img/obj_part4.png");
}

.sec-part .part-slide li.item5 .img .ratio::after {
  background-image: url("../img/obj_part5.png");
}

.sec-part .part-slide li.item6 .img .ratio::after {
  background-image: url("../img/obj_part6.png");
}

.sec-part .part-slide li.item7 .img .ratio::after {
  background-image: url("../img/obj_part7.png");
}

.sec-part .part-slide li.item8 .img .ratio::after {
  background-image: url("../img/obj_part8.png");
}

@media all and (max-width: 800px) {
  .sec-part .inner {
    padding: 94px 40px 120px;
  }
  .sec-part .part-slide {
    flex-wrap: wrap;
  }
  .sec-part .part-slide li {
    width: calc((100% - 45px) / 4);
  }
  .sec-part .part-slide li:nth-child(n+5) {
    margin-top: 15px;
  }
  .sec-part .part-slide li .item-title {
    font-size: 2.125vw;
    word-break: keep-all;
  }
  .sec-part .part-slide li .desc {
    height: auto;
    min-height: 6.64em;
    font-size: 1.875vw;
    word-break: keep-all;
  }
  .sec-part .part-slide li:nth-child(n+5) .desc {
    min-height: 10.5em;
  }
}
@media all and (max-width: 640px) {
  .sec-part::after {
    height: 12.5vw;
  }
  .sec-part .inner {
    padding: 15.625vw 6.25vw;
  }
  .sec-part .sec-desc {
    margin-bottom: 12.5vw;
  }
  .sec-part .part-slide li {
    padding-top: 6.25vw;
  }
  .sec-part .part-slide li .item-title {
    font-size: 2.8125vw;
  }
  .sec-part .part-slide li .desc {
    font-size: 2.5vw;
  }
  .sec-part .part-slide li:nth-child(n+6) .desc {
    min-height: 12em;
  }
}
@media all and (max-width: 560px) {
  .sec-part .part-slide li {
    width: calc((100% - 15px) / 2);
  }
  .sec-part .part-slide li:nth-child(n+3) {
    margin-top: 15px;
  }
  .sec-part .part-slide li:nth-child(n+5) .desc {
    min-height: 6.64em;
  }
  .sec-part .part-slide li .item-title {
    font-size: 3.75vw;
  }
  .sec-part .part-slide li .desc {
    font-size: 3.6vw;
  }
  .sec-part .part-slide li .desc br.pc {
    display: block;
  }
}
/* 관절통증치료 솔루션 */
.sec-solution.gray {
  background: #FAF7F4;
}

.sec-solution::after {
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: 1px;
  height: 70px;
  margin-left: -0.5px;
  background: #dbdbdb;
  content: "";
}

.sec-solution .inner {
  padding: 100px 0 120px;
  text-align: center;
}

.sec-solution .sub-desc {
  margin-bottom: 16px;
  color: #5E4F44;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.3em;
}

.sec-solution .sec-desc {
  margin-bottom: 65px;
}

.sec-solution ul {
  flex-wrap: wrap;
  padding: 0 40px;
}

.sec-solution li {
  position: relative;
  width: calc((100% - 120px) / 4);
  margin-right: 40px;
}

.sec-solution li:nth-child(4n) {
  margin-right: 0;
}

.sec-solution li:nth-child(n+5) {
  margin-top: 84px;
}

.sec-solution li .img-box {
  -webkit-box-shadow: 8px 8px 10px 0px rgba(73, 73, 75, 0.06);
  box-shadow: 8px 8px 10px 0px rgba(73, 73, 75, 0.06);
}

.sec-solution li .img-box .ratio {
  padding-top: 97.037%;
}

.sec-solution li .txt-box {
  position: absolute;
  left: 50%;
  bottom: -39px;
  width: 83.3333%;
  padding: 23px 15px 9px;
  transform: translateX(-50%);
  background: #fff;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(73, 73, 75, 0.21);
  box-shadow: 0px 0px 12px 0px rgba(73, 73, 75, 0.21);
}

.sec-solution li .txt-box .title {
  color: #5E4F44;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.6;
}

.sec-solution li .txt-box .cont {
  height: 0;
  margin-top: 17px;
  color: #595959;
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.625;
  text-align: justify;
  overflow: hidden;
  opacity: 0;
  transition: height 0.5s;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.sec-solution li .txt-box .cont::-webkit-scrollbar {
  display: none;
}

.sec-solution li .txt-box:hover .cont {
  height: 8.125em;
  overflow: auto;
  opacity: 1;
}

.sec-solution .go-btn {
  justify-content: center;
  padding-top: 95px;
}

.sec-solution .go-btn a {
  display: inline-block;
  padding: 12px 66px;
  color: #fff;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.6;
  background: #5E4F44;
  border-radius: 8px;
}

.sec-solution .go-btn a em {
  font-size: 1.4666em;
  font-weight: 500;
  font-style: normal;
}

.sec-solution .go-btn a span {
  display: inline-block;
  width: 19px;
  height: 8px;
  margin-left: 9px;
  background: url("../img/ic_arrow_y.png") no-repeat center/cover;
}

.sec-solution li:nth-child(1) .img-box .ratio::after {
  background-image: url("../img/obj_solu1.png");
}

.sec-solution li:nth-child(2) .img-box .ratio::after {
  background-image: url("../img/obj_solu2.png");
}

.sec-solution li:nth-child(3) .img-box .ratio::after {
  background-image: url("../img/obj_solu3.png");
}

.sec-solution li:nth-child(4) .img-box .ratio::after {
  background-image: url("../img/obj_solu4.png");
}

.sec-solution li:nth-child(5) .img-box .ratio::after {
  background-image: url("../img/obj_solu5.png");
}

.sec-solution li:nth-child(6) .img-box .ratio::after {
  background-image: url("../img/obj_solu6.png");
}

.sec-solution li:nth-child(7) .img-box .ratio::after {
  background-image: url("../img/obj_solu7.png");
}

.sec-solution li:nth-child(8) .img-box .ratio::after {
  background-image: url("../img/obj_solu8.png");
}

@media all and (max-width: 800px) {
  .sec-solution li {
    width: calc((100% - 40px) / 2);
  }
  .sec-solution li:nth-child(2n) {
    margin-right: 0;
  }
  .sec-solution li:nth-child(n+3) {
    margin-top: 84px;
  }
  .sec-solution .sub-desc {
    padding: 0 40px;
  }
  .sec-solution li .txt-box {
    position: relative;
    bottom: auto;
    width: 39.0625vw;
    margin-top: -15.625vw;
  }
  .sec-solution li .txt-box .title {
    font-size: 4.0625vw;
    letter-spacing: -0.04em;
  }
  .sec-solution li .txt-box .cont {
    height: 8.8692em;
    font-size: 3.5938vw;
    line-height: 1.4782;
    opacity: 1;
  }
  .sec-solution li .txt-box:hover .cont {
    height: 8.8692em;
  }
}
@media all and (max-width: 640px) {
  .sec-solution::after {
    height: 12.5vw;
  }
  .sec-solution .inner {
    padding: 15.625vw 0;
  }
  .sec-solution .sub-desc {
    padding: 0 6.25vw;
    margin-bottom: 3.75vw;
    font-size: 2.3438vw;
  }
  .sec-solution .sec-desc {
    margin-bottom: 9.375vw;
    line-height: 1.5;
  }
  .sec-solution ul {
    padding: 0 6.25vw;
  }
  .sec-solution li {
    width: calc((100% - 3.125vw) / 2);
    margin-right: 3.125vw;
  }
  .sec-solution li:nth-child(n+3) {
    margin-top: 5.625vw;
  }
  .sec-solution li .txt-box {
    padding: 3.75vw;
  }
  .sec-solution li .txt-box .cont {
    margin-top: 3.75vw;
  }
  .sec-solution .go-btn {
    padding-top: 7.5vw;
  }
  .sec-solution .go-btn a {
    font-size: 2.6563vw;
  }
}/*# sourceMappingURL=common.css.map */