/* Direction */
.din {
  display: flex;
}

.din--end {
  justify-content: end;
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* Title */
.titleArea {
  padding-bottom: 160px;
}

.titleArea .sub-tit {
  font-size: 5.4rem;
  font-weight: 700;
  color: #191919;
}

.titleArea .sub-tit::before {
  content: "";
  display: block;
  position: relative;
  left: 3px;
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
  width: 9px;
  height: 9px;
  background-color: #0068b7;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.titleArea .sub-tit.aos-animate::before {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .titleArea {
    padding-bottom: 120px;
  }

  .titleArea .sub-tit {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 992px) {
  .titleArea {
    padding-bottom: 80px;
  }

  .titleArea .sub-tit::before {
    width: 7px;
    height: 7px;
  }
}
@media screen and (max-width: 768px) {
  .titleArea {
    padding-bottom: 60px;
  }

  .titleArea .sub-tit {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 576px) {
  .titleArea {
    padding-bottom: 30px;
  }

  .titleArea .sub-tit {
    font-size: 2.6rem;
  }
}

/* Content */
/* .content {} */

.subCon {
  padding: 150px 0px;
}

.subCon--style02 {
  padding: 0px 0px 150px;
}

.subCon--style02 .container {
  position: relative;
}

.subCon--style02 .container::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.subCon--style03 {
  padding: 0px !important;
}

.subCon--style03 .container {
  position: relative;
}

.subCon--style03 .container::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}

.subCon--style04 {
  padding: 0px 0px 150px;
}

.subCon--style05 {
  padding: 0px !important;
}

@media screen and (max-width: 1200px) {
  .content {
    padding-top: 120px;
  }

  .subCon {
    padding: 120px 0px;
  }

  .subCon--style02 {
    padding: 0px 0px 120px;
  }

  .subCon--style04 {
    padding: 0px 0px 120px;
  }
}
@media screen and (max-width: 992px) {
  .content {
    padding-top: 100px;
  }

  .subCon {
    padding: 80px 0px;
  }

  .subCon--style02 {
    padding: 0px 0px 80px;
  }

  .subCon--style04 {
    padding: 0px 0px 80px;
  }
}
@media screen and (max-width: 768px) {
  .content {
    padding-top: 80px;
  }

  .subCon {
    padding: 60px 0px;
  }

  .subCon--style02 {
    padding: 0px 0px 60px;
  }

  .subCon--style04 {
    padding: 0px 0px 60px;
  }
}
@media screen and (max-width: 576px) {
}

/* Path */
.path {
  margin: 40px 0px 100px;
}

.path-container {
  max-width: 1430px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.path-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.path-inner .home {
  width: 60px;
  height: 19px;
  padding: 0px 20px;
}

.path-inner .home a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/en/img/sub/home.png") no-repeat center;
}

.path-inner .depth {
  position: relative;
  padding: 0px 20px;
}

.path-inner .depth::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background-color: #434343;
}

.path-inner .depth--02 {
  cursor: pointer;
}

.path-inner .depth--02::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 7px;
  background: url("/en/img/sub/depth.png") no-repeat center;
}

.path-inner .depth span {
  font-size: 1.8rem;
  color: #434343;
}

.path-inner .path_list {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 240px;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: max-height 0.3s ease-in-out;
}

.path-inner .path_list ul {
  padding: 0px 10px;
}

.path-inner .path_list li {
  font-size: 1.6rem;
  line-height: 1;
  margin: 12px 0px;
}

.path-inner .path_list li:first-child {
  margin-top: 20px;
}

.path-inner .path_list li:last-child {
  margin-bottom: 20px;
}

.path-inner .path_list a {
  font-size: inherit;
}

@media screen and (max-width: 1200px) {
  .path {
    display: none;
  }
}
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 576px) {
}

/* ---------- Company ---------- */
/* About */
.aboutBanner {
  width: 100%;
  height: 750px;
  position: relative;
}

.aboutBanner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/en/img/sub/company/about/banner.png") no-repeat center;
  transform-origin: top;
}

.aboutBanner .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  height: 100%;
}

.aboutBanner .cbr {
  display: none;
}

.aboutBanner .txt--01 {
  margin-bottom: 80px;
}

.aboutBanner .txt--01 .t01 {
  font-size: 4.2rem;
  font-weight: 700;
  color: #fff;
}

.aboutBanner .txt--01 .t02 {
  font-size: 2.8rem;
  line-height: 1.8;
  color: #fff;
  margin-top: 20px;
  /* margin-top:50px; */
}

.aboutBanner .txt--02 .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #c9c9c9;
  /* color:#fff; */
  margin-bottom: 20px;
}

.aboutBanner .txt--02 .t01:last-child {
  margin-bottom: 0px;
}

.aboutCon .item {
  margin-bottom: 100px;
}

.aboutCon .item:last-child {
  margin-bottom: 0px;
}

.aboutCon .din {
  align-items: center;
}

.aboutCon .lt,
.aboutCon .rt {
  flex: 1 0 50%;
}

.aboutCon .rt--pl {
  padding-left: 8%;
}

.aboutCon .txt .t01 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #191919;
}

.aboutCon .txt .t01 span {
  display: block;
}

.aboutCon .txt .t01::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #b5b5b5;
  margin: 30px 0px;
  -webkit-transition: width 0.8s ease 0.1s;
  transition: width 0.8s ease 0.1s;
}

.aboutCon .txt .t01.aos-animate::after {
  width: 70px;
}

.aboutCon .txt .t02 {
  font-size: 2.4rem;
  line-height: 1.7;
  color: #191919;
}

.aboutCon .txt .t02 span {
  display: block;
}

.aboutCon .img-full div {
  overflow: hidden;
  width: 0%;
}

.aboutCon .img-full img {
  display: block;
  max-width: none;
}

.aboutCon .img-full.aos-animate div {
  animation: feature-image 2s ease 0.15s both;
}

@keyframes feature-image {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .aboutBanner {
    height: 580px;
  }

  .aboutBanner .txt--01 {
    margin-bottom: 60px;
  }

  .aboutBanner .txt--01 .t01 {
    font-size: 3.2rem;
  }

  .aboutBanner .txt--01 .t02 {
    font-size: 2.4rem;
    margin-top: 12px;
  }

  .aboutBanner .txt--02 .t01 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .aboutCon .txt .t01 {
    font-size: 3.6rem;
  }

  .aboutCon .txt .t02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  /* .aboutBanner .txt .t02 {
    margin-top:30px;
  } */

  .aboutCon .item {
    margin-bottom: 60px;
  }

  .aboutCon .din {
    flex-wrap: wrap;
  }

  .aboutCon .lt,
  .aboutCon .rt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .aboutCon .item--01 .lt,
  .aboutCon .item--03 .lt {
    order: 2;
    padding-top: 38px;
  }

  .aboutCon .item--01 .rt,
  .aboutCon .item--03 .rt {
    order: 1;
  }

  .aboutCon .item--02 .rt {
    padding-top: 38px;
  }

  .aboutCon .rt--pl {
    padding-left: 0px;
  }

  .aboutCon .txt .t01::after {
    margin: 24px 0px;
  }

  .aboutCon .txt .t01.aos-animate::after {
    width: 40px;
  }

  .aboutCon .img-full div {
    width: 100%;
  }

  .aboutCon .img-full.aos-animate div {
    animation: none;
  }

  .aboutCon .img-full img {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .aboutBanner {
    height: 460px;
  }

  /* .aboutBanner .txt .t01 {
    font-size:2.6rem;
  }

  .aboutBanner .txt .t02 {
    font-size:1.6rem;
    margin-top:24px;
  } */

  .aboutBanner .txt--01 {
    margin-bottom: 40px;
  }

  .aboutBanner .txt--01 .t01 {
    font-size: 2.6rem;
  }

  .aboutBanner .txt--01 .t02 {
    font-size: 2rem;
    margin-top: 8px;
  }

  .aboutBanner .txt--02 .t01 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 8px;
  }

  .aboutCon .item {
    margin-bottom: 40px;
  }

  .aboutCon .item--01 .lt,
  .aboutCon .item--03 .lt {
    padding-top: 26px;
  }

  .aboutCon .item--02 .rt {
    padding-top: 26px;
  }

  .aboutCon .txt .t01 {
    font-size: 2.8rem;
  }

  .aboutCon .txt .t01::after {
    margin: 18px 0px;
  }

  .aboutCon .txt .t02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .aboutBanner {
    height: auto;
  }

  .aboutBanner::before {
    background-position: center right 15%;
  }

  /* .aboutBanner .txt {
    padding:40px 0px;
  } */

  .aboutBanner .cbr {
    display: block;
  }

  .aboutBanner .txt--01 {
    padding-top: 40px;
  }

  .aboutBanner .txt--02 {
    padding-bottom: 40px;
  }

  .aboutBanner .txt--01 .t01 {
    font-size: 2.2rem;
  }

  .aboutBanner .txt--01 .t02 {
    font-size: 1.8rem;
    line-height: 1.6;
  }

  .aboutBanner .txt--02 .t01 {
    font-size: 1.4rem;
  }

  /* .aboutBanner .txt .t01 {
    font-size:2.2rem;
  }

  .aboutBanner .txt .t02 {
    font-size:1.5rem;
    margin-top:18px;
  } */

  .aboutCon .item--01 .lt,
  .aboutCon .item--03 .lt {
    padding-top: 20px;
  }

  .aboutCon .item--02 .rt {
    padding-top: 20px;
  }

  .aboutCon .txt .t01 {
    font-size: 2.4rem;
  }

  .aboutCon .txt .t01::after {
    margin: 12px 0px;
  }

  .aboutCon .txt .t01.aos-animate::after {
    width: 30px;
  }

  .aboutCon .txt .t02 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* History */
.historyBanner {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}

.historyBanner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/en/img/sub/company/history/banner.png") no-repeat center /
    cover;
  transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
  transform-origin: top;
  transform: scale(1.1);
  opacity: 0;
}

.historyBanner.aos-animate::before {
  transform: scale(1);
  opacity: 1;
}

.historyBanner .container {
  position: relative;
  z-index: 2;
}

.historyBanner .txt {
  padding-top: 120px;
}

.historyBanner .txt .t01 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.historyCon {
  padding: 0px 0px 150px;
}

.historyCon .his-year {
  margin: -150px -5px 0px;
}

.historyCon .his-year .swiper-slide {
  width: calc(14.2857% - 10px);
  text-align: center;
  margin-right: 10px;
}

.historyCon .his-year .swiper-slide:last-child {
  margin-right: 0px;
}

.historyCon .his-year .button {
  position: relative;
  width: 100%;
  font-size: 2.4rem;
  color: #c5c5c5;
  padding-bottom: 15px;
  transition: all 0.25s ease;
}

.historyCon .his-year .button::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #c5c5c5;
  transition: all 0.25s ease;
}

.historyCon .his-year .swiper-slide.on .button {
  color: #fff;
}

.historyCon .his-year .swiper-slide.on .button::after {
  background-color: #fff;
}

/* .historyCon .his-year {
  display: flex;
  margin:-150px -5px 0px;
}

.historyCon .his-year li {
  flex:1 1;
  padding:0px 5px;
  text-align: center;
}

.historyCon .his-year li .button {
  position: relative;
  width:100%;
  font-size:2.4rem;
  color:#c5c5c5;
  padding-bottom:15px;
  transition:all .25s ease;
}

.historyCon .his-year li .button::after {
  content: "";
  display: inline-block;
  position: absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background-color: #c5c5c5;
  transition:all .25s ease;
}

.historyCon .his-year li.on .button {
  color:#fff;
}

.historyCon .his-year li.on .button::after {
  background-color: #fff;
} */

.historyCon .his-list {
  margin-top: 250px;
  position: relative;
}

.historyCon .his-list li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.historyCon .his-list li.on {
  display: block;
  height: auto;
  position: relative;
  animation: hiscontent-on ease-in-out 0.5s forwards;
}

.historyCon .his-list .lt,
.historyCon .his-list .rt {
  flex: 1 1 50%;
  max-width: 50%;
}

.historyCon .his-list .his-tit {
  font-family: "Montserrat", sans-serif;
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1;
  color: #0068b7;
}

.historyCon .his-list .his-con {
  padding-top: 50px;
  border-top: 1px solid #d2d2d2;
}

.historyCon .his-list .his-con dd {
  /* display: block; */
  display: flex;
  /* align-items: center; */
  flex-wrap: nowrap;
  font-size: 1.8rem;
  color: #191919;
  padding-bottom: 10px;
}

.historyCon .his-list .his-con dd:nth-child(5n) {
  margin-bottom: 40px;
}

.historyCon .his-list .his-con dd:last-child {
  padding-bottom: 0px;
}

.historyCon .his-list .his-con .his-con__category {
  white-space: nowrap;
  padding-right: 6px;
}

.historyCon .his-list .his-con dd span {
  /* display:inline-block; */
  color: #919191;
}

.historyCon .his-list .his-con dd a {
  position: relative;
  display: inline-flex;
  /* align-items: center; */
  /* vertical-align: middle; */
  font-weight: 700;
  color: #0068b7;
  /* margin-left:6px; */
  padding-right: 12px;
}

.historyCon .his-list .his-con dd a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 9px;
  height: 16px;
  margin-left: 4px;
  background: url("/en/img/sub/company/history/link.png") no-repeat center /
    auto 14px;
}

@keyframes hiscontent-on {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
  .historyBanner {
    height: 480px;
  }

  .historyBanner .txt {
    padding-top: 80px;
  }

  .historyBanner .txt .t01 {
    font-size: 3.2rem;
  }

  .historyCon {
    padding: 0px 0px 120px;
  }

  .historyCon .his-year {
    margin: -100px -5px 0px;
  }

  .historyCon .his-year .button {
    font-size: 2rem;
    padding-bottom: 10px;
  }

  /* .historyCon .his-year {
    margin:-100px -5px 0px;
  }

  .historyCon .his-year li .button {
    font-size:2rem;
    padding-bottom:10px;
  } */

  .historyCon .his-list {
    margin-top: 180px;
  }

  .historyCon .his-list .his-tit {
    font-size: 5.4rem;
  }

  .historyCon .his-list .his-con {
    padding-top: 38px;
  }

  .historyCon .his-list .his-con dd {
    font-size: 1.6rem;
  }

  .historyCon .his-list .his-con dd .category--width {
    width: 85px;
  }
}
@media screen and (max-width: 1080px) {
  .historyCon .his-list .his-con .category--clock {
    width: calc(150px + 8px);
  }

  .historyCon .his-list .his-con .category--mochuisle {
    width: calc(87px + 8px);
  }

  .historyCon .his-list .his-con .category--stonenhenge {
    width: calc(114px + 8px);
  }

  .historyCon .his-list .his-con .category--troisrois {
    width: calc(93px + 8px);
  }

  .historyCon .his-list .his-con .category--rosmont {
    width: calc(98px + 8px);
  }

  .historyCon .his-list .his-con .category--chopard {
    width: calc(85px + 8px);
  }

  .historyCon .his-list .his-con .category--philippe {
    width: calc(134px + 8px);
  }
}
@media screen and (max-width: 992px) {
  .historyBanner .txt {
    padding-top: 60px;
  }

  .historyCon {
    padding: 0px 0px 80px;
  }

  .historyCon .his-year {
    margin: -120px -5px 0px;
  }

  .historyCon .his-year .swiper-slide {
    width: 176px;
  }

  /* .historyCon .his-year {
    flex-wrap: wrap;
    margin:-120px -5px 0px;
  }

  .historyCon .his-year li {
    flex:0 0 25%;
    max-width:25%;
  } */

  /* .historyCon .his-list {
    margin-top:100px;
  } */

  .historyCon .his-list .his-con {
    padding-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .historyBanner {
    height: 320px;
  }

  .historyBanner .txt {
    padding-top: 40px;
  }

  .historyBanner .txt .t01 {
    font-size: 2.6rem;
  }

  .historyCon {
    padding: 0px 0px 60px;
  }

  .historyCon .his-year {
    margin: -80px -5px 0px;
  }

  .historyCon .his-year .swiper-slide {
    width: 146px;
  }

  /* .historyCon .his-year li .button {
    font-size: 1.8rem;
  } */

  .historyCon .his-year .button {
    font-size: 1.8rem;
  }

  .historyCon .his-list {
    margin-top: 90px;
  }

  .historyCon .his-list .din {
    flex-wrap: wrap;
  }

  .historyCon .his-list .lt,
  .historyCon .his-list .rt {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .historyCon .his-list .his-con {
    padding-top: 26px;
    margin-top: 26px;
  }

  .historyCon .his-list .his-tit {
    font-size: 4.2rem;
  }

  .historyCon .his-list .his-con dd {
    font-size: 1.5rem;
    padding-bottom: 8px;
  }

  .historyCon .his-list .his-con dd a::after {
    margin-left: 6px;
  }

  .historyCon .his-list .his-con .category--clock {
    width: calc(140px + 8px);
  }

  .historyCon .his-list .his-con .category--mochuisle {
    width: calc(77px + 8px);
  }

  .historyCon .his-list .his-con .category--stonenhenge {
    width: calc(104px + 8px);
  }

  .historyCon .his-list .his-con .category--troisrois {
    width: calc(83px + 8px);
  }

  .historyCon .his-list .his-con .category--rosmont {
    width: calc(88px + 8px);
  }

  .historyCon .his-list .his-con .category--chopard {
    width: calc(75px + 8px);
  }

  .historyCon .his-list .his-con .category--philippe {
    width: calc(134px + 8px);
  }
}
@media screen and (max-width: 576px) {
  .historyBanner {
    height: 300px;
  }

  .historyBanner .txt {
    padding-top: 30px;
  }

  .historyBanner .txt .t01 {
    font-size: 2.2rem;
  }

  .historyCon .his-year .swiper-slide {
    width: 118px;
  }

  .historyCon .his-year .button {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  /* .historyCon .his-year {
    margin:-130px -2px 0px;
  }

  .historyCon .his-year li {
    flex:0 0 33.33%;
    max-width:33.33%;
    padding:0px 2px;
  }

  .historyCon .his-year li .button {
    font-size: 1.6rem;
    padding-bottom:6px;
  } */

  .historyCon .his-list {
    margin-top: 90px;
  }

  .historyCon .his-list .his-tit {
    font-size: 3.2rem;
  }

  .historyCon .his-list .his-con {
    padding-top: 18px;
    margin-top: 18px;
  }

  .historyCon .his-list .his-con dd {
    flex-wrap: wrap;
    font-size: 1.4rem;
  }

  .historyCon .his-list .his-con .category--clock {
    /* width:calc(140px + 8px);  */
    width: 100%;
    /* padding-bottom:6px; */
  }

  .historyCon .his-list .his-con .category--mochuisle {
    width: 100%;
    /* padding-bottom:6px; */
  }

  .historyCon .his-list .his-con .category--stonenhenge {
    width: 100%;
    /* padding-bottom:6px; */
  }

  .historyCon .his-list .his-con .category--troisrois {
    width: 100%;
    /* padding-bottom:6px; */
  }

  .historyCon .his-list .his-con .category--rosmont {
    width: 100%;
    /* padding-bottom:6px; */
  }

  .historyCon .his-list .his-con .category--chopard {
    width: 100%;
    /* padding-bottom:6px; */
  }

  .historyCon .his-list .his-con .category--philippe {
    width: 100%;
    /* padding-bottom:6px; */
  }
}

/* Contribution */
.contributionCon .item--01 {
  padding-top: 180px;
}

.contributionCon .item--02 {
  padding-top: 150px;
}

.contributionCon .item-tit {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: #191919;
}

.contributionCon .item-txt {
  font-size: 2.4rem;
  color: #191919;
  margin: 40px 0px 100px;
}

.contributionCon .share {
  position: relative;
}

.contributionCon .share img {
  display: block;
}

.contributionCon .share-wrap {
  position: absolute;
  /* top:-70px; */
  top: 70px;
  left: 70px;
  max-width: 600px;
  width: 100%;
  padding: 60px 56px;
  background-color: #005392;
  z-index: 10;
  opacity: 0;
  transition: all 0.8s ease;
}

.contributionCon .share-tit {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-bottom: 60px;
}

.contributionCon .share-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #fff;
}

.contributionCon .customer {
  margin-top: 100px;
}

.contributionCon .customer ul {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.contributionCon .customer li {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  padding: 15px;
}

.contributionCon .customer .box {
  height: 100%;
  border: 1px solid #b5b5b5;
}

.contributionCon .customer .img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 180px;
  padding: 20px;
  border-bottom: 1px solid #b5b5b5;
}

.contributionCon .customer .txt {
  padding: 50px 40px;
}

.contributionCon .customer .txt .t01 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #191919;
  margin-bottom: 40px;
}

.contributionCon .customer .txt .t02 {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #191919;
}

.contributionCon .awards {
  background-color: #f5f5f5;
  padding: 80px 90px;
}

.contributionCon .awards ul {
  margin: -40px 0px;
}

.contributionCon .awards li {
  padding: 40px 0px;
  border-bottom: 1px solid #d2d2d2;
}

.contributionCon .awards li:last-child {
  border: 0px;
}

.contributionCon .awards .txt .t01 {
  font-size: 1.8rem;
  line-height: 1;
  color: #0068b7;
  margin-bottom: 24px;
}

.contributionCon .awards .txt .t02 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #191919;
}

@media screen and (min-width: 993px) {
  .contributionCon .share.aos-animate .share-wrap {
    top: -70px;
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .contributionCon .share.aos-animate .share-wrap {
    top: -50px;
    opacity: 1;
  }
}
@media screen and (max-width: 1200px) {
  .contributionCon .item--01 {
    padding-top: 140px;
  }

  .contributionCon .item--02 {
    padding-top: 120px;
  }

  .contributionCon .item-tit {
    font-size: 3.2rem;
  }

  .contributionCon .item-txt {
    font-size: 2rem;
    margin: 30px 0px 80px;
  }

  .contributionCon .share-tit {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }

  .contributionCon .share-txt {
    font-size: 1.8rem;
  }

  .contributionCon .customer {
    margin-top: 80px;
  }

  .contributionCon .customer .txt {
    padding: 38px 30px;
  }

  .contributionCon .customer .txt .t01 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .contributionCon .customer .txt .t02 {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .contributionCon .awards {
    padding: 60px;
  }

  .contributionCon .awards ul {
    margin: -30px 0px;
  }

  .contributionCon .awards li {
    padding: 30px 0px;
  }

  .contributionCon .awards .txt .t01 {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }

  .contributionCon .awards .txt .t02 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 992px) {
  .contributionCon .item--01 {
    padding-top: 120px;
  }

  .contributionCon .item--02 {
    padding-top: 80px;
  }

  .contributionCon .item-txt {
    margin: 24px 0px 60px;
  }

  .contributionCon .share-wrap {
    /* top:-50px; */
    left: 20px;
    max-width: 480px;
    padding: 40px;
  }

  .contributionCon .share-tit {
    margin-bottom: 30px;
  }

  .contributionCon .customer {
    margin-top: 60px;
  }

  .contributionCon .customer ul {
    margin: -8px;
  }

  .contributionCon .customer li {
    padding: 8px;
  }

  .contributionCon .customer .img {
    height: 140px;
  }

  .contributionCon .customer .txt .t01 {
    margin-bottom: 24px;
  }

  .contributionCon .awards {
    padding: 40px;
  }

  .contributionCon .awards ul {
    margin: -24px 0px;
  }

  .contributionCon .awards li {
    padding: 24px 0px;
  }

  .contributionCon .awards .txt .t01 {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 768px) {
  .contributionCon .item--01 {
    padding-top: 60px;
  }

  .contributionCon .item--02 {
    padding-top: 60px;
  }

  .contributionCon .item-tit {
    font-size: 2.6rem;
  }

  .contributionCon .item-txt {
    font-size: 1.8rem;
    margin: 18px 0px 40px;
  }

  .contributionCon .share-wrap {
    position: relative;
    top: unset;
    left: unset;
    opacity: 1;
  }

  .contributionCon .share {
    display: flex;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity 1.2s ease 0.15s;
  }

  .contributionCon .share.aos-animate {
    opacity: 1;
  }

  .contributionCon .share-wrap {
    flex: 1 1 100%;
    max-width: 100%;
    order: 2;
    padding: 26px;
  }

  .contributionCon .share-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .contributionCon .share-txt {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .contributionCon .share img {
    order: 1;
    flex: 1 1 100%;
  }

  .contributionCon .customer {
    margin-top: 40px;
  }

  .contributionCon .customer ul {
    margin: -4px;
  }

  .contributionCon .customer li {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 4px;
  }

  .contributionCon .customer .img {
    height: 120px;
  }
  .contributionCon .customer .txt {
    padding: 32px 24px;
  }

  .contributionCon .customer .txt .t01 {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 18px;
  }

  .contributionCon .customer .txt .t02 {
    font-size: 1.5rem;
  }

  .contributionCon .awards {
    padding: 30px;
  }

  .contributionCon .awards ul {
    margin: -18px 0px;
  }

  .contributionCon .awards li {
    padding: 18px 0px;
  }

  .contributionCon .awards .txt .t01 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .contributionCon .awards .txt .t02 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .contributionCon .item-tit {
    font-size: 2.2rem;
  }

  .contributionCon .item-txt {
    font-size: 1.6rem;
  }

  .contributionCon .share-wrap {
    padding: 22px;
  }

  .contributionCon .share-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .contributionCon .share-txt {
    font-size: 1.5rem;
  }

  .contributionCon .customer li {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .contributionCon .customer .img {
    height: 100px;
  }

  .contributionCon .customer .img img {
    max-height: 80%;
  }

  .contributionCon .customer .txt {
    padding: 26px 18px;
  }

  .contributionCon .customer .txt .t01 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .contributionCon .customer .txt .t02 {
    font-size: 1.4rem;
  }

  .contributionCon .awards {
    padding: 24px 12px;
  }

  .contributionCon .awards ul {
    margin: -12px 0px;
  }

  .contributionCon .awards li {
    padding: 12px 0px;
  }

  .contributionCon .awards .txt .t01 {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }

  .contributionCon .awards .txt .t02 {
    font-size: 1.6rem;
  }
}

/* Asinfo */
.asinfoCon .item--01 {
  padding-top: 100px;
}

.asinfoCon .item--02 {
  padding: 150px 0px;
}

.asinfoCon .item--03 {
  position: relative;
  padding: 150px 0px;
}

.asinfoCon .item--03::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #f5f5f5;
  z-index: -1;
}

.asinfoCon .share-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600 / 1400 * 100%);
  overflow: hidden;
}

.asinfoCon .share img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
  transform-origin: top;
  transform: scale(1.1);
  opacity: 0;
}

.asinfoCon .share.aos-animate img {
  transform: scale(1);
  opacity: 1;
}

.asinfoCon .asinfo-link {
  display: flex;
  margin: 100px -10px 50px;
}

.asinfoCon .asinfo-link li {
  margin: 0px 10px;
}

.asinfoCon .asinfo-link .button {
  width: 210px;
  height: 60px;
  border-radius: 100px;
  font-size: 2rem;
  color: #8c8c8c;
  background-color: #f5f5f5;
}

.asinfoCon .asinfo-link li.on .button {
  font-weight: 600;
  color: #fff;
  background-color: #0068b7;
}

.asinfoCon .asinfo-tit {
  font-size: 3.6rem;
  font-weight: 700;
  color: #191919;
  margin-bottom: 40px;
}

.asinfoCon .asinfo-tit span {
  font-weight: 400;
}

.asinfoCon .asinfo-subtit {
  font-size: 2.4rem;
  color: #191919;
}

.asinfoCon .asinfo-subtit b {
  display: inline-block;
  font-size: 2.8rem;
  line-height: 1;
  margin-right: 10px;
}

.asinfoCon .asinfo-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-top: 40px;
}

.asinfoCon .asinfo-step--mobile {
  display: none;
}

.asinfoCon .asinfo-step {
  display: flex;
  margin: 70px -30px;
}

.asinfoCon .asinfo-step li {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 30px;
}

.asinfoCon .asinfo-step .box {
  text-align: center;
}

.asinfoCon .asinfo-step img {
  display: block;
  margin: 0 auto;
}

.asinfoCon .asinfo-step p {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191919;
  margin-top: 24px;
}

.asinfoCon .additional-tit {
  font-size: 2rem;
  font-weight: 700;
  color: #0068b7;
  margin-bottom: 12px;
}

.asinfoCon .additional-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
}

.asinfoCon .asinfo-service {
  margin-top: 100px;
  border-top: 2px solid #898989;
  border-bottom: 2px solid #898989;
}

.asinfoCon .asinfo-service dl {
  display: flex;
  padding: 50px 0px;
  border-bottom: 1px solid #bfbfbf;
}

.asinfoCon .asinfo-service dl:last-child {
  border: 0px;
}

.asinfoCon .asinfo-service dt {
  display: block;
  width: 240px;
  padding: 0px 10px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #313131;
}

.asinfoCon .asinfo-service dd {
  width: calc(100% - 240px);
}

.asinfoCon .asinfo-service dd p {
  font-size: 2rem;
  line-height: 1.8;
  color: #313131;
  margin-bottom: 40px;
}

.asinfoCon .asinfo-service span {
  display: block;
  font-size:1.6rem;
  color:#919191;
  margin-top:20px;
}

.asinfoCon .asinfo-service dd .button {
  max-width: 200px;
  width: 100%;
  height: 50px;
  border-radius: 100px;
  font-size: 1.8rem;
}

.asinfoCon .caution dl {
  border-top: 2px solid #898989;
  border-bottom: 2px solid #898989;
}

.asinfoCon .caution dd {
  padding: 30px 0px;
  border-bottom: 1px solid #bfbfbf;
}

.asinfoCon .caution dd:last-child {
  border-bottom: 0px;
}

.asinfoCon .caution dd p {
  position: relative;
  /* display: flex; */
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  padding-left: 40px;
}

.asinfoCon .caution dd p::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 25px;
  height: 25px;
  background: url("/en/img/sub/company/asinfo/pin.png") no-repeat center;
}

.asinfoCon .highend-link {
  padding-top: 100px;
}

.asinfoCon .highend-link ul {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.asinfoCon .highend-link li {
  flex: 1 1 50%;
  max-width: 50%;
  padding: 14px;
}

.asinfoCon .highend-link .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(420 / 686 * 100%);
  overflow: hidden;
}

.asinfoCon .highend-link img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .asinfoCon .item--01 {
    padding-top: 80px;
  }

  .asinfoCon .item--02 {
    padding: 120px 0px;
  }

  .asinfoCon .item--03 {
    padding: 120px 0px;
  }

  .asinfoCon .asinfo-link {
    margin: 80px -10px 36px;
  }

  .asinfoCon .asinfo-link .button {
    width: 190px;
    height: 54px;
    font-size: 1.8rem;
  }

  .asinfoCon .asinfo-tit {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }

  .asinfoCon .asinfo-subtit {
    font-size: 2rem;
  }

  .asinfoCon .asinfo-subtit b {
    font-size: 2.4rem;
  }

  .asinfoCon .asinfo-txt {
    font-size: 1.8rem;
    margin-top: 30px;
  }

  .asinfoCon .asinfo-step {
    margin: 50px -30px;
  }

  .asinfoCon .asinfo-step p {
    font-size: 2rem;
    margin-top: 18px;
  }

  .asinfoCon .additional-tit {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .asinfoCon .additional-txt {
    font-size: 1.8rem;
  }

  .asinfoCon .asinfo-service {
    margin-top: 80px;
  }

  .asinfoCon .asinfo-service dl {
    padding: 36px 0px;
  }

  .asinfoCon .asinfo-service dt {
    font-size: 2.4rem;
  }

  .asinfoCon .asinfo-service dd p {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .asinfoCon .asinfo-service span {
    font-size:1.4rem;
    margin-top:16px;
  }

  .asinfoCon .asinfo-service dd .button {
    max-width: 160px;
    height: 42px;
    font-size: 1.6rem;
  }

  .asinfoCon .caution dd {
    padding: 24px 0px;
  }

  .asinfoCon .caution dd p {
    font-size: 1.8rem;
    padding-left: 30px;
  }

  .asinfoCon .caution dd p::before {
    width: 20px;
    height: 20px;
    background-size: auto 20px;
  }

  .asinfoCon .highend-link {
    padding-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .asinfoCon .item--01 {
    padding-top: 60px;
  }

  .asinfoCon .item--02 {
    padding: 80px 0px;
  }

  .asinfoCon .item--03 {
    padding: 80px 0px;
  }

  .asinfoCon .asinfo-link {
    margin: 60px -6px 30px;
  }

  .asinfoCon .asinfo-link li {
    margin: 0px 6px;
  }

  .asinfoCon .asinfo-link .button {
    width: 170px;
    line-height: 1.2;
  }

  .asinfoCon .asinfo-tit {
    margin-bottom: 24px;
  }

  .asinfoCon .asinfo-subtit b {
    /* margin-right: 18px; */
  }

  .asinfoCon .asinfo-txt {
    margin-top: 24px;
  }

  .asinfoCon .asinfo-step {
    display: none;
  }

  .asinfoCon .asinfo-step--mobile {
    display: block;
    margin: 10px 0px;
  }

  .asinfo-step--mobile img {
    display: block;
  }

  /* .asinfoCon .asinfo-step {
    margin:36px -18px;
  }

  .asinfoCon .asinfo-step li {
    padding:18px;
  } */

  .asinfoCon .asinfo-step p {
    margin-top: 12px;
  }

  .asinfoCon .asinfo-service {
    margin-top: 60px;
  }

  .asinfoCon .asinfo-service dl {
    padding: 30px 0px;
  }

  .asinfoCon .asinfo-service dt {
    width: 180px;
  }

  .asinfoCon .asinfo-service dd {
    width: calc(100% - 180px);
  }

  .asinfoCon .asinfo-service dd p {
    margin-bottom: 24px;
  }

  .asinfoCon .caution dd {
    padding: 18px 0px;
  }

  .asinfoCon .highend-link {
    padding-top: 60px;
  }

  .asinfoCon .highend-link ul {
    margin: -8px;
  }

  .asinfoCon .highend-link li {
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .asinfoCon .item--01 {
    padding-top: 40px;
  }

  .asinfoCon .item--02 {
    padding: 60px 0px;
  }

  .asinfoCon .item--03 {
    padding: 60px 0px;
  }

  .asinfoCon .asinfo-link {
    margin: 40px -4px 24px;
  }

  .asinfoCon .asinfo-link li {
    margin: 0px 4px;
  }

  .asinfoCon .asinfo-link .button {
    width: 150px;
    height: 46px;
    font-size: 1.6rem;
  }

  .asinfoCon .asinfo-tit {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }

  .asinfoCon .asinfo-subtit {
    font-size: 1.8rem;
  }

  .asinfoCon .asinfo-subtit b {
    font-size: 2rem;
		margin-right: 6px;
    /* margin-right: 12px; */
  }

  .asinfoCon .asinfo-txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 18px;
  }

  /* .asinfoCon .asinfo-step--mobile {
    margin:44px 0px;
  } */

  /* .asinfoCon .asinfo-step {
    flex-wrap: wrap;
    justify-content: center;
  }

  .asinfoCon .asinfo-step {
    margin:32px -12px;
  }

  .asinfoCon .asinfo-step li {
    flex:0 0 33.33%;
    max-width:33.33%;
    padding:12px;
  } */

  .asinfoCon .asinfo-step p {
    font-size: 1.8rem;
    margin-top: 8px;
  }

  .asinfoCon .additional-tit {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }

  .asinfoCon .additional-txt {
    font-size: 1.6rem;
  }

  .asinfoCon .asinfo-service {
    margin-top: 40px;
  }

  .asinfoCon .asinfo-service dl {
    flex-wrap: wrap;
    padding: 24px 0px;
  }

  .asinfoCon .asinfo-service dt {
    width: 100%;
    font-size: 2rem;
    padding: 0px 0px 10px;
  }

  .asinfoCon .asinfo-service dd {
    width: 100%;
  }

  .asinfoCon .asinfo-service dd p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .asinfoCon .asinfo-service span {
    font-size:1.3rem;
    margin-top:12px;
  }

  .asinfoCon .asinfo-service dd .button {
    height: 38px;
    font-size: 1.5rem;
  }

  .asinfoCon .caution dd {
    padding: 12px 0px;
  }

  .asinfoCon .caution dd p {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-left: 24px;
  }

  .asinfoCon .caution dd p::before {
    width: 16px;
    height: 16px;
    background-size: auto 16px;
  }

  .asinfoCon .highend-link {
    padding-top: 40px;
  }

  .asinfoCon .highend-link ul {
    margin: -4px;
  }

  .asinfoCon .highend-link li {
    padding: 4px;
  }
}
@media screen and (max-width: 576px) {
  .asinfoCon .asinfo-link .button {
    font-size: 1.5rem;
  }

  .asinfoCon .asinfo-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .asinfoCon .asinfo-subtit {
    font-size: 1.6rem;
  }

  .asinfoCon .asinfo-subtit b {
    display: block;
    font-size: 1.8rem;
    margin-right: 0px;
    margin-bottom: 8px;
  }

  .asinfoCon .asinfo-txt {
    font-size: 1.5rem;
    margin-top: 12px;
  }

  /* .asinfoCon .asinfo-step--mobile {
    margin:30px 0px;
  } */

  /* .asinfoCon .asinfo-step {
    margin:24px -6px;
  }

  .asinfoCon .asinfo-step li {
    flex:0 0 50%;
    max-width:50%;
    padding:6px;
  } */

  .asinfoCon .asinfo-step img {
    width: 160px;
  }

  .asinfoCon .asinfo-step p {
    font-size: 1.6rem;
    margin-top: 4px;
  }

  .asinfoCon .additional-tit {
    font-size: 1.5rem;
    margin-bottom: 2px;
  }

  .asinfoCon .additional-txt {
    font-size: 1.5rem;
  }

  .asinfoCon .asinfo-service dl {
    padding: 18px 0px;
  }

  .asinfoCon .asinfo-service dt {
    font-size: 1.8rem;
    line-height: 1;
  }

  .asinfoCon .asinfo-service dd {
    font-size:0px;
  }

  .asinfoCon .asinfo-service dd p {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .asinfoCon .asinfo-service span {
    font-size:1.2rem;
    margin-top:8px;
  }

  .asinfoCon .asinfo-service dd .button {
    max-width:calc(50% - 4px);
    /* max-width:100%; */
    margin:2px;
    font-size: 1.4rem;
  }

  .asinfoCon .caution dd p {
    font-size: 1.5rem;
  }

  .asinfoCon .highend-link li {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Location */
.locationCon .location-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600 / 1400 * 100%);
  overflow: hidden;
}

.locationCon .location-map iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.locationCon .location-info {
  margin-top: 100px;
}

.locationCon .location-box {
  margin-top: 50px;
  padding: 50px 0px;
  border-top: 2px solid #bfbfbf;
  border-bottom: 1px solid #d2d2d2;
}

.locationCon .din {
  align-items: center;
}

.locationCon .lt {
  width: 380px;
  text-align: center;
}

.locationCon .rt {
  width: calc(100% - 380px);
  padding-left: 50px;
  border-left: 1px solid #d2d2d2;
}

.locationCon .location-tit {
  font-size: 3.6rem;
  color: #191919;
}

.locationCon dl {
  display: flex;
  padding: 20px 0px;
  border-top: 1px solid #aaaaaa;
}

.locationCon dl:first-child {
  padding-top: 0px;
  border: 0px;
}

.locationCon dl:last-child {
  padding-bottom: 0px;
}

.locationCon dt {
  display: block;
  position: relative;
  width: 180px;
  font-size: 2rem;
  font-weight: 700;
  color: #191919;
  padding-left: 30px;
}

.locationCon dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 21px;
  height: 21px;
  background-repeat: no-repeat;
  background-position: center;
}

.locationCon dt.icon01::before {
  background-image: url("/en/img/sub/company/location/icon01.png");
}

.locationCon dt.icon02::before {
  background-image: url("/en/img/sub/company/location/icon02.png");
}

.locationCon dt.icon03::before {
  background-image: url("/en/img/sub/company/location/icon03.png");
}

.locationCon dt.icon04::before {
  background-image: url("/en/img/sub/company/location/icon04.png");
}

.locationCon dt.icon05::before {
  background-image: url("/en/img/sub/company/location/icon05.png");
}

.locationCon dt.icon06::before {
  background-image: url("/en/img/sub/company/location/icon06.png");
}

.locationCon dt.icon07::before {
  background-image: url("/en/img/sub/company/location/icon07.png");
}

.locationCon dd {
  width: calc(100% - 180px);
}

.locationCon dd p {
  font-size: 2rem;
  color: #191919;
  padding-bottom: 8px;
}

.locationCon dd p:last-child {
  padding-bottom: 0px;
}

@media screen and (max-width: 1200px) {
  .locationCon .location-info {
    margin-top: 80px;
  }

  .locationCon .location-box {
    margin-top: 36px;
    padding: 36px 0px;
  }

  .locationCon .rt {
    padding-left: 36px;
  }

  .locationCon .location-tit {
    font-size: 2.8rem;
  }

  .locationCon dt {
    font-size: 1.8rem;
  }

  .locationCon dd p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 992px) {
  .locationCon .location-info {
    margin-top: 60px;
  }

  .locationCon .location-box {
    margin-top: 50px;
    padding: 0px;
    /* padding:30px 0px; */
    border: 0px;
  }

  .locationCon .din {
    flex-wrap: wrap;
  }

  .locationCon .lt {
    width: 100%;
    margin-bottom: 24px;
  }

  .locationCon .rt {
    width: 100%;
    border: 0px;
    padding: 0px;
  }

  .locationCon dl {
    padding: 12px 0px;
  }

  .locationCon dl:first-child {
    padding: 12px 0px;
    border-top: 1px solid #aaaaaa;
  }

  .locationCon dl:last-child {
    padding: 12px 0px;
    border-bottom: 1px solid #aaaaaa;
  }

  .locationCon dt {
    width: 160px;
    padding-left: 24px;
  }

  .locationCon dt::before {
    width: 17px;
    height: 17px;
    background-size: auto 17px;
  }

  .locationCon dd {
    width: calc(100% - 160px);
  }
}
@media screen and (max-width: 768px) {
  .locationCon .location-info {
    margin-top: 40px;
  }

  .locationCon .location-box {
    margin-top: 36px;
    /* padding:24px 0px; */
  }

  .locationCon .lt {
    margin-bottom: 18px;
  }

  .locationCon .location-tit {
    font-size: 2.4rem;
  }

  .locationCon dt {
    width: 130px;
    font-size: 1.6rem;
  }

  .locationCon dd {
    width: calc(100% - 130px);
  }

  .locationCon dd p {
    font-size: 1.6rem;
    padding-bottom: 4px;
  }
}
@media screen and (max-width: 576px) {
  .locationCon .location-box {
    margin-top: 24px;
    /* padding:18px 0px; */
  }

  .locationCon .lt {
    margin-bottom: 12px;
  }

  .locationCon .location-tit {
    font-size: 2rem;
  }

  .locationCon dt {
    font-size: 1.5rem;
  }

  .locationCon dd p {
    font-size: 1.5rem;
  }
}

/* ---------- Brand ---------- */
/* Brand Common*/
.brandCon .barnd-logo {
  background-color: #f5f5f5;
  padding: 30px 0px;
}

.brandCon .barnd-logo .logo-list {
  display: flex;
}

.brandCon .barnd-logo .logo-list li {
  position: relative;
  flex: 1 1;
}

.brandCon .barnd-logo .logo-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background-color: #bfbfbf;
}

.brandCon .barnd-logo .logo-list li:first-child::before {
  display: none;
}

.brandCon .barnd-logo .logo-list a {
  width: 100%;
  height: 100%;
}

.brandCon .brand-banner {
  position: relative;
}

.brandCon .brand-banner .swiper-container {
  height: 100%;
}

.brandCon .brand-banner .swiper-wrapper {
  height: 100%;
}

.brandCon .brand-banner .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.brandCon .brand-banner .prev,
.brandCon .brand-banner .next {
  display: none;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  z-index: 10;
  cursor: pointer;
}

.brandCon .brand-banner .prev {
  left: 90px;
}

.brandCon .brand-banner .next {
  right: 90px;
}

.brandCon .brand-banner .prev::before,
.brandCon .brand-banner .next::before {
  content: "";
  display: block;
  width: 10px;
  height: 17px;
  background-repeat: no-repeat;
  background-position: center;
}

.brandCon .brand-banner .prev::before {
  background-image: url("/en/img/sub/brand/prev_arrow.png");
}

.brandCon .brand-banner .next::before {
  background-image: url("/en/img/sub/brand/next_arrow.png");
}

.brandCon .brand-banner .pagination {
  display: none;
  /* display: flex; */
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: 8%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

.brandCon .brand-banner .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
}

.brandCon .brand-banner .swiper-pagination-bullet-active {
  background-color: #0068b7;
}

.brandCon .brand-banner .bnr-pc {
  display: block;
}

.brandCon .brand-banner .bnr-mo {
  display: none;
}

.brandCon .brand-banner .bnr-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(650 / 1920 * 100%);
  overflow: hidden;
  background-color: #000;
}

.brandCon .brand-banner .bnr-img video,
.brandCon .brand-banner .bnr-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brandCon .brand-tit-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brandCon .brand-tit {
  font-family: "Montserrat", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #191919;
}

.brandCon .brand-tit--ko {
  font-family: "NotoSansKR", sans-serif;
}

.brandCon .brand-sns {
  display: flex;
  margin: 0px -8px;
}

.brandCon .brand-sns li {
  padding: 0px 8px;
}

.brandCon .brand-sns a {
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 50px;
}

.brandCon .brand-video {
  padding-top: 100px;
}

.brandCon .brand-video .video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  /* padding-top:calc(1050/1400*100%); */
  overflow: hidden;
}

.brandCon .brand-video .video-wrap * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.brandCon .brand-prd {
  padding-top: 100px;
}

.brandCon .prd-pc {
  display: flex;
  flex-wrap: wrap;
}

.brandCon .prd-mo {
  display: none;
}

.brandCon .brand-prd-txt {
  position: relative;
  margin-top: 50px;
}

.brandCon .brand-prd-txt span {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: #191919;
}

.brandCon .brand-prd-txt ul {
  padding-left: 360px;
}

.brandCon .brand-prd-txt li {
  padding-bottom: 10px;
}

.brandCon .brand-prd-txt li:last-child {
  padding-bottom: 0px;
}

.brandCon .brand-prd-txt a {
  font-size: 2rem;
  line-height: 1;
  color: #191919;
}

@media screen and (min-width: 1201px) {
  .brandCon .brand-banner .prev:hover,
  .brandCon .brand-banner .next:hover {
    background-color: #000;
  }
}
@media screen and (min-width: 993px) {
  .brandCon .prd-pc {
    margin: -50px -14px;
  }

  .brandCon .prd-pc .brand-prd-block {
    width: 50%;
    padding: 50px 14px;
  }

  .brandCon .prd-pc .brand-prd-img {
    position: relative;
  }

  .brandCon .prd-pc .brand-prd-img .img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease 0.2s;
    transition: opacity 0.6s ease 0.2s;
  }

  .brandCon .prd-pc .brand-prd-img .img.on {
    position: relative;
    opacity: 1;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
  }

  .brandCon .prd-pc .brand-prd-txt li a.on {
    color: #0068b7;
  }
}
@media screen and (max-width: 1200px) {
  .brandCon .barnd-logo {
    padding: 24px 0px;
  }

  .brandCon .barnd-logo .logo-list a {
    padding: 0px 12px;
  }

  .brandCon .brand-banner .prev,
  .brandCon .brand-banner .next {
    width: 50px;
    height: 50px;
  }

  .brandCon .brand-banner .prev {
    left: 20px;
  }

  .brandCon .brand-banner .next {
    right: 20px;
  }

  .brandCon .brand-video {
    padding-top: 80px;
  }

  .brandCon .brand-tit {
    font-size: 3.6rem;
  }

  .brandCon .brand-prd {
    padding-top: 80px;
  }

  .brandCon .brand-sns {
    margin: 0px -4px;
  }

  .brandCon .brand-sns li {
    padding: 0px 4px;
  }

  .brandCon .brand-sns a {
    width: 40px;
    height: 40px;
  }

  .brandCon .brand-prd-txt {
    margin-top: 36px;
  }

  .brandCon .brand-prd-txt span {
    font-size: 2.6rem;
  }

  .brandCon .brand-prd-txt ul {
    padding-left: 320px;
  }

  .brandCon .brand-prd-txt a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 992px) {
  .brandCon .barnd-logo {
    padding: 18px 0px;
  }

  .brandCon .barnd-logo .logo-list li::before {
    height: 30px;
  }

  .brandCon .brand-banner .prev,
  .brandCon .brand-banner .next {
    display: none;
  }

  .brandCon .brand-banner .bnr-pc {
    display: none;
  }

  .brandCon .brand-banner .bnr-mo {
    display: block;
  }

  .brandCon .brand-banner .bnr-img {
    padding-top: 56.25%;
  }

  .brandCon .brand-video {
    padding-top: 60px;
  }

  .brandCon .prd-pc {
    display: none;
  }

  .brandCon .prd-mo {
    display: block;
  }

  .brandCon .brand-prd {
    padding-top: 60px;
  }

  .brandCon .brand-prd-block {
    margin-bottom: 40px;
  }

  .brandCon .brand-prd-block:last-child {
    margin: 0px;
  }

  .brandCon .brand-prd-block .title-wrap {
    text-align: left;
    margin-bottom: 18px;
  }

  .brandCon .brand-prd-block .title-wrap span {
    font-family: "Montserrat", sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1;
    color: #191919;
  }

  .brandCon .brand-prd-block .swiper-slide {
    text-align: center;
  }

  .brandCon .brand-prd-block .img img {
    width: 100%;
  }

  .brandCon .brand-prd-block .prd-name {
    font-size: 1.8rem;
    line-height: 1;
    color: #191919;
    text-align: center;
    margin: 24px 0px 30px;
  }

  .brandCon .brand-prd-block .button {
    max-width: 160px;
    width: 100%;
    height: 42px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0068b7;
    border-radius: 100px;
    border: 2px solid #0068b7;
  }

  .brandCon .brand-prd-block .pagination {
    display: flex;
    justify-content: center;
    margin: 24px 0px 0px;
  }

  .brandCon .brand-prd-block .swiper-pagination-bullet {
    opacity: 1;
    background-color: #ccc;
  }

  .brandCon .brand-prd-block .swiper-pagination-bullet-active {
    background-color: #0068b7;
  }
}
@media screen and (max-width: 768px) {
  .brandCon .barnd-logo {
    padding: 0px;
  }

  .brandCon .barnd-logo .container {
    padding: 0px;
  }

  .brandCon .barnd-logo .logo-list {
    flex-wrap: wrap;
    padding: 4px 10px;
  }

  .brandCon .barnd-logo .logo-list li {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    border-bottom: 1px solid #bfbfbf;
  }

  .brandCon .barnd-logo .logo-list li:nth-child(4),
  .brandCon .barnd-logo .logo-list li:nth-child(5),
  .brandCon .barnd-logo .logo-list li:nth-child(6) {
    border: 0px;
  }

  .brandCon .barnd-logo .logo-list li:nth-child(4)::before {
    display: none;
  }

  .brandCon .barnd-logo .logo-list a {
    display: flex;
    padding: 12px 6px;
  }

  .brandCon .barnd-logo .logo-list img {
    height: 46px;
  }

  .brandCon .brand-video {
    padding-top: 40px;
  }

  .brandCon .brand-tit {
    font-size: 2.8rem;
  }

  .brandCon .brand-prd {
    padding-top: 40px;
  }

  .brandCon .brand-sns {
    margin: 0px -4px;
  }

  .brandCon .brand-sns li {
    padding: 0px 4px;
  }

  .brandCon .brand-sns a {
    width: 30px;
    height: 30px;
  }

  .brandCon .brand-prd-block .title-wrap span {
    font-size: 2.2rem;
  }

  .brandCon .brand-prd-block .prd-name {
    font-size: 1.6rem;
    margin: 18px 0px 24px;
  }

  .brandCon .brand-prd-block .button {
    height: 36px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .brandCon .barnd-logo .logo-list {
    padding: 4px 6px;
  }

  .brandCon .barnd-logo .logo-list li::before {
    height: 20px;
  }

  .brandCon .barnd-logo .logo-list a {
    padding: 12px 3px;
    /* padding:6px; */
  }

  .brandCon .barnd-logo .logo-list img {
    height: 42px;
  }

  .brandCon .brand-tit {
    font-size: 2.2rem;
  }

  .brandCon .brand-tit-wrap {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .brandCon .brand-prd-block .title-wrap span {
    font-size: 2rem;
  }

  .brandCon .brand-sns {
    padding-top: 12px;
    margin: 0px -2px;
  }

  .brandCon .brand-sns li {
    padding: 0px 2px;
  }

  .brandCon .brand-sns a {
    width: 24px;
    height: 24px;
  }

  .brandCon .brand-prd-block .pagination {
    margin: 20px 0px 0px;
  }

  .brandCon .brand-prd-block .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0px 3px;
  }

  .brandCon .brand-prd-block .button {
    max-width: 100px;
    height: 32px;
    font-size: 1.4rem;
  }

  /* .brandCon .brand-sns {
    display: flex;
    justify-content: center;
    margin:12px -2px 0px;
  } */

  /* .brandCon .brand-video {
    padding-top:30px;
  }

  .brandCon .brand-prd {
    padding-top:30px;
  } */
}

/* Brand CHOPARD */
.brandCon01 .item--02 {
  padding: 150px 0px;
}

.brandCon01 .item--02 .brand-intro-main {
  padding-bottom: 100px;
}

.brandCon01 .item--02 .brand-intro-main .lt {
  width: calc(100% - 686px);
}

.brandCon01 .item--02 .brand-intro-main .rt {
  width: 686px;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-tit {
  font-size: 3.6rem;
  font-weight: 700;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-subtit {
  margin-top: 30px;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-subtit span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 6px;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-subtit span:last-child {
  padding-bottom: 0px;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-subtit span a {
  color: #0650c0;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon01 .item--02 .brand-intro-main .brand-intro-txt:last-child {
  margin-bottom: 0px;
}

.brandCon01 .item--02 .brand-intro-sub .lt {
  width: 805px;
}

.brandCon01 .item--02 .brand-intro-sub .rt {
  width: calc(100% - 805px);
  padding-left: 28px;
}

.brandCon01 .item--02 .brand-intro-sub .img--mobile {
  display: none;
  /* margin-bottom:40px; */
}

.brandCon01 .item--02 .brand-intro-sub .img img {
  display: block;
}

.brandCon01 .item--02 .brand-intro-sub .txt {
  padding-top: 80px;
  /* padding-right:60px; */
}

.brandCon01 .item--02 .brand-intro-sub .txt--first {
  padding-top: 0px;
  padding-bottom: 80px;
}

.brandCon01 .item--02 .brand-intro-sub .txt .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon01 .item--02 .brand-intro-sub .txt .t01:last-child {
  margin-bottom: 0px;
}

.brandCon01 .item--03 {
  background-color: #f5f5f5;
  padding: 150px 0px;
}

.brandCon01 .item--03 .txt {
  padding-top: 80px;
}

.brandCon01 .item--03 .txt .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
}

.brandCon01 .item--04 {
  padding: 150px 0px;
}

.brandCon01 .item--04 img {
  display: block;
}

@media screen and (max-width: 1200px) {
  .brandCon01 .item--02 {
    padding: 120px 0px;
  }

  .brandCon01 .item--02 .brand-intro-main {
    padding-bottom: 80px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.8rem;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 24px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.6rem;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon01 .item--02 .brand-intro-sub .lt {
    width: 715px;
  }

  .brandCon01 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 715px);
  }

  .brandCon01 .item--02 .brand-intro-sub .txt {
    padding-top: 60px;
    /* padding-right:40px; */
  }

  .brandCon01 .item--02 .brand-intro-sub .txt--first {
    padding-top: 0px;
    padding-bottom: 60px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon01 .item--03 {
    padding: 120px 0px;
  }

  .brandCon01 .item--03 .txt {
    padding-top: 60px;
  }

  .brandCon01 .item--03 .txt .t01 {
    font-size: 1.8rem;
  }

  .brandCon01 .item--04 {
    padding: 120px 0px;
  }
}
@media screen and (max-width: 992px) {
  .brandCon01 .item--02 {
    padding: 80px 0px;
  }

  .brandCon01 .item--02 .brand-intro-main {
    padding-bottom: 60px;
  }

  .brandCon01 .item--02 .brand-intro-main .din {
    flex-wrap: wrap;
  }

  .brandCon01 .item--02 .brand-intro-main .lt,
  .brandCon01 .item--02 .brand-intro-main .rt {
    width: 100%;
  }

  .brandCon01 .item--02 .brand-intro-main .lt {
    margin-bottom: 30px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-tit {
    margin-bottom: 30px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-tit br {
    display: none;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 18px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-txt {
    margin-bottom: 30px;
  }

  .brandCon01 .item--02 .brand-intro-sub .lt {
    width: 585px;
  }

  .brandCon01 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 585px);
    padding-left: 20px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt {
    padding-top: 40px;
    /* padding-right:30px; */
  }

  .brandCon01 .item--02 .brand-intro-sub .txt--first {
    padding-top: 0px;
    padding-bottom: 40px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt .t01 {
    margin-bottom: 30px;
  }

  .brandCon01 .item--03 {
    padding: 80px 0px;
  }

  .brandCon01 .item--03 .txt {
    padding-top: 40px;
  }

  .brandCon01 .item--04 {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 768px) {
  .brandCon01 .item--02 {
    padding: 60px 0px;
  }

  .brandCon01 .item--02 .brand-intro-main {
    padding-bottom: 40px;
  }

  .brandCon01 .item--02 .brand-intro-main .lt {
    margin-bottom: 24px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 12px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.4rem;
    padding-bottom: 0px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon01 .item--02 .brand-intro-sub .img--mobile {
    display: block;
    padding-bottom: 30px;
    /* margin-bottom:30px; */
  }

  .brandCon01 .item--02 .brand-intro-sub .din {
    flex-wrap: wrap;
  }

  .brandCon01 .item--02 .brand-intro-sub .lt {
    display: none;
    /* width:100%; */
    /* margin-bottom:40px; */
  }

  .brandCon01 .item--02 .brand-intro-sub .rt {
    width: 100%;
    padding: 0px;
    /* padding-top:40px; */
  }

  .brandCon01 .item--02 .brand-intro-sub .txt {
    padding-top: 30px;
    padding-right: 0px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt--first {
    padding-top: 0px;
    padding-bottom: 30px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon01 .item--03 {
    padding: 60px 0px;
  }

  .brandCon01 .item--03 .txt {
    padding-top: 30px;
  }

  .brandCon01 .item--03 .txt .t01 {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .brandCon01 .item--04 {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 576px) {
  .brandCon01 .item--02 .brand-intro-main {
    padding-bottom: 30px;
  }

  .brandCon01 .item--02 .brand-intro-main .lt {
    margin-bottom: 18px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 6px;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.3rem;
  }

  .brandCon01 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  /* .brandCon01 .item--02 .brand-intro-sub .img--mobile {
    margin-bottom:24px;
  } */

  /* .brandCon01 .item--02 .brand-intro-sub .lt {
    margin-bottom:30px;
  } */

  .brandCon01 .item--02 .brand-intro-sub .img--mobile {
    padding-bottom: 24px;
    /* margin-bottom:30px; */
  }

  /* .brandCon01 .item--02 .brand-intro-sub .rt {
    padding-top:30px;
  } */

  .brandCon01 .item--02 .brand-intro-sub .txt {
    padding-top: 24px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt--first {
    padding-top: 0px;
    padding-bottom: 24px;
  }

  .brandCon01 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .brandCon01 .item--03 .txt {
    padding-top: 24px;
  }

  .brandCon01 .item--03 .txt .t01 {
    font-size: 1.5rem;
  }
}

/* Brand PATEK PHILIPPE */
.brandCon02 .item--02 {
  padding: 150px 0px;
}

.brandCon02 .item--02 .brand-intro-main {
  padding-bottom: 100px;
}

.brandCon02 .item--02 .brand-intro-main .lt {
  width: calc(100% - 686px);
}

.brandCon02 .item--02 .brand-intro-main .rt {
  width: 686px;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-tit {
  font-size: 3.6rem;
  font-weight: 700;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-tit span {
  display: block;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-subtit {
  margin-top: 30px;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-subtit span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 6px;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-subtit span:last-child {
  padding-bottom: 0px;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-subtit span a {
  color: #0650c0;
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-txt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
  color: #191919;
  /* margin-bottom:50px; */
}

.brandCon02 .item--02 .brand-intro-main .brand-intro-txt:last-child {
  margin-bottom: 0px;
}

.brandCon02 .item--02 .brand-intro-sub .img img {
  display: block;
}

.brandCon02 .item--02 .brand-intro-sub .txt {
  padding-top: 80px;
}

.brandCon02 .item--02 .brand-intro-sub .txt:first-child {
  padding-top: 0px;
  padding-bottom: 80px;
}

.brandCon02 .item--02 .brand-intro-sub .txt .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon02 .item--02 .brand-intro-sub .txt .t01:last-child {
  margin-bottom: 0px;
}

.brandCon02 .item--03 {
  padding: 0px 0px 150px;
}

.brandCon02 .brand-tit-wrap {
  padding-top: 150px;
  border-top: 1px solid #cccccc;
}

.brandCon02 .prd-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -50px -14px;
}

.brandCon02 .prd-gallery li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 50px 14px;
}

.brandCon02 .prd-gallery .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(329 / 329 * 100%);
  overflow: hidden;
  border: 1px solid #ccc;
}

.brandCon02 .prd-gallery .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.brandCon02 .prd-gallery .txt {
  text-align: center;
  padding-top: 30px;
}

.brandCon02 .prd-gallery .txt .t01 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #191919;
}

@media screen and (min-width: 1201px) {
  .brandCon02 .prd-gallery li:hover .img img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 1200px) {
  .brandCon02 .item--02 {
    padding: 120px 0px;
  }

  .brandCon02 .item--02 .brand-intro-main {
    padding-bottom: 80px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.8rem;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 24px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.6rem;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 2rem;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt {
    padding-top: 50px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 50px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon02 .item--03 {
    padding: 0px 0px 120px;
  }

  .brandCon02 .brand-tit-wrap {
    padding-top: 120px;
  }

  .brandCon02 .prd-gallery {
    margin: -36px -10px;
  }

  .brandCon02 .prd-gallery li {
    padding: 36px 10px;
  }

  .brandCon02 .prd-gallery .txt {
    padding-top: 24px;
  }

  .brandCon02 .prd-gallery .txt .t01 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 992px) {
  .brandCon02 .item--02 {
    padding: 80px 0px;
  }

  .brandCon02 .item--02 .brand-intro-main {
    padding-bottom: 60px;
  }

  .brandCon02 .item--02 .brand-intro-main .din {
    flex-wrap: wrap;
  }

  .brandCon02 .item--02 .brand-intro-main .lt,
  .brandCon02 .item--02 .brand-intro-main .rt {
    width: 100%;
  }

  .brandCon02 .item--02 .brand-intro-main .lt {
    margin-bottom: 30px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-tit {
    margin-bottom: 30px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 18px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-tit br {
    display: none;
  }

  /* .brandCon02 .item--02 .brand-intro-main .brand-intro-txt {
    margin-bottom:30px;
  } */

  .brandCon02 .item--02 .brand-intro-sub .txt {
    padding-top: 40px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 40px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt .t01 {
    margin-bottom: 30px;
  }

  .brandCon02 .item--03 {
    padding: 0px 0px 80px;
  }

  .brandCon02 .brand-tit-wrap {
    padding-top: 80px;
  }

  .brandCon02 .prd-gallery {
    margin: -30px -10px;
  }

  .brandCon02 .prd-gallery li {
    padding: 30px 10px;
  }

  .brandCon02 .prd-gallery .txt {
    padding-top: 18px;
  }
}
@media screen and (max-width: 768px) {
  .brandCon02 .item--02 {
    padding: 60px 0px;
  }

  .brandCon02 .item--02 .brand-intro-main {
    padding-bottom: 40px;
  }

  .brandCon02 .item--02 .brand-intro-main .lt {
    margin-bottom: 24px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 12px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.8rem;
    line-height: 1.6;
    /* line-height:1.6;
    margin-bottom:24px; */
  }

  .brandCon02 .item--02 .brand-intro-sub .img img {
    content: url("/en/img/sub/brand/patek_philippe/intro_img__mobile.png");
  }

  .brandCon02 .item--02 .brand-intro-sub .txt {
    padding-top: 30px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 30px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.4rem;
    padding-bottom: 0px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon02 .item--03 {
    padding: 0px 0px 60px;
  }

  .brandCon02 .brand-tit-wrap {
    padding-top: 60px;
  }

  .brandCon02 .prd-gallery {
    margin: -24px -6px;
  }

  .brandCon02 .prd-gallery li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 24px 6px;
  }

  .brandCon02 .prd-gallery .txt {
    padding-top: 12px;
  }

  .brandCon02 .prd-gallery .txt .t01 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .brandCon02 .item--02 .brand-intro-main {
    padding-bottom: 30px;
  }

  .brandCon02 .item--02 .brand-intro-main .lt {
    margin-bottom: 18px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 6px;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.3rem;
  }

  .brandCon02 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.6rem;
    /* margin-bottom:18px; */
  }

  .brandCon02 .item--02 .brand-intro-sub .txt {
    padding-top: 24px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 24px;
  }

  .brandCon02 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .brandCon02 .prd-gallery {
    margin: -12px -4px;
  }

  .brandCon02 .prd-gallery li {
    padding: 12px 4px;
  }

  .brandCon02 .prd-gallery .txt {
    padding-top: 9px;
  }

  .brandCon02 .prd-gallery .txt .t01 {
    font-size: 1.5rem;
  }
}

/* Brand STONEHENgE */
.brandCon03 .item--02 {
  padding: 150px 0px;
}

.brandCon03 .item--02 .din {
  justify-content: space-between;
}

.brandCon03 .item--02 .brand-intro-main {
  padding-bottom: 100px;
}

.brandCon03 .item--02 .brand-intro-main .lt {
  width: calc(100% - 686px);
}

.brandCon03 .item--02 .brand-intro-main .rt {
  width: 686px;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-tit {
  font-size: 3.6rem;
  font-weight: 700;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-subtit {
  margin-top: 30px;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-subtit span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 6px;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-subtit span:last-child {
  padding-bottom: 0px;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-subtit span a {
  color: #0650c0;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon03 .item--02 .brand-intro-main .brand-intro-txt:last-child {
  margin-bottom: 0px;
}

.brandCon03 .item--02 .brand-intro-sub .lt {
  width: 805px;
}

.brandCon03 .item--02 .brand-intro-sub .rt {
  width: calc(100% - 805px);
  padding-left: 28px;
}

.brandCon03 .item--02 .brand-intro-sub .img--mobile {
  display: none;
  /* margin-bottom:40px; */
}

.brandCon03 .item--02 .brand-intro-sub .img img {
  display: block;
}

.brandCon03 .item--02 .brand-intro-sub .txt {
  padding-top: 80px;
}

.brandCon03 .item--02 .brand-intro-sub .txt .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo {
  display: none;
}

/* .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo03 {
  display: block;
} */

.brandCon03 .item--02 .brand-intro-sub .txt .t01:last-child {
  margin-bottom: 0px;
}

.brandCon03 .item--03 {
  background-color: #f5f5f5;
  padding: 150px 0px;
}

.brandCon03 .item--04 {
  padding: 150px 0px;
}

.brandCon03 .item--04 img {
  display: block;
}

@media screen and (max-width: 1200px) {
  .brandCon03 .item--02 {
    padding: 120px 0px;
  }

  /* .brandCon03 .item--02 .lt {
    padding-right:20px;
  } */

  .brandCon03 .item--02 .brand-intro-main {
    padding-bottom: 80px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.8rem;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 24px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.6rem;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon03 .item--02 .brand-intro-sub .lt {
    width: 715px;
  }

  .brandCon03 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 715px);
  }

  .brandCon03 .item--02 .brand-intro-sub .txt {
    padding-top: 60px;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.8rem;
  }

  .brandCon03 .item--03 {
    padding: 120px 0px;
  }

  .brandCon03 .item--04 {
    padding: 120px 0px;
  }
}
@media screen and (max-width: 992px) {
  .brandCon03 .item--02 {
    padding: 80px 0px;
  }

  .brandCon03 .item--02 .din {
    flex-wrap: wrap;
  }

  .brandCon03 .item--02 .brand-intro-main {
    padding-bottom: 60px;
  }

  .brandCon03 .item--02 .brand-intro-main .lt {
    /* order: 2; */
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
    /* padding-top:30px; */
  }

  .brandCon03 .item--02 .brand-intro-main .rt {
    /* order: 1; */
    width: 100%;
  }

  .brandCon03 .item--02 .brand-intro-main .rt img {
    margin: 0 auto;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-tit {
    margin-bottom: 30px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 18px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-txt {
    margin-bottom: 30px;
  }

  .brandCon03 .item--02 .brand-intro-sub .lt {
    width: 585px;
  }

  .brandCon03 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 585px);
    padding-left: 20px;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt {
    padding-top: 40px;
  }

  .brandCon03 .item--03 {
    padding: 80px 0px;
  }

  .brandCon03 .item--04 {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 768px) {
  .brandCon03 .item--02 {
    padding: 60px 0px;
  }

  /* .brandCon03 .item--02 .lt {
    padding-top:24px;
  } */

  .brandCon03 .item--02 .brand-intro-main {
    padding-bottom: 40px;
  }

  .brandCon03 .item--02 .brand-intro-main .lt {
    margin-bottom: 24px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 12px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.4rem;
    padding: 0px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.6rem;
  }

  .brandCon03 .item--02 .brand-intro-sub .lt {
    width: 100%;
  }

  .brandCon03 .item--02 .brand-intro-sub .rt {
    width: 100%;
    display: none;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt {
    padding-top: 30px;
  }

  .brandCon03 .item--02 .brand-intro-sub .img--mobile {
    display: block;
    padding-top: 30px;
  }

  .brandCon03 .item--03 {
    padding: 60px 0px;
  }

  .brandCon03 .item--04 {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 576px) {
  /* .brandCon03 .item--02 .lt {
    padding-top:18px;
  } */

  .brandCon03 .item--02 .brand-intro-main {
    padding-bottom: 30px;
  }

  .brandCon03 .item--02 .brand-intro-main .lt {
    margin-bottom: 18px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 6px;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.3rem;
  }

  .brandCon03 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt {
    padding-top: 24px;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.5rem;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo {
    display: block;
  }

  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo03, 
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo06 {
    display: none;
  }
  
  .brandCon03 .item--02 .brand-intro-sub .img--mobile {
    padding-top: 24px;
  }
}

@media(max-width:388px){
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo01,
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo02,
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo04, 
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo05, 
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo07 {
    display: none;
  }
  
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo06,
  .brandCon03 .item--02 .brand-intro-sub .txt .t01 br.mo.mo03 {
    display: block;
  }
}

/* Brand GALLERY O'CLOCK */
.brandCon04 .item--02 {
  padding: 150px 0px;
}

.brandCon04 .item--02 .brand-intro-main {
  padding-bottom: 100px;
}

.brandCon04 .item--02 .brand-intro-main .brand-intro-tit {
  font-size: 3.6rem;
  font-weight: 700;
}

.brandCon04 .item--02 .brand-intro-main .brand-intro-subtit {
  margin-top: 30px;
}

.brandCon04 .item--02 .brand-intro-main .brand-intro-subtit span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 6px;
}

.brandCon04 .item--02 .brand-intro-main .brand-intro-subtit span:last-child {
  padding-bottom: 0px;
}

.brandCon04 .item--02 .brand-intro-main .brand-intro-subtit span a {
  color: #0650c0;
}

.brandCon04 .item--02 .brand-intro-sub .din {
  justify-content: space-between;
  align-items: center;
}

.brandCon04 .item--02 .brand-intro-sub .lt {
  width: 686px;
  padding-right: 20px;
}

.brandCon04 .item--02 .brand-intro-sub .rt {
  position: relative;
  width: 594px;
  height: 477px;
}

.brandCon04 .item--02 .brand-intro-sub .rt .video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.brandCon04 .item--02 .brand-intro-sub .rt .video * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.brandCon04 .item--02 .brand-intro-sub .video--mobile {
  display: none;
}

.brandCon04 .item--02 .brand-intro-sub .brand-intro-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon04 .item--02 .brand-intro-sub .brand-intro-txt:last-child {
  margin-bottom: 0px;
}

.brandCon04 .item--03 {
  padding: 0px 0px 150px;
}

.brandCon04 .brand-tit-wrap {
  padding-top: 150px;
  border-top: 1px solid #cccccc;
}

.brandCon04 .prd-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.brandCon04 .prd-gallery li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 14px;
}

.brandCon04 .prd-gallery .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(457 / 329 * 100%);
  overflow: hidden;
}

.brandCon04 .prd-gallery .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

@media screen and (min-width: 1201px) {
  .brandCon04 .prd-gallery li:hover .img img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@media screen and (max-width: 1200px) {
  .brandCon04 .item--02 {
    padding: 120px 0px;
  }

  .brandCon04 .item--02 .brand-intro-main {
    padding-bottom: 80px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.8rem;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.6rem;
  }

  .brandCon04 .item--02 .brand-intro-sub .brand-intro-txt {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon04 .item--03 {
    padding: 0px 0px 120px;
  }

  .brandCon04 .brand-tit-wrap {
    padding-top: 120px;
  }
}
@media screen and (max-width: 992px) {
  .brandCon04 .item--02 {
    padding: 80px 0px;
  }

  .brandCon04 .item--02 .brand-intro-main {
    padding-bottom: 60px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-tit {
    margin-bottom: 30px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 18px;
  }

  .brandCon04 .item--02 .brand-intro-sub .din {
    flex-wrap: wrap;
  }

  .brandCon04 .item--02 .brand-intro-sub .lt {
    order: 2;
    width: 100%;
    padding: 0px;
    padding-top: 40px;
  }

  .brandCon04 .item--02 .brand-intro-sub .rt {
    display: none;
  }

  .brandCon04 .item--02 .brand-intro-sub .video--mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: calc(1000 / 1000 * 100%);
    overflow: hidden;
    margin-bottom: 30px;
  }

  .brandCon04 .item--02 .brand-intro-sub .video--mobile * {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }

  .brandCon04 .item--02 .brand-intro-sub .brand-intro-txt {
    margin-bottom: 30px;
  }

  .brandCon04 .item--03 {
    padding: 0px 0px 80px;
  }

  .brandCon04 .brand-tit-wrap {
    padding-top: 80px;
  }

  .brandCon04 .prd-gallery {
    margin: -8px;
  }

  .brandCon04 .prd-gallery li {
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .brandCon04 .item--02 {
    padding: 60px 0px;
  }

  .brandCon04 .item--02 .brand-intro-main {
    padding-bottom: 40px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 12px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.4rem;
    padding: 0px;
  }

  .brandCon04 .item--02 .brand-intro-sub .lt {
    padding-top: 30px;
  }

  .brandCon04 .item--02 .brand-intro-sub .brand-intro-txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon04 .item--02 .brand-intro-sub .video--mobile {
    margin-bottom: 24px;
  }

  .brandCon04 .item--03 {
    padding: 0px 0px 60px;
  }

  .brandCon04 .brand-tit-wrap {
    padding-top: 60px;
  }

  .brandCon04 .prd-gallery {
    margin: -4px;
  }

  .brandCon04 .prd-gallery li {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 4px;
  }
}
@media screen and (max-width: 576px) {
  .brandCon04 .item--02 .brand-intro-main {
    padding-bottom: 30px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 6px;
  }

  .brandCon04 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.3rem;
  }

  .brandCon04 .item--02 .brand-intro-sub .lt {
    padding-top: 24px;
  }

  .brandCon04 .item--02 .brand-intro-sub .brand-intro-txt {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .brandCon04 .item--02 .brand-intro-sub .video--mobile {
    margin-bottom: 18px;
  }

  .brandCon04 .prd-gallery li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Brand ROSEMONT */
.brandCon05 .item--02 {
  padding: 150px 0px;
}

.brandCon05 .item--02 .din {
  justify-content: space-between;
}

.brandCon05 .item--02 .brand-intro-main {
  padding-bottom: 100px;
}

.brandCon05 .item--02 .brand-intro-main .lt {
  width: calc(100% - 686px);
}

.brandCon05 .item--02 .brand-intro-main .rt {
  width: 686px;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-tit {
  font-size: 3.6rem;
  font-weight: 700;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-subtit {
  margin-top: 30px;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-subtit span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 6px;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-subtit span:last-child {
  padding-bottom: 0px;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-subtit span a {
  color: #0650c0;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon05 .item--02 .brand-intro-main .brand-intro-txt:last-child {
  margin-bottom: 0px;
}

.brandCon05 .item--02 .brand-intro-sub .lt {
  width: 805px;
}

.brandCon05 .item--02 .brand-intro-sub .rt {
  width: calc(100% - 805px);
  padding-left: 28px;
}

.brandCon05 .item--02 .brand-intro-sub .img--mobile {
  display: none;
  /* margin-bottom:40px; */
}

.brandCon05 .item--02 .brand-intro-sub .img--center {
  padding: 0px !important;
}

.brandCon05 .item--02 .brand-intro-sub .img img {
  display: block;
}

.brandCon05 .item--02 .brand-intro-sub .txt {
  padding-top: 80px;
}

.brandCon05 .item--02 .brand-intro-sub .txt .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon05 .item--02 .brand-intro-sub .txt .t01:last-child {
  margin-bottom: 0px;
}

.brandCon05 .item--03 {
  background-color: #f5f5f5;
  padding: 150px 0px;
}

.brandCon05 .item--04 {
  padding: 150px 0px;
}

.brandCon05 .item--04 img {
  display: block;
}

@media screen and (max-width: 1200px) {
  .brandCon05 .item--02 {
    padding: 120px 0px;
  }

  /* .brandCon05 .item--02 .lt {
    padding-right:20px;
  } */

  .brandCon05 .item--02 .brand-intro-main {
    padding-bottom: 80px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.8rem;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 24px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.6rem;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon05 .item--02 .brand-intro-sub .lt {
    width: 715px;
  }

  .brandCon05 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 715px);
  }

  .brandCon05 .item--02 .brand-intro-sub .txt {
    padding-top: 60px;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon05 .item--03 {
    padding: 120px 0px;
  }

  .brandCon05 .item--04 {
    padding: 120px 0px;
  }
}
@media screen and (max-width: 992px) {
  .brandCon05 .item--02 {
    padding: 80px 0px;
  }

  .brandCon05 .item--02 .din {
    flex-wrap: wrap;
  }

  .brandCon05 .item--02 .brand-intro-main {
    padding-bottom: 60px;
  }

  .brandCon05 .item--02 .brand-intro-main .lt {
    /* order: 2; */
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
    /* padding-top:30px; */
  }

  .brandCon05 .item--02 .brand-intro-main .rt {
    /* order: 1; */
    width: 100%;
  }

  .brandCon05 .item--02 .brand-intro-main .rt img {
    margin: 0 auto;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-tit {
    margin-bottom: 30px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 18px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-txt {
    margin-bottom: 30px;
  }

  .brandCon05 .item--02 .brand-intro-sub .lt {
    width: 585px;
  }

  .brandCon05 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 585px);
    padding-left: 20px;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt {
    padding-top: 40px;
  }

  /* .brandCon05 .item--02 .brand-intro-sub .txt .t01 {
    margin-bottom:30px;
  } */

  .brandCon05 .item--03 {
    padding: 80px 0px;
  }

  .brandCon05 .item--04 {
    padding: 80px 0px;
  }
}
@media screen and (max-width: 768px) {
  .brandCon05 .item--02 {
    padding: 60px 0px;
  }

  /* .brandCon05 .item--02 .lt {
    padding-top:24px;
  } */

  .brandCon05 .item--02 .brand-intro-main {
    padding-bottom: 40px;
  }

  .brandCon05 .item--02 .brand-intro-main .lt {
    margin-bottom: 24px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 12px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.4rem;
    padding: 0px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.6rem;
    /* margin-bottom:24px; */
  }

  .brandCon05 .item--02 .brand-intro-sub .lt {
    width: 100%;
  }

  .brandCon05 .item--02 .brand-intro-sub .rt {
    width: 100%;
    display: none;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt {
    padding-top: 30px;
  }

  /* .brandCon05 .item--02 .brand-intro-sub .txt .t01 {
    margin-bottom:18px;
  } */

  .brandCon05 .item--02 .brand-intro-sub .txt .t01:last-child {
    padding-top: 30px;
  }

  .brandCon05 .item--02 .brand-intro-sub .img--mobile {
    display: block;
    padding-top: 30px;
  }

  .brandCon05 .item--03 {
    padding: 60px 0px;
  }

  .brandCon05 .item--04 {
    padding: 60px 0px;
  }
}
@media screen and (max-width: 576px) {
  /* .brandCon05 .item--02 .lt {
    padding-top:18px;
  } */

  .brandCon05 .item--02 .brand-intro-main {
    padding-bottom: 30px;
  }

  .brandCon05 .item--02 .brand-intro-main .lt {
    margin-bottom: 18px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 6px;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.3rem;
  }

  .brandCon05 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt {
    padding-top: 24px;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.5rem;
  }

  .brandCon05 .item--02 .brand-intro-sub .txt .t01:last-child {
    padding-top: 24px;
  }

  .brandCon05 .item--02 .brand-intro-sub .img--mobile {
    padding-top: 24px;
  }
}

/* Brand MOCHUISLE */
.brandCon06 .item--02 {
  padding: 150px 0px;
}

.brandCon06 .item--02 .din {
  justify-content: space-between;
}

.brandCon06 .item--02 .brand-intro-main {
  padding-bottom: 100px;
}

.brandCon06 .item--02 .brand-intro-main .lt {
  width: calc(100% - 686px);
}

.brandCon06 .item--02 .brand-intro-main .rt {
  width: 686px;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-tit {
  font-size: 3.6rem;
  font-weight: 700;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-subtit {
  margin-top: 30px;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-subtit span {
  display: block;
  font-size: 1.8rem;
  padding-bottom: 6px;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-subtit span:last-child {
  padding-bottom: 0px;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-subtit span a {
  color: #0650c0;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon06 .item--02 .brand-intro-main .brand-intro-txt:last-child {
  margin-bottom: 0px;
}

.brandCon06 .item--02 .brand-intro-sub .lt {
  width: 805px;
}

.brandCon06 .item--02 .brand-intro-sub .rt {
  width: calc(100% - 805px);
  padding-left: 28px;
}

.brandCon06 .item--02 .brand-intro-sub .img--mobile {
  display: none;
  /* margin-bottom:40px; */
}

.brandCon06 .item--02 .brand-intro-sub .img--center {
  padding: 0px !important;
}

.brandCon06 .item--02 .brand-intro-sub .img img {
  display: block;
}

.brandCon06 .item--02 .brand-intro-sub .txt {
  padding-top: 80px;
}

.brandCon06 .item--02 .brand-intro-sub .txt:first-child {
  padding-top: 0px;
  padding-bottom: 80px;
}

.brandCon06 .item--02 .brand-intro-sub .txt .t01 {
  font-size: 2rem;
  line-height: 1.8;
  color: #191919;
  margin-bottom: 50px;
}

.brandCon06 .item--02 .brand-intro-sub .txt .t01:last-child {
  margin-bottom: 0px;
}

.brandCon06 .item--03 {
  background-color: #f5f5f5;
  padding: 150px 0px;
}

.brandCon06 .item--04 {
  padding: 150px 0px;
}

.brandCon06 .item--04 img {
  display: block;
}

.brandCon06 .item--04 .brand-shop {
  padding-top: 100px;
}

.brandCon06 .item--04 .shop-gallery {
  display: flex;
  flex-wrap: wrap;
  margin: -14px;
}

.brandCon06 .item--04 .shop-gallery li {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 14px;
}

.brandCon06 .item--04 .shop-gallery .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(400 / 329 * 100%);
  overflow: hidden;
}

.brandCon06 .item--04 .shop-gallery .img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 1200px) {
  .brandCon06 .item--02 {
    padding: 120px 0px;
  }

  /* .brandCon06 .item--02 .lt {
    padding-right:20px;
  } */

  .brandCon06 .item--02 .brand-intro-main {
    padding-bottom: 80px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.8rem;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 24px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.6rem;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon06 .item--02 .brand-intro-sub .lt {
    width: 715px;
  }

  .brandCon06 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 715px);
  }

  .brandCon06 .item--02 .brand-intro-sub .txt {
    padding-top: 60px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 60px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .brandCon06 .item--03 {
    padding: 120px 0px;
  }

  .brandCon06 .item--04 {
    padding: 120px 0px;
  }

  .brandCon06 .item--04 .brand-shop {
    padding-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .brandCon06 .item--02 {
    padding: 80px 0px;
  }

  .brandCon06 .item--02 .din {
    flex-wrap: wrap;
  }

  .brandCon06 .item--02 .brand-intro-main {
    padding-bottom: 60px;
  }

  .brandCon06 .item--02 .brand-intro-main .lt {
    /* order: 2; */
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
    /* padding-top:30px; */
  }

  .brandCon06 .item--02 .brand-intro-main .rt {
    /* order: 1; */
    width: 100%;
  }

  .brandCon06 .item--02 .brand-intro-main .rt img {
    margin: 0 auto;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-tit {
    margin-bottom: 30px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 18px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-txt {
    margin-bottom: 30px;
  }

  .brandCon06 .item--02 .brand-intro-sub .lt {
    width: 585px;
  }

  .brandCon06 .item--02 .brand-intro-sub .rt {
    width: calc(100% - 585px);
    padding-left: 20px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt {
    padding-top: 40px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 40px;
  }

  /* .brandCon06 .item--02 .brand-intro-sub .txt .t01 {
    margin-bottom:30px;
  } */

  .brandCon06 .item--03 {
    padding: 80px 0px;
  }

  .brandCon06 .item--04 {
    padding: 80px 0px;
  }

  .brandCon06 .item--04 .brand-shop {
    padding-top: 60px;
  }

  .brandCon06 .item--04 .shop-gallery {
    margin: -8px;
  }

  .brandCon06 .item--04 .shop-gallery li {
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .brandCon06 .item--02 {
    padding: 60px 0px;
  }

  /* .brandCon06 .item--02 .lt {
    padding-top:24px;
  } */

  .brandCon06 .item--02 .brand-intro-main {
    padding-bottom: 40px;
  }

  .brandCon06 .item--02 .brand-intro-main .lt {
    margin-bottom: 24px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 12px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.4rem;
    padding: 0px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.6rem;
    /* margin-bottom:24px; */
  }

  .brandCon06 .item--02 .brand-intro-sub .lt {
    width: 100%;
  }

  .brandCon06 .item--02 .brand-intro-sub .rt {
    width: 100%;
    display: none;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt {
    padding-top: 30px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 30px;
  }

  /* .brandCon06 .item--02 .brand-intro-sub .txt .t01 {
    margin-bottom:18px;
  } */

  .brandCon06 .item--02 .brand-intro-sub .txt .t01:last-child {
    padding-top: 30px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt:first-child .t01 {
    padding-top: 0px !important;
  }

  .brandCon06 .item--02 .brand-intro-sub .img--mobile {
    display: block;
    padding-top: 30px;
  }

  .brandCon06 .item--03 {
    padding: 60px 0px;
  }

  .brandCon06 .item--04 {
    padding: 60px 0px;
  }

  .brandCon06 .item--04 .brand-shop {
    padding-top: 40px;
  }

  .brandCon06 .item--04 .shop-gallery {
    margin: -4px;
  }

  .brandCon06 .item--04 .shop-gallery li {
    padding: 4px;
  }
}
@media screen and (max-width: 576px) {
  /* .brandCon06 .item--02 .lt {
    padding-top:18px;
  } */

  .brandCon06 .item--02 .brand-intro-main {
    padding-bottom: 30px;
  }

  .brandCon06 .item--02 .brand-intro-main .lt {
    margin-bottom: 18px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-tit {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit {
    margin-top: 6px;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-subtit span {
    font-size: 1.3rem;
  }

  .brandCon06 .item--02 .brand-intro-main .brand-intro-txt {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt {
    padding-top: 24px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt:first-child {
    padding-bottom: 24px;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt .t01 {
    font-size: 1.5rem;
  }

  .brandCon06 .item--02 .brand-intro-sub .txt .t01:last-child {
    padding-top: 24px;
  }

  .brandCon06 .item--02 .brand-intro-sub .img--mobile {
    padding-top: 24px;
  }

  .brandCon06 .item--04 .shop-gallery {
    flex-wrap: wrap;
  }

  .brandCon06 .item--04 .shop-gallery li {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ---------- News ---------- */
.newsCon .board {
  padding-top: 100px;
}

@media screen and (max-width: 1200px) {
  .newsCon .board {
    padding-top: 80px;
  }
}
@media screen and (max-width: 992px) {
  .newsCon .board {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .newsCon .board {
    padding-top: 40px;
  }
}
@media screen and (max-width: 576px) {
}

/* ---------- Recruit ---------- */
/* Talent */
.talentCon .item--01 {
  padding: 100px 0px 150px;
}

.talentCon .item--01 .share-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600 / 1400 * 100%);
  overflow: hidden;
}

.talentCon .item--01 .share-img img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
  transform-origin: top;
  transform: scale(1.1);
  opacity: 0;
}

.talentCon .item--01 .share.aos-animate img {
  transform: scale(1);
  opacity: 1;
}

.talentCon .item--01 .txt {
  margin-top: 100px;
}

.talentCon .item--01 .txt .t01 {
  font-size: 2.4rem;
  line-height: 1.8;
  color: #191919;
}

.talentCon .item--02 {
  position: relative;
  padding: 150px 0px;
}

.talentCon .item--02::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: url("/en/img/sub/recruit/talent/background.png") no-repeat
    center / cover;
  z-index: -1;
}

.talentCon .item--02 .list {
  display: flex;
  margin: -15px;
}

.talentCon .item--02 .list li {
  flex: 1 1 33.33%;
  max-width: 33.33%;
  padding: 15px;
}

.talentCon .item--02 .list .box {
  height: 100%;
  padding: 40px 50px;
  background-color: #fff;
}

.talentCon .item--02 .list .txt .t01 {
  font-size: 2.8rem;
  margin: 60px 0px 40px;
}

.talentCon .item--02 .list .txt .t02 {
  display: flex;
  margin-bottom: 8px;
}

.talentCon .item--02 .list .txt .t02:last-child {
  margin-bottom: 0px;
}

.talentCon .item--02 .list .txt .t02 span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #191919;
}

.talentCon .item--02 .list .txt .t02 span.dot {
  margin-right: 6px;
}

@media screen and (max-width: 1200px) {
  .talentCon .item--01 {
    padding: 80px 0px 120px;
  }

  .talentCon .item--01 .txt {
    margin-top: 80px;
  }

  .talentCon .item--01 .txt .t01 {
    font-size: 2rem;
  }

  .talentCon .item--02 {
    padding: 120px 0px;
  }

  .talentCon .item--02 .list .box {
    padding: 30px 36px;
  }

  .talentCon .item--02 .list .txt .t01 {
    font-size: 2.4rem;
    margin: 40px 0px 30px;
  }

  .talentCon .item--02 .list .txt .t02 span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 992px) {
  .talentCon .item--01 {
    padding: 60px 0px 80px;
  }

  .talentCon .item--01 .txt {
    margin-top: 60px;
  }

  .talentCon .item--02 {
    padding: 80px 0px;
  }

  .talentCon .item--02 .list {
    flex-wrap: wrap;
    margin: -8px;
  }

  .talentCon .item--02 .list .box {
    padding: 24px 30px;
  }

  .talentCon .item--02 .list li {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 8px;
  }

  .talentCon .item--02 .list img {
    width: 66px;
  }

  .talentCon .item--02 .list .txt .t01 {
    margin: 30px 0px 24px;
  }

  .talentCon .item--02 .list .txt .t02 {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 768px) {
  .talentCon .item--01 {
    padding: 40px 0px 60px;
  }

  .talentCon .item--01 .txt {
    margin-top: 40px;
  }

  .talentCon .item--01 .txt .t01 {
    font-size: 1.8rem;
  }

  .talentCon .item--02 {
    padding: 60px 0px;
  }

  .talentCon .item--02 .list .box {
    padding: 24px;
  }

  .talentCon .item--02 .list img {
    width: 56px;
  }

  .talentCon .item--02 .list .txt .t01 {
    font-size: 2rem;
    margin: 24px 0px 18px;
  }

  .talentCon .item--02 .list .txt .t02 span {
    font-size: 1.5rem;
  }

  .talentCon .item--02 .list .txt .t02 span.dot {
    margin-right: 4px;
  }
}
@media screen and (max-width: 576px) {
  .talentCon .item--01 .txt {
    margin-top: 30px;
  }

  .talentCon .item--01 .txt .t01 {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .talentCon .item--02 .list .box {
    padding: 18px;
  }

  .talentCon .item--02 .list .txt .t01 {
    font-size: 1.8rem;
    margin: 18px 0px 12px;
  }

  .talentCon .item--02 .list .txt .t02 span {
    font-size: 1.4rem;
  }

  .talentCon .item--02::after {
    background-position: left 52% center;
  }
}

/* Job */
.jobCon .job-menu {
  display: flex;
  margin: 100px 0px;
  border-radius: 100px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.jobCon .job-menu li {
  flex: 1 1;
  width: 100%;
  text-align: center;
}

.jobCon .job-menu li .button {
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  color: #191919;
  border-radius: 100px;
}

.jobCon .job-menu li.on .button {
  color: #fff;
  background-color: #0068b7;
}

.jobCon .his-list {
  position: relative;
}

.jobCon .job-list li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.jobCon .job-list li.on {
  display: block;
  height: auto;
  position: relative;
  animation: jobcontent-on ease-in-out 0.5s forwards;
}

.jobCon .job-box {
  margin-bottom: 100px;
}

.jobCon .job-box:last-child {
  margin-bottom: 0px;
}

.jobCon .job-part {
  padding: 36px 0px;
  border: 1px solid #d2d2d2;
}

.jobCon .job-part .din {
  align-items: center;
}

.jobCon .job-part .lt {
  width: 340px;
  text-align: center;
}

.jobCon .job-part .lt p {
  font-size: 2.8rem;
  font-weight: 700;
  color: #191919;
}

.jobCon .job-part .lt p span {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
}

.jobCon .job-part .rt {
  width: calc(100% - 340px);
  padding: 0px 50px;
  border-left: 1px solid #bfbfbf;
}

.jobCon .job-part .rt p {
  font-size: 1.8rem;
  line-height: 2;
  color: #191919;
}

.jobCon .job-review {
  margin-top: 30px;
}

.jobCon .job-review .lt {
  width: 330px;
}

.jobCon .job-review .lt .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px;
  background-color: #f5f5f5;
}

.jobCon .job-review .lt .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: #ffffff;
}

.jobCon .job-review .lt .txt {
  text-align: center;
  margin-top: 50px;
}

.jobCon .job-review .lt .txt .t01 {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #191919;
}

.jobCon .job-review .lt .txt .t01 b {
  font-size: 2rem;
  font-weight: 700;
}

.jobCon .job-review .rt {
  width: calc(100% - 330px);
  padding-left: 30px;
}

.jobCon .job-review .rt .review {
  padding: 50px;
  background-color: #f5f5f5;
}

.jobCon .job-review .rt .review-textarea {
  width: 100%;
  height: 370px;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #fff;
}

.jobCon .job-review .rt .review-textarea::-webkit-scrollbar {
  width: 10px;
}

.jobCon .job-review .rt .review-textarea::-webkit-scrollbar-track {
  background-color: #e6e6e6;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

.jobCon .job-review .rt .review-textarea::-webkit-scrollbar-thumb {
  -webkit-border-radius: 0px;
  border-radius: 0px;
  background: #ccc;
}

.jobCon .job-review .rt .review-textarea div {
  width: 100%;
  height: 100%;
  padding: 50px;
}

.jobCon .job-review .rt .review-textarea p {
  font-size: 1.8rem;
  line-height: 2;
  color: #191919;
}

@keyframes jobcontent-on {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 1200px) {
  .jobCon .job-menu {
    margin: 80px 0px;
  }

  .jobCon .job-menu li .button {
    font-size: 1.4rem;
    height: 48px;
  }

  .jobCon .job-box {
    margin-bottom: 80px;
  }

  .jobCon .job-part {
    padding: 30px 0px;
  }

  .jobCon .job-part .lt p {
    font-size: 2.4rem;
  }

  .jobCon .job-part .lt p span {
    font-size: 1.6rem;
  }

  .jobCon .job-part .rt {
    padding: 0px 36px;
  }

  .jobCon .job-part .rt p {
    font-size: 1.6rem;
    line-height: 1.8;
  }

  .jobCon .job-review {
    margin-top: 24px;
  }

  .jobCon .job-review .lt .txt {
    margin-top: 36px;
  }

  .jobCon .job-review .lt .txt .t01 {
    font-size: 1.8rem;
  }

  .jobCon .job-review .lt .txt .t01 b {
    font-size: 2.2rem;
  }

  .jobCon .job-review .rt .review {
    padding: 36px;
  }

  .jobCon .job-review .rt .review-textarea {
    height: 300px;
  }

  .jobCon .job-review .rt .review-textarea div {
    padding: 36px;
  }

  .jobCon .job-review .rt .review-textarea p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
@media screen and (max-width: 992px) {
  .jobCon .job-menu {
    margin: 60px 0px;
  }

  .jobCon .job-box {
    margin-bottom: 60px;
  }

  .jobCon .job-part {
    padding: 24px 0px;
  }

  .jobCon .job-review {
    margin-top: 18px;
  }

  .jobCon .job-review .lt {
    width: 280px;
  }

  .jobCon .job-review .lt .icon {
    width: 160px;
    height: 160px;
  }

  .jobCon .job-review .lt .txt {
    margin-top: 30px;
  }

  .jobCon .job-review .rt {
    width: calc(100% - 280px);
    padding-left: 24px;
  }

  .jobCon .job-part .rt {
    padding: 0px 30px;
  }

  .jobCon .job-review .rt .review {
    padding: 30px;
  }

  .jobCon .job-review .rt .review-textarea div {
    padding: 30px;
  }
}
@media screen and (max-width: 768px) {
  .jobCon .job-menu {
    flex-wrap: wrap;
    margin: 40px 0px;
    border-radius: 0px;
    overflow: hidden;
    /* border:1px solid #ccc; */
  }

  .jobCon .job-menu li {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    overflow: hidden;
  }

  .jobCon .job-menu li .button {
    font-size: 1.4rem;
    height: 45px;
    border-radius: 0px;
  }

  .jobCon .job-box {
    margin-bottom: 40px;
  }

  .jobCon .job-part {
    padding: 18px;
  }

  .jobCon .job-part .din {
    flex-wrap: wrap;
  }

  .jobCon .job-part .lt {
    width: 100%;
  }

  .jobCon .job-part .lt p {
    font-size: 2rem;
  }

  .jobCon .job-part .lt p span {
    font-size: 1.5rem;
  }

  .jobCon .job-part .rt {
    width: 100%;
    border: 0px;
    padding: 12px 0px 0px;
  }

  .jobCon .job-part .rt p {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .jobCon .job-review {
    margin-top: 12px;
  }

  .jobCon .job-review .din {
    flex-wrap: wrap;
  }

  .jobCon .job-review .lt {
    width: 100%;
  }

  .jobCon .job-review .lt .box {
    padding: 24px 18px;
  }

  .jobCon .job-review .lt .icon {
    width: 120px;
    height: 120px;
  }

  .jobCon .job-review .lt .icon img {
    width: 50px;
  }

  .jobCon .job-review .lt .txt {
    margin-top: 24px;
  }

  .jobCon .job-review .lt .txt .t01 {
    font-size: 1.6rem;
  }

  .jobCon .job-review .lt .txt .t01 b {
    font-size: 1.8rem;
  }

  .jobCon .job-review .rt {
    width: 100%;
    padding: 0px;
    padding-top: 18px;
  }

  .jobCon .job-review .rt .review {
    padding: 24px;
  }

  .jobCon .job-review .rt .review-textarea {
    height: 240px;
  }

  .jobCon .job-review .rt .review-textarea div {
    padding: 24px;
  }

  .jobCon .job-review .rt .review-textarea p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 576px) {
  .jobCon .job-menu {
    align-items: start;
  }

  .jobCon .job-menu li {
    height: 50px;
  }

  .jobCon .job-menu li .button {
    height: 100%;
    font-size: 1.2rem;
    line-height: 1.2;
    border: none;
    margin: 0;
    padding: 0;
  }

  .jobCon .job-box {
    margin-bottom: 30px;
  }

  .jobCon .job-part {
    padding: 12px;
  }

  .jobCon .job-part .lt p {
    font-size: 1.8rem;
  }

  .jobCon .job-part .lt p span {
    font-size: 1.4rem;
  }

  .jobCon .job-part .rt {
    padding: 8px 0px 0px;
  }

  .jobCon .job-part .rt p {
    font-size: 1.4rem;
  }

  .jobCon .job-review {
    margin-top: 8px;
  }

  .jobCon .job-review .lt .box {
    padding: 18px 10px;
  }

  .jobCon .job-review .lt .icon {
    width: 100px;
    height: 100px;
  }

  .jobCon .job-review .lt .icon img {
    width: 46px;
  }

  .jobCon .job-review .lt .txt {
    margin-top: 18px;
  }

  .jobCon .job-review .lt .txt .t01 {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .jobCon .job-review .lt .txt .t01 b {
    font-size: 1.4rem;
  }

  .jobCon .job-review .rt .review {
    padding: 18px;
  }

  .jobCon .job-review .rt .review-textarea {
    height: 200px;
  }

  .jobCon .job-review .rt .review-textarea div {
    padding: 18px;
  }

  .jobCon .job-review .rt .review-textarea p {
    font-size: 1.4rem;
  }
}

/* Benefit */
.benefitBanner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(600 / 1920 * 100%);
  overflow: hidden;
  /* height:600px; */
}

.benefitBanner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("/en/img/sub/recruit/benefit/banner.png") no-repeat center /
    cover;
  transition: all cubic-bezier(0.4, 0.38, 0.26, 0.93) 1s;
  transform-origin: top;
  transform: scale(1.1);
  opacity: 0;
}

.benefitBanner.aos-animate::before {
  transform: scale(1);
  opacity: 1;
}

.benefitCon .list {
  display: flex;
  flex-wrap: wrap;
  margin: -70px -10px;
}

.benefitCon .list li {
  flex: 1 1 25%;
  max-width: 25%;
  padding: 70px 10px;
}

.benefitCon .list .box {
  display: flex;
  align-items: center;
  height: 100%;
}

.benefitCon .list .icon img {
  display: block;
}

.benefitCon .list .txt {
  padding-left: 5%;
}

.benefitCon .list .txt .t01 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #0068b7;
  margin-bottom: 20px;
}

.benefitCon .list .txt .t02 {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #191919;
}

@media screen and (max-width: 1200px) {
  .benefitCon .list {
    margin: -40px -6px;
  }

  .benefitCon .list li {
    flex: 1 1 33.33%;
    max-width: 33.33%;
    padding: 40px 16px;
  }

  .benefitCon .list .txt .t01 {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .benefitCon .list .txt .t02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 992px) {
  .benefitCon .list {
    margin: -30px -6px;
  }

  .benefitCon .list li {
    flex: 1 1 50%;
    max-width: 50%;
    padding: 30px 16px;
  }
}
@media screen and (max-width: 768px) {
  .benefitBanner {
    height: 360px;
    padding: 0px;
  }

  .benefitCon .list {
    margin: -24px -6px;
  }

  .benefitCon .list li {
    padding: 24px 6px;
  }

  .benefitCon .list .icon img {
    width: 80px;
  }

  .benefitCon .list .txt .t01 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }

  .benefitCon .list .txt .t02 {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}
@media screen and (max-width: 576px) {
  .benefitBanner {
    height: 210px;
  }

  .benefitCon .list {
    margin: -12px -6px;
  }

  .benefitCon .list li {
    padding: 12px 6px;
  }

  .benefitCon .list .box {
    flex-direction: column;
    text-align: center;
  }

  .benefitCon .list .txt {
    padding-left: 0px;
    padding-top: 12px;
  }

  .benefitCon .list .txt .t01 {
    font-size: 1.5rem;
    margin-bottom: 4px;
  }

  .benefitCon .list .txt .t02 {
    font-size: 1.4rem;
  }
}

/* Guide */
.guideCon .item--02 {
  padding-top: 150px;
}

.guideCon .item-tit {
  font-size: 4.2rem;
  font-weight: 700;
  color: #191919;
  margin-bottom: 100px;
}

.guideCon .guide-method {
  border-top: 2px solid #bfbfbf;
}

.guideCon .guide-method dl {
  display: flex;
  border-bottom: 1px solid #d2d2d2;
}

.guideCon .guide-method dt {
  width: 240px;
  padding: 40px 0px 40px 10px;
}

.guideCon .guide-method dt p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
  color: #191919;
}

.guideCon .guide-method dd {
  width: calc(100% - 240px);
  padding: 40px 0px 40px 30px;
}

.guideCon .guide-method dd p {
  font-size: 2rem;
  line-height: 1.8;
  color: #434343;
  margin-bottom: 50px;
}

.guideCon .guide-method dd p:last-child {
  margin-bottom: 0px;
}

.guideCon .guide-method dd p.icon-txt::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 25px;
  margin-right: 10px;
  background: url("/en/img/sub/recruit/guide/icon.png") no-repeat center;
}

.guideCon .guide-method dd .step_pc {
  display: block;
}

.guideCon .guide-method dd .step_mo {
  display: none;
}

.guideCon .guide-method dd .button {
  font-size: 1.8rem;
  line-height: 1;
  max-width: 185px;
  width: 100%;
  height: 50px;
  border-radius: 100px;
}

.guideCon .guide-link {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.guideCon .guide-link .button {
  max-width: 350px;
  width: 100%;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  margin: 0px 14px;
}

.guideCon .faq-list {
  border-top: 2px solid #bfbfbf;
}

.guideCon .faq-list li {
  cursor: pointer;
  border-bottom: 1px solid #d2d2d2;
}

.guideCon .question {
  display: flex;
  align-items: center;
  padding: 40px 10px;
}

.guideCon .question-icon {
  display: block;
  width: 18px;
  height: 11px;
}

.guideCon .question-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("/en/img/sub/recruit/guide/arrow.png") no-repeat center;
  transition: all 0.3s ease;
}

.guideCon .question-tit {
  display: block;
  width: calc(100% - 18px);
  font-size: 2rem;
  font-weight: 700;
  color: #191919;
  margin-right: 20px;
  transition: all 0.3s ease;
}

.guideCon .answer {
  max-height: 0;
  background-color: #f5f5f5;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.guideCon .answer-txt {
  padding: 40px;
  border-top: 1px solid #d2d2d2;
}

.guideCon .answer-txt p {
  font-size: 2rem;
  color: #434343;
}

.guideCon .question.active .question-icon::before {
  background-image: url("/en/img/sub/recruit/guide/arrow__on.png");
  transform: rotate(360deg);
}

.guideCon .question.active .question-tit {
  color: #0068b7;
}

/* Guide Modal */
.guide-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  z-index: 9999999;
  padding: 15px;
  display: none;
}

.guide-modal.open {
  visibility: visible;
  display: block;
}

.guide-modal .modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  width: auto;
  height: 100%;
  min-height: calc(100% - 20px);
  max-height: calc(100% - 20px);
}

.guide-modal .modal-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 1220px;
  width: 100%;
  max-height: none;
  background: #ffffff;
  padding: 60px;
}

.guide-modal .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("/en/img/sub/recruit/guide/modal_close.png") no-repeat
    center;
  z-index: 10;
}

.guide-modal .modal-head {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
  pointer-events: none;
}

.guide-modal .modal-head p {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333333;
}

.guide-modal .modal-body .modal-textarea {
  width: 100%;
  height: 480px;
  background-color: #fff;
  border: 1px solid #bfbfbf;
  overflow-x: hidden;
  overflow-y: auto;
}

.guide-modal .modal-body .textarea-inner {
  height: 100%;
  padding: 20px;
}

.guide-modal .textarea-check {
  margin-top: 50px;
}

.guide-modal .textarea-check .din {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 50px;
}

.guide-modal .textarea-check .lt * {
  font-size: 1.8rem;
  color: #333;
}

.guide-modal .textarea-check .lt label {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.guide-modal .textarea-check .lt input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

.guide-modal .textarea-check .lt i {
  display: block;
  width: 20px;
  height: 20px;
  background-size: auto 20px;
  background-repeat: no-repeat;
  background-image: url("/en/img/sub/recruit/guide/check.png");
  margin-right: 6px;
}

.guide-modal .textarea-check .lt input[type="checkbox"]:checked ~ i {
  background-image: url("/en/img/sub/recruit/guide/check_on.png");
}

.guide-modal .textarea-check .rt {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.guide-modal .textarea-check .button {
  font-size: 1.8rem;
  line-height: 1;
  width: 180px;
  height: 50px;
  border-radius: 100px;
}

.guide-modal .textarea-check .rt.active {
  opacity: 1;
}

/* .modal_body {
  height:100%;
  padding: 40px;
  overflow-x: hidden;
  overflow-y: auto;
}

.modal_body p {
  font-size:1.4rem;
  line-height:1.4;
}

.modal.open {
  display:block;
  visibility: visible;
} */

@media (max-width: 1200px) {
  .guide-modal .modal-inner {
    padding: 40px;
  }

  .guide-modal .modal-head {
    margin-bottom: 30px;
  }

  .guide-modal .modal-head p {
    font-size: 2.4rem;
  }

  .guide-modal .modal-body .textarea-inner p {
    font-size: 1.5rem;
  }

  .guide-modal .textarea-check {
    margin-top: 36px;
  }

  .guide-modal .textarea-check .din {
    height: 42px;
  }

  .guide-modal .textarea-check .lt * {
    font-size: 1.6rem;
  }

  .guide-modal .textarea-check .button {
    font-size: 1.6rem;
    height: 42px;
  }
}
@media (max-width: 1024px) {
  .guide-modal .modal-inner {
    padding: 30px;
  }

  .guide-modal .modal-head {
    margin-bottom: 24px;
  }

  .guide-modal .textarea-check {
    margin-top: 30px;
  }

  .guide-modal .textarea-check .button {
    width: 165px;
  }
}
@media (max-width: 768px) {
  .guide-modal .modal-inner {
    padding: 24px;
  }

  .guide-modal .modal-close {
    top: 14px;
    right: 14px;
  }

  .guide-modal .modal-head {
    margin-bottom: 18px;
  }

  .guide-modal .modal-head p {
    font-size: 2rem;
  }

  .guide-modal .modal-body .modal-textarea {
    height: 320px;
  }

  .guide-modal .modal-body .textarea-inner {
    padding: 12px;
  }

  .guide-modal .modal-body .textarea-inner p {
    font-size: 1.4rem;
  }

  .guide-modal .textarea-check {
    margin-top: 24px;
  }

  .guide-modal .textarea-check .din {
    height: 38px;
  }

  .guide-modal .textarea-check .lt * {
    font-size: 1.4rem;
  }

  .guide-modal .textarea-check .lt i {
    width: 16px;
    height: 16px;
    background-size: auto 16px;
    /* margin-right:3px; */
  }

  .guide-modal .textarea-check .button {
    font-size: 1.5rem;
    width: 155px;
    height: 38px;
  }
}
@media (max-width: 500px) {
  .guide-modal .modal-inner {
    padding: 18px 12px;
  }

  .guide-modal .modal-close {
    width: 16px;
    height: 16px;
    background-size: auto 16px;
  }

  .guide-modal .modal-head {
    margin-bottom: 12px;
  }

  .guide-modal .modal-head p {
    font-size: 1.8rem;
  }

  .guide-modal .modal-body .modal-textarea {
    height: 240px;
  }

  .guide-modal .modal-body .textarea-inner {
    padding: 8px;
  }

  .guide-modal .modal-body .textarea-inner p {
    font-size: 1.3rem;
  }

  .guide-modal .textarea-check {
    margin-top: 18px;
  }

  .guide-modal .textarea-check .din {
    height: 32px;
  }

  .guide-modal .textarea-check .lt * {
    font-size: 1.3rem;
  }

  .guide-modal .textarea-check .button {
    font-size: 1.4rem;
    width: 145px;
    height: 32px;
  }
}

@media screen and (max-width: 1200px) {
  .guideCon .item--02 {
    padding-top: 120px;
  }

  .guideCon .item-tit {
    font-size: 3.2rem;
    margin-bottom: 80px;
  }

  .guideCon .guide-method dt {
    width: 200px;
    padding: 30px 0px 30px 10px;
  }

  .guideCon .guide-method dt p {
    font-size: 1.8rem;
  }

  .guideCon .guide-method dd {
    width: calc(100% - 200px);
    padding: 30px 0px 30px 24px;
  }

  .guideCon .guide-method dd p {
    font-size: 1.8rem;
    margin-bottom: 36px;
  }

  .guideCon .guide-method dd .button {
    max-width: 165px;
    height: 42px;
    font-size: 1.6rem;
  }

  .guideCon .guide-link {
    margin-top: 80px;
  }

  .guideCon .guide-link .button {
    max-width: 280px;
    height: 60px;
    font-size: 1.8rem;
    margin: 0px 8px;
  }

  .guideCon .question {
    padding: 30px 10px;
  }

  .guideCon .question-tit {
    font-size: 1.8rem;
  }

  .guideCon .answer-txt {
    padding: 30px;
  }

  .guideCon .answer-txt p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 992px) {
  .guideCon .item--02 {
    padding-top: 80px;
  }

  .guideCon .item-tit {
    margin-bottom: 60px;
  }

  .guideCon .guide-method dt {
    padding: 24px 0px 24px 6px;
  }

  .guideCon .guide-method dd {
    width: calc(100% - 200px);
    padding: 24px 0px 24px 18px;
  }

  .guideCon .guide-link {
    margin-top: 60px;
  }

  .guideCon .question {
    padding: 24px 10px;
  }

  .guideCon .answer-txt {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .guideCon .item--02 {
    padding-top: 60px;
  }

  .guideCon .item-tit {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }

  .guideCon .guide-method dl {
    flex-wrap: wrap;
  }

  .guideCon .guide-method dt {
    width: 100%;
    padding: 18px;
    border-bottom: 1px solid #dfdfdf;
  }

  .guideCon .guide-method dt p {
    font-size: 1.6rem;
    line-height: 1;
  }

  .guideCon .guide-method dd {
    width: 100%;
    padding: 18px;
  }

  .guideCon .guide-method dd p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .guideCon .guide-method dd p.icon-txt::before {
    width: 18px;
    background-size: 18px auto;
    margin-right: 6px;
  }

  .guideCon .guide-method dd .step_pc {
    display: none;
  }

  .guideCon .guide-method dd .step_mo {
    display: block;
    margin: 0 auto;
  }

  .guideCon .guide-method dd .button {
    max-width: 155px;
    height: 38px;
    font-size: 1.5rem;
  }

  .guideCon .guide-link {
    margin-top: 40px;
  }

  .guideCon .guide-link .button {
    max-width: 220px;
    height: 50px;
    font-size: 1.6rem;
    margin: 0px 4px;
  }

  .guideCon .question {
    padding: 18px 10px;
  }

  .guideCon .question-tit {
    font-size: 1.6rem;
  }

  .guideCon .answer-txt {
    padding: 18px;
  }

  .guideCon .answer-txt p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .guideCon .item-tit {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .guideCon .guide-method dt {
    padding: 12px;
  }

  .guideCon .guide-method dt p {
    font-size: 1.5rem;
  }

  .guideCon .guide-method dd {
    padding: 12px;
  }

  .guideCon .guide-method dd p {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .guideCon .guide-method dd .button {
    font-size: 1.4rem;
  }

  .guideCon .guide-link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .guideCon .guide-link .button {
    max-width: 100%;
    height: 42px;
    font-size: 1.5rem;
    margin: 2px 0px;
  }

  .guideCon .question {
    padding: 12px 6px;
  }

  .guideCon .question-tit {
    font-size: 1.5rem;
  }

  .guideCon .answer-txt {
    padding: 12px;
  }

  .guideCon .answer-txt p {
    font-size: 1.5rem;
  }
}

/* Membership*/

.commu__membership,
#membership,
.commu__membership::after,
#membership::after,
.commu__membership::before,
#membership::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --main-color1: #8bcddd;
  --main-color1-1: #ebf0f1;
  --main-color1-2: #e7eff4;
  --main-color2: #333;
  --main-color3: #888;
  --bg-color: #fbfbfb;
  --bb-color: #ccc;
  --br-color: #eee;
  --er-color: #e50000;
}

/* Membership Stonhenge*/
[data-mole] {
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transition: 0.85s cubic-bezier(0.5, 0, 0.175, 1);
}

[data-mole="on"] {
  opacity: 1;
  transform: translate(0);
}

.commu__membership {
  width: 100%;
  padding: 0 15px 60px;
  margin: 0 auto;
  position: relative;
}
.layout_fix,
.layout_between {
  max-width: 1304px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
.commu__membership .visual_area {
  max-width: 1264px;
  padding: 72px 0;
  margin: 0 auto 80px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #fff;
  transition: border 0.75s cubic-bezier(0.5, 0, 0.175, 1);
}
.commu__membership .visual_area.on {
  border: 1px solid var(--br-color);
}
.commu__membership .visual_area::before {
  content: "";
  width: 100%;
  height: 280px;
  background-color: var(--main-color1);
  position: absolute;
  top: -380px;
  opacity: 1;
  right: 0;
  left: 0;
  z-index: -1;
  transition: 0.85s 0.1s cubic-bezier(0.5, 0, 0.175, 1);
}
.commu__membership .visual_area.on::before {
  top: -80px;
  background-color: var(--main-color1);
  opacity: 1;
}
.commu__membership .visual_area h2 {
  overflow: hidden;
}
.commu__membership .visual_area h2 img {
  height: 56px;
  position: relative;
  top: 110px;
  transition: 0.85s 0.1s cubic-bezier(0.5, 0, 0.175, 1);
}
.commu__membership .visual_area.on h2 img {
  top: 0;
}
.commu__membership .visual_area .txt {
  margin-top: 32px;
  line-height: 1.68;
  font-size: 16px;
  color: var(--main-color2);
  position: relative;
  top: 16px;
  opacity: 0;
  transition: 0.85s 0.1s cubic-bezier(0.5, 0, 0.175, 1);
}
.commu__membership .visual_area.on .txt {
  top: 0;
  opacity: 1;
}
.membership_info {
  margin-bottom: 80px;
}
.commu__membership .heading {
  margin-bottom: 25px;
}
.commu__membership .heading p {
  margin-bottom: 24px;
}
.commu__membership .heading h2.tit {
  line-height: 34px;
  font-size: 24px;
  font-weight: 300;
  color: var(--main-color2);
}
.commu__membership .heading h2.tit::before {
  content: "";
  width: 120px;
  height: 34px;
  margin-right: 12px;
  background: transparent
    url("/en/img/sub/membership/stonhenge/logo_family_stg.png") no-repeat
    center/contain;
  vertical-align: bottom;
  display: inline-flex;
}
.commu__membership .membership_cont .heading h2.tit::before {
  background-image: url("/en/img/sub/membership/stonhenge/logo_family.png");
}
.commu__membership .grade_list01 {
  margin-left: -20px;
  display: flex;
  flex-wrap: wrap;
}
.commu__membership .grade_list01 > li {
  min-width: 190px;
  height: 340px;
  padding: 30px 15px;
  margin-left: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: var(--main-color2);
  position: relative;
  flex: 1;
  transition: 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.commu__membership .grade_list01 > li:hover {
  transform: translate(0, -5px);
}
.commu__membership .grade_list01 > li.grade1 {
  background-image: url("/en/img/sub/membership/stonhenge/bg_grade1.png");
}
.commu__membership .grade_list01 > li.grade2 {
  background-image: url("/en/img/sub/membership/stonhenge/bg_grade2.png");
}
.commu__membership .grade_list01 > li.grade3 {
  background-image: url("/en/img/sub/membership/stonhenge/bg_grade3.png");
}
.commu__membership .grade_list01 > li.grade4 {
  background-image: url("/en/img/sub/membership/stonhenge/bg_grade4.png");
}
.commu__membership .grade_list01 > li.grade5 {
  background-image: url("/en/img/sub/membership/stonhenge/bg_grade5.png");
  color: #fff;
}
.commu__membership .grade_list01 > li.grade5::after {
  content: "";
  width: 32px;
  height: 24px;
  background: transparent
    url("/en/img/sub/membership/stonhenge/icon_family.png") no-repeat
    center/contain;
  position: absolute;
  top: 36px;
  right: 24px;
  display: inline-block;
}
.commu__membership .grade_list01 h3 {
  height: 36px;
  font-size: 24px;
  font-weight: 400;
}
.commu__membership .grade_list01 > li.grade5 h3::after {
  content: "";
  width: 24px;
  height: 16px;
  margin-left: 4px;
  background: transparent
    url("/en/img/sub/membership/stonhenge/icon_family.png") no-repeat
    center/contain;
  display: none;
}
.commu__membership .grade_list01 h4 {
  height: 50px;
  margin-top: 8px;
  line-height: 1.42;
  font-size: 18px;
  font-weight: 400;
}
.commu__membership .grade_list01 .block {
  line-height: 1.8;
  font-size: 13px;
  display: block;
}
.commu__membership .grade_list01 dl {
  position: relative;
  top: 40px;
  left: 4px;
}
.commu__membership .grade_list01 > li .commu__membership .grade_list dt {
  height: 18px;
  line-height: 18px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
}
.commu__membership .grade_list01 dt::before {
  content: "";
  width: 24px;
  height: 18px;
  margin-right: 6px;
  background-image: url("/en/img/sub/membership/stonhenge/icon_coupon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  vertical-align: bottom;
}
.commu__membership .grade_list01 .grade5 dt::before {
  filter: invert(1) brightness(100);
}
.commu__membership .grade_list01 dd {
  padding-left: 10px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
}
.commu__membership .grade_list01 dd::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}
.commu__membership .grade_list02 {
  display: none;
}
.commu__membership .grade_list02 > li {
  font-size: 0;
  color: var(--main-color2);
  position: relative;
  flex: 1;
}
.commu__membership .grade_list02 > li > img {
  width: 100%;
  min-height: 160px;
}
.commu__membership .grade_list02 > li:nth-child(n + 4) > img {
  min-height: 176px;
}
.commu__membership .grade_list02 > li + li {
  margin-top: 15px;
}
.commu__membership .grade_list02 .info_head {
  height: 31%;
  padding: 0 9%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.commu__membership .grade_list02 > li:nth-child(2) .info_head {
  height: 34%;
}
.commu__membership .grade_list02 .info_body {
  height: 66%;
  padding: 5% 9% 0;
  position: absolute;
  right: 0;
  bottom: 2%;
  left: 0;
  font-size: inherit;
  display: flex;
}
.commu__membership .grade_list02 > li:nth-child(2) .info_body {
  height: 62%;
}
.commu__membership .grade_list02 > li.grade5 {
  color: #fff;
}
.commu__membership .grade_list02 h3 {
  font-size: 26px;
  font-weight: 400;
}
.commu__membership .grade_list02 > li.grade5 h3::after {
  content: "";
  width: 24px;
  height: 16px;
  margin-left: 4px;
  background: transparent
    url("/en/img/sub/membership/stonhenge/m_icon_family.png") no-repeat
    center/contain;
  display: inline-block;
}
.commu__membership .grade_list02 h4 {
  font-size: 15px;
  font-weight: 400;
}
.commu__membership .grade_list02 dt {
  height: 16px;
  line-height: 18px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
}
.commu__membership .grade_list02 dt::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-right: 6px;
  background-image: url("/en/img/sub/membership/stonhenge/m_icon_coupon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  vertical-align: bottom;
}
.commu__membership .grade_list02 .grade5 dt::before {
  filter: invert(1) brightness(100);
}
.commu__membership .grade_list02 dd {
  padding-left: 10px;
  margin-bottom: 2px;
  font-size: 17px;
  font-weight: 400;
  position: relative;
}
.commu__membership .grade_list02 dd::before {
  content: "-";
  position: absolute;
  top: 2px;
  left: 0;
}
.commu__membership .grade_help {
  margin-top: 24px;
  font-size: 15px;
}
.commu__membership .grade_help li {
  margin-bottom: 5px;
  line-height: 1.48;
  font-weight: 300;
  color: var(--main-color3);
}
.commu__membership .grade_help li::before {
  content: "·";
  margin-right: 8px;
}
.commu__membership .membership_cont [class^="grade_"] .heading {
  padding-top: 60px;
}
.commu__membership .dash_list li {
  margin-bottom: 8px;
  line-height: 1.48;
  font-size: 16px;
  font-weight: 300;
  color: var(--main-color2);
}
.commu__membership .dash_list li::before {
  content: "-";
  margin-right: 8px;
}
@media (max-width: 1200px) {
  .commu__membership .grade_list01 {
    width: 70%;
    margin: 0 auto;
  }
  .commu__membership .grade_list01 > li {
    max-width: 200px;
    margin-bottom: 20px;
    height: 350px;
  }
}
@media (max-width: 1024px) {
  .commu__membership .grade_list01 {
    width: 90%;
  }
  .commu__membership .grade_list01 h3 {
    font-size: 20px;
  }
  .commu__membership .grade_list01 h4 {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .layout_fix {
    min-width: 320px;
    max-width: 767px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
  }
  .commu__membership {
    padding: 20px 0 40px;
    margin: 0 auto;
    position: relative;
  }
  .commu__membership .visual_area {
    width: calc(100% - 40px);
    max-width: 727px;
    padding: 36px 0 32px;
    margin: 2px auto 35px;
    text-align: center;
    background-color: #fff;
    border: 1px solid var(--br-color);
  }
  .commu__membership .heading {
    margin: 0;
  }
  .commu__membership .heading h2.tit::before {
    display: none;
  }
  .commu__membership .visual_area::before {
    content: "";
    width: 100%;
    height: 128px;
    background-color: var(--main-color1);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: -1;
  }
  .commu__membership .visual_area h2 img {
    height: auto;
    max-width: 160px;
  }
  .commu__membership .visual_area .txt {
    padding: 0 10px;
    margin-top: 24px;
    line-height: 1.6;
    font-size: 12px;
    color: var(--main-color3);
    position: relative;
    top: 0;
    word-break: keep-all;
  }
  .commu__membership .heading p {
    margin-bottom: 4px;
    font-size: 11px;
    word-break: keep-all;
  }
  .commu__membership .heading h2.tit {
    margin-bottom: 12px;
    line-height: 1.58;
    text-align: left;
    font-size: 16px;
    font-weight: 300;
    color: var(--main-color2);
    word-break: keep-all;
  }
  .commu__membership .grade_list01 {
    display: none;
  }
  .commu__membership .grade_list02 {
    display: block;
  }
  .commu__membership .grade_help {
    margin-top: 24px;
    padding-left: 10px;
    text-indent: -10px;
  }
  .commu__membership .grade_help li {
    margin-bottom: 4px;
    line-height: 1.58;
    font-size: 12px;
    font-weight: 300;
    color: var(--main-color3);
    word-break: keep-all;
  }
  .commu__membership .grade_help li::before {
    content: "·";
    margin-right: 6px;
  }
  .commu__membership .membership_cont [class^="grade_"] .heading {
    padding-top: 30px;
  }
  .commu__membership .dash_list li {
    margin-bottom: 4px;
    margin-left: 12px;
    line-height: 1.48;
    font-size: 13px;
    font-weight: 300;
    text-indent: -12px;
    word-break: keep-all;
  }
  .commu__membership .dash_list li::before {
    content: "-";
    margin-right: 8px;
  }
}
@media (max-width: 500px) {
  .membership_info {
    margin-bottom: 50px;
  }
  .commu__membership .grade_list02 h3 {
    font-size: 20px;
  }
  .commu__membership .grade_list02 h4 {
    font-size: 14px;
  }
  .commu__membership .grade_list02 .info_body {
    padding: 2% 7% 0;
  }
  .commu__membership .grade_list02 dt {
    font-size: 15px;
  }
  .commu__membership .grade_list02 dd {
    font-size: 14px;
  }

  .commu__membership .grade_list02 > li {
    width: 100%;
    height: 265px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 265px;
  }

  .commu__membership .grade_list02 .grade1 {
    background-image: url("/en/img/sub/membership/stonhenge/m_bg_grade1.png");
  }

  .commu__membership .grade_list02 .grade2 {
    background-image: url("/en/img/sub/membership/stonhenge/m_bg_grade2.png");
  }

  .commu__membership .grade_list02 .grade3 {
    background-image: url("/en/img/sub/membership/stonhenge/m_bg_grade3.png");
  }

  .commu__membership .grade_list02 .grade4 {
    background-image: url("/en/img/sub/membership/stonhenge/m_bg_grade4.png");
  }

  .commu__membership .grade_list02 .grade5 {
    background-image: url("/en/img/sub/membership/stonhenge/m_bg_grade5.png");
  }

  .commu__membership .grade_list02 > li > img {
    display: none;
  }
}

/*Membership Rosmont*/
#membership {
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.62;
}
#membership:before {
  content: "";
  display: inline-block;
  background-color: #b93544;
  width: 100dvw;
  height: 256px;
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#membership .mem_tit {
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 20px;
}
#membership .mem_tit:before {
  content: "";
  display: inline-block;
  width: calc(250px * 28 / 55);
  height: 28px;
  vertical-align: text-top;
  margin-right: 15px;
  background-image: url("/en/img/sub/membership/rosemont/membership_r_logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

#membership .list_bar li:before {
  content: "-";
  margin-right: 5px;
}
#membership .mem_header {
  padding: 75px 0;
  margin-top: 80px;
  text-align: center;
  border: 1px solid #eee;
  background-color: #fff;
  overflow: hidden;
}
#membership .mem_header > div {
  display: inline-block;
  overflow: hidden;
}
#membership .mem_header > div img {
  transform: translateY(100%);
  opacity: 0;
  transition: 0.5s;
  height: 56px;
}
#membership.on .mem_header > div img {
  transform: translateY(0);
  opacity: 1;
}
#membership .mem_header p {
  margin-top: 30px;
  transform: translateY(calc(100% + 80px));
  opacity: 0;
  transition: 0.8s;
  transition-delay: 0.3s;
}
#membership.on .mem_header p {
  transform: translateY(0);
  opacity: 1;
}

#membership .mem_sec {
  margin: 80px 0;
  position: relative;
}

#membership .mem_sec:has(.gradeArea01) p:not(.mem_tit) {
  margin-bottom: 20px;
}
#membership .mem_sec .gradeArea01 {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  flex-wrap: wrap;
}
#membership .mem_sec .gradeArea01 .grade {
  min-width: 220px;
  max-width: 220px;
  opacity: 0;
  transition: 0.7s;
  position: relative;
  top: -80px;
  margin-right: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url("/en/img/sub/membership/rosemont/grade_01.png");
  background-position: center;
  background-size: cover;
  flex: 1;
  height: 360px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  transition-delay: 0.4s;
}
#membership .mem_sec .gradeArea01 .grade:hover {
  transform: translate(0, -5px);
}
#membership .mem_sec.active .gradeArea01 .grade {
  opacity: 1;
  top: 0;
}
#membership .mem_sec .gradeArea01 .grade .grade_name h4 {
  font-size: 24px;
  font-weight: 400;
}
#membership .mem_sec .gradeArea01 .grade .grade_name p span {
  font-size: 14px;
  display: block;
}
#membership .mem_sec .gradeArea01 .grade .grade_cont {
  margin-top: 62px;
}
#membership .mem_sec .gradeArea01 .grade .grade_cont .coupon-package {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 15px;
  font-size: 16px;
}

#membership .mem_sec .gradeArea01 .grade .grade_cont .coupon-package:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 18px;
  background-image: url("/en/img/sub/membership/rosemont/coupon_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
}
#membership .mem_sec .gradeArea01 .grade ul li {
  font-size: 14px;
  text-indent: -10px;
  padding-left: 10px;
}
#membership .mem_sec .gradeArea01 .grade.grade02 {
  background-image: url("/en/img/sub/membership/rosemont/grade_02.png");
  transition-delay: 0.7s;
}
#membership .mem_sec .gradeArea01 .grade.grade03 {
  background-image: url("/en/img/sub/membership/rosemont/grade_03.png");
  transition-delay: 1s;
}
#membership .mem_sec .gradeArea01 .grade.grade04 {
  background-image: url("/en/img/sub/membership/rosemont/grade_04.png");
  transition-delay: 1.3s;
}

#membership .mem_sec .gradeArea01 .grade.grade05 {
  margin: 0;
  background-image: url("/en/img/sub/membership/rosemont/grade_05.png");
  color: #fff;
  transition-delay: 1.6s;
}
#membership .mem_sec .gradeArea01 .grade.grade05 .grade_cont .coupon:before {
  filter: invert(1);
}
#membership .mem_sec .gradeArea01 .grade.grade05 .grade_name h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#membership .mem_sec .gradeArea01 .grade.grade05 .grade_name h4:after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 24px;
  background-image: url("/en/img/sub/membership/membership_crown.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 8px;
}
#membership .mem_sec:has(.gradeArea02) p:not(.mem_tit) {
  margin-bottom: 5px;
  font-size: 18px;
}
#membership .mem_sec .gradeArea02 {
  font-size: 14px;
  margin-top: 10px;
  display: none;
}
#membership .mem_sec .gradeArea02 .grade {
  position: relative;
  margin-bottom: 20px;
}
#membership .mem_sec .gradeArea02 .grade:not(.grade1) {
  opacity: 0;
  top: -20px;
  transition: 0.6s;
}
#membership .mem_sec .gradeArea02 .grade.active {
  opacity: 1;
  top: 0;
}
#membership .mem_sec .gradeArea02 .grade .imgArea img {
  width: 100%;
}
#membership .mem_sec .gradeArea02 .grade .txtArea {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 10%;
  width: 100%;
}
#membership .mem_sec .gradeArea02 .grade .grade_name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  padding: 7% 0;
}
#membership .mem_sec .gradeArea02 .grade .grade_name h4 {
  font-size: 26px;
  font-weight: 400;
}
#membership .mem_sec .gradeArea02 .grade .grade_name p {
  font-size: 16px;
  font-weight: 300;
}

#membership .mem_sec .gradeArea02 .grade .grade_cont {
  margin-top: 10%;
}
#membership .mem_sec .gradeArea02 .grade .grade_cont .coupon-package {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 16px;
}

#membership .mem_sec .gradeArea02 .grade .grade_cont .coupon-package:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 13px;
  background-image: url("/en/img/sub/membership/rosemont/coupon_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 5px;
}

#membership .mem_sec .gradeArea02 .grade ul li {
  font-size: 17px;
  text-indent: -10px;
  padding-left: 10px;
  line-height: 1.5;
}
#membership .mem_sec .gradeArea02 .grade.grade05 {
  color: #fff;
}
#membership .mem_sec .gradeArea02 .grade.grade05 .grade_name h4:after {
  content: "";
  display: inline-block;
  width: 21px;
  height: 18px;
  background-image: url("/en/img/sub/membership/membership_crown.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  vertical-align: top;
  margin-left: 8px;
}
#membership .mem_sec .gradeArea02 .grade.grade05 .grade_cont .coupon:before {
  filter: invert(1) brightness(100);
}
#membership .mem_sec .basic_list {
  color: #999;
  margin: 30px 0 0;
  font-size: 14px;
}
#membership .mem_sec .basic_list li {
  display: flex;
  align-items: center;
  line-height: 2.2;
}
#membership .mem_sec .basic_list li:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  background-color: #888888;
  border-radius: 10px;
  margin-right: 10px;
}
#membership .mem_sec .basic_list img {
  margin-right: 10px;
  width: 18px;
}
#membership .mem_sec .gColumn > a {
  width: 360px;
  margin-top: 90px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 49px;
}
#membership .mem_sec .gColumn > a:after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: 0.5s;
}
#membership .mem_sec .gColumn > a:hover:after {
  opacity: 1;
  margin-left: 15px;
  width: 8px;
  height: 14px;
  background-image: url("./image/main_swiper_next_pink.png");
}

#membership .mem_sec02 {
  margin: 0 auto 190px;
}

@media (max-width: 1200px) {
  #membership .mem_sec .gradeArea01 {
    width: 80%;
    margin: 0 auto;
    justify-content: inherit;
  }
  #membership .mem_sec .gradeArea01 .grade {
    max-width: 200px;
    margin-bottom: 20px;
    padding: 25px 15px;
    height: 330px;
  }
  #membership .mem_sec .gradeArea01 .grade .grade_name h4 {
    font-size: 20px;
  }

  #membership .mem_sec .gradeArea01 .grade .grade_cont {
    margin-top: 25px;
  }

  #membership .mem_sec .gradeArea01 .grade .grade_cont .coupon-package {
    font-size: 15px;
  }

  #membership .mem_sec:has(.gradeArea02) p:not(.mem_tit) {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  #membership .mem_sec .gradeArea01 {
    width: 100%;
  }

  .commu__membership .grade_list01 h3 {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .membership_wrap #wrap #container {
    padding-top: 0;
  }

  #membership:before {
    width: 100%;
    height: 140px;
    top: -45px;
  }
  #membership .mem_tit {
    font-size: 18px;
    font-weight: 400;
    padding-bottom: 10px;
    line-height: 1.5;
  }
  #membership .mem_tit:before {
    display: none;
  }
  #membership .list_bar li:before {
    content: "-";
    margin-right: 5px;
  }

  #membership .mem_header {
    padding: 35px 20px;
    text-align: center;
    border: 1px solid #eee;
    background-color: #fff;
    margin-top: 45px;
    font-size: 12px;
  }
  #membership .mem_header > div {
    display: inline-block;
    overflow: hidden;
  }
  #membership .mem_header > div img {
    max-width: 190px;
    max-height: 40px;
    transform: translateY(100%);
    opacity: 0;
    transition: 0.5s;
  }
  #membership.on .mem_header > div img {
    transform: translateY(0);
    opacity: 1;
  }
  #membership .mem_header p {
    margin-top: 20px;
    line-height: 1.5;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: 0.8s;
    transition-delay: 0.3s;
    word-break: keep-all;
  }
  #membership.on .mem_header p {
    transform: translateY(0);
    opacity: 1;
  }

  #membership .mem_sec {
    margin: 35px 0 100px 0;
    position: relative;
  }
  #membership .mem_sec .gradeArea01 {
    display: none;
  }
  #membership .mem_sec .gradeArea02 {
    display: block;
  }

  #membership .mem_sec .basic_list {
    color: #999;
    font-size: 12px;
  }
  #membership .mem_sec .basic_list li {
    line-height: 1.5;
    text-indent: 0px;
    padding-left: 9px;
    margin-bottom: 5px;
    position: relative;
  }
  #membership .mem_sec .basic_list li:before {
    content: "";
    display: inline-block;
    width: 2px;
    height: 2px;
    background-color: #888888;
    border-radius: 10px;
    margin-right: 6px;
    position: absolute;
    top: 8px;
    left: 0;
  }
  #membership .mem_sec .basic_list img {
    max-width: 15px;
    margin-right: 10px;
    vertical-align: middle;
  }
  #membership .mem_sec .gColumn > a {
    margin-top: 50px;
  }
  #membership .mem_sec02 {
    margin: 0 auto 100px;
  }

  #membership .mem_sec .gradeArea02 .grade .grade_cont .coupon {
    font-size: 15px;
  }
}

@media (max-width: 500px) {

  /* #membership .mem_sec .gradeArea02 .grade {
    width: 100%;
    padding: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: fit-content;
  }

  #membership .mem_sec .gradeArea02 .grade01 {
    background-image: url("/en/img/sub/membership/rosemont/m_grade_01_big.png");
  }

  #membership .mem_sec .gradeArea02 .grade02 {
    background-image: url("/en/img/sub/membership/rosemont/m_grade_02.png");
  }

  #membership .mem_sec .gradeArea02 .grade03 {
    background-image: url("/en/img/sub/membership/rosemont/m_grade_03_big.png");
  }

  #membership .mem_sec .gradeArea02 .grade04 {
    background-image: url("/en/img/sub/membership/rosemont/m_grade_04.png");
  }

  #membership .mem_sec .gradeArea02 .grade05 {
    background-image: url("/en/img/sub/membership/rosemont/m_grade_05.png");
  }

  #membership .mem_sec .gradeArea02 .grade .txtArea {
    position: static;
  }

  #membership .mem_sec .gradeArea02 .imgArea {
    display: none; 
  }*/

  #membership .mem_sec .gradeArea02 .imgArea {
    display: block;
    height: 240px; 
  }

  #membership .mem_sec .gradeArea02 .imgArea img {
    height: 100%;
  }

  #membership .mem_sec {
    margin: 35px 0 50px;
  }
  #membership .mem_tit {
    font-size: 16px;
  }
  #membership .mem_sec:has(.gradeArea02) p:not(.mem_tit) {
    font-size: 11px;
  }

	#membership .mem_sec .gradeArea02 .grade .grade_cont {
    margin-top: 15px;
		padding-top:20px;
  }

  #membership .mem_sec .gradeArea02 .grade .grade_name p {
    font-size: 14px;
  }
  #membership .mem_sec .gradeArea02 .grade ul li {
    font-size: 14px;
  }
  #membership .mem_sec .gradeArea02 .grade .grade_name h4 {
    font-size: 20px;
  }
  #membership .mem_sec .gradeArea02 .grade .grade_cont .coupon-package {
    font-size: 15px;
  }

  #membership .mem_sec .gradeArea02 .grade02 .grade_cont {
		padding-top:30px;
	}
}
/* Membership more button */
.mem_more_btn {
  display: block;
  width: 150px;
  margin: 0 auto;
  padding: 10px 0;
  border-radius: 25px;
  background-color: #fff;
  text-align: center;
  transition: 0.2s ease-out;
}

.mem_more_btn.m_r_btn {
  border: 1px solid #b93544;
  color: #b93544;
}
.mem_more_btn.m_r_btn:hover {
  background-color: #b93544;
  color: #fff;
  font-weight: 600;
}

.mem_more_btn.m_s_btn {
  margin-bottom: 130px;
  border: 1px solid #8bcddd;
  color: #8bcddd;
}
.mem_more_btn.m_s_btn:hover {
  background-color: #8bcddd;
  color: #fff;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .mem_more_btn.m_s_btn {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .mem_more_btn {
    width: 130px;
    padding: 8px 0;
    font-size: 14px;
  }
  .mem_more_btn.m_s_btn {
    margin-bottom: 60px;
  }
}
