@charset "UTF-8";
.subpage-boundary {
  position: relative;
  width: 100%;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  grid-gap: 70px;
}
.subpage-boundary .subpage-tit-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.subpage-boundary .subpage-tit-section .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.subpage-boundary .subpage-tit-section .container .tit {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-align: center;
}

@media (max-width: 1440px) {
  .subpage-boundary {
    padding: 100px 0;
    grid-gap: 50px;
  }
  .subpage-boundary .subpage-tit-section .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .subpage-boundary {
    padding: 70px 0;
  }
  .subpage-boundary .subpage-tit-section .container .tit {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .subpage-boundary {
    grid-gap: 30px;
  }
  .subpage-boundary .subpage-tit-section .container .tit {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .subpage-boundary .subpage-tit-section .container .tit {
    font-size: 25px;
  }
}
.subpage-tab-section {
  width: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.subpage-tab-section .local-nav-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 500rem;
  overflow: hidden;
}
.subpage-tab-section .local-nav-wrap > a {
  width: auto;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: rgba(0, 0, 0, 0.3);
  transition: 0.2s all ease-in-out;
}
.subpage-tab-section .local-nav-wrap > a.current, .subpage-tab-section .local-nav-wrap > a:hover {
  color: black;
}

@media (max-width: 1280px) {
  .subpage-tab-section .local-nav-wrap > a {
    padding: 20px;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .subpage-tab-section .local-nav-wrap > a {
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .subpage-tab-section .local-nav-wrap > a {
    padding: 10px 12px;
    font-size: 12px;
  }
}
.brand-about-page {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-right: 240px;
  max-width: 1640px;
  display: flex;
  flex-direction: row;
  grid-gap: 70px;
}
.brand-about-page .left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-gap: 150px;
}
.brand-about-page .left .circle {
  position: relative;
  margin-left: 100px;
  width: 250px;
  height: 250px;
}
.brand-about-page .left .circle > img:nth-of-type(1) {
  width: 100%;
  height: 100%;
  animation-name: infiniteRotateAnim;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.brand-about-page .left .circle > img:nth-of-type(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-65%);
  width: 25%;
  height: auto;
  animation-name: infiniteHorizontalPatrolAnim;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
.brand-about-page .left .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.brand-about-page .left .text > strong {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.brand-about-page .left .text > p {
  font-size: 22px;
  line-height: 1.4;
  color: #464646;
}
.brand-about-page .left .text > p > em {
  font-weight: 500;
  color: black;
}
.brand-about-page .right {
  position: relative;
  flex: 1 1 35%;
  height: auto;
  aspect-ratio: 1080/1920;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.brand-about-page .right > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.brand-about-page .right > video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1640px) {
  .brand-about-page {
    padding: 0 16px;
    padding-right: 240px;
    grid-gap: 50px;
  }
  .brand-about-page .left {
    grid-gap: 100px;
  }
  .brand-about-page .left .circle {
    margin-left: 50px;
    width: 200px;
    height: 200px;
  }
  .brand-about-page .left .text {
    grid-gap: 20px;
  }
  .brand-about-page .left .text > strong {
    font-size: 22px;
  }
  .brand-about-page .left .text > p {
    font-size: 22px;
  }
}
@media (max-width: 1280px) {
  .brand-about-page {
    padding-right: 175px;
  }
  .brand-about-page .left {
    grid-gap: 50px;
  }
  .brand-about-page .left .circle {
    margin-left: 0px;
    width: 180px;
    height: 180px;
  }
  .brand-about-page .left .text {
    grid-gap: 16px;
  }
  .brand-about-page .left .text > strong {
    font-size: 18px;
  }
  .brand-about-page .left .text > p {
    font-size: 18px;
  }
  .brand-about-page .right {
    flex: 0 0 400px;
  }
}
@media (max-width: 768px) {
  .brand-about-page {
    padding-right: unset;
    padding: 0 16px;
    grid-gap: 30px;
    flex-direction: column;
  }
  .brand-about-page .left {
    grid-gap: 30px;
  }
  .brand-about-page .left .text > strong {
    font-size: 14px;
  }
  .brand-about-page .left .text > p {
    font-size: 14px;
  }
  .brand-about-page .right {
    flex: unset;
    padding-bottom: 120%;
  }
  .brand-about-page .right > img {
    width: 20%;
  }
}
.brand-interior-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.brand-interior-page .interior-summary {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  margin-bottom: 70px;
  padding: 0 16px;
  font-size: 22px;
  line-height: 1.4;
  color: black;
  text-align: center;
  word-break: keep-all;
}
.brand-interior-page .interior-top-grid {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.brand-interior-page .interior-top-grid .item {
  flex: 1 1 25%;
  height: 0;
  padding-bottom: 36.7187%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-interior-page .interior-top-grid2 {
  width: 450%;
  height: auto;
  display: flex;
  flex-direction: row;
  animation: slideLeft 40s linear infinite;
}
.brand-interior-page .interior-top-grid2:hover {
  animation-play-state: paused;
}
.brand-interior-page .interior-top-grid2 .item {
  width: 25vw;
  aspect-ratio: 413/606;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@keyframes rollingLeft1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rollingLeft2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.brand-interior-page .rolling-banner-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 150px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.brand-interior-page .rolling-banner-wrap .rolling-list.original {
  animation: rollingLeft1 70s linear infinite;
}
.brand-interior-page .rolling-banner-wrap .rolling-list.clone {
  animation: rollingLeft2 70s linear infinite;
}
.brand-interior-page .rolling-banner-wrap .rolling-list > ul {
  position: relative;
  display: flex;
}
.brand-interior-page .rolling-banner-wrap .rolling-list > ul > li {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  margin: 0 33px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-interior-page .rolling-banner-wrap .rolling-list > ul > li .banner-image {
  position: relative;
  width: auto;
  height: 60px;
}
.brand-interior-page .rolling-banner-wrap .rolling-list > ul > li .banner-image > img {
  width: auto;
  height: 100%;
}
.brand-interior-page .interior-bottom-wrap {
  width: 100%;
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.brand-interior-page .interior-bottom-wrap .top-area {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
.brand-interior-page .interior-bottom-wrap .top-area .left-logo {
  flex: 0 0 250px;
}
.brand-interior-page .interior-bottom-wrap .top-area .left-logo img {
  width: 100%;
  height: auto;
}
.brand-interior-page .interior-bottom-wrap .top-area .top-summary {
  flex: 1 1 auto;
  font-size: 22px;
  line-height: 1.5;
  text-align: left;
  color: #333;
  word-break: keep-all;
}
.brand-interior-page .interior-bottom-wrap .bot-area {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 50px;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-name {
  flex: 0 0 400px;
  font-size: 30px;
  line-height: 1.6;
  color: black;
  font-weight: 700;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-wrapper, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-wrapper, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-wrapper, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-wrapper {
  width: 100%;
  height: auto;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-wrapper .swiper-slide, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-wrapper .swiper-slide, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-wrapper .swiper-slide, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-wrapper .swiper-slide {
  width: auto;
  aspect-ratio: 1/1.4;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-next, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-next, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-next, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-next {
  width: 45px;
  height: 45px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: black;
  border-radius: 500rem;
  opacity: 0.3;
  transition: 0.2s all ease-in-out;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-prev > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-next > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-prev > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-next > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-prev > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-next > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-prev > svg, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-next > svg {
  width: 60%;
  height: 60%;
  fill: white;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-prev:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-next:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-prev:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-next:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-prev:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-next:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-prev:hover, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-next:hover {
  opacity: 1;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-prev, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-prev {
  margin-left: 10px;
}
.brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper1 .swiper-navigation .custom-next, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper2 .swiper-navigation .custom-next, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper3 .swiper-navigation .custom-next, .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-gallery-swiper4 .swiper-navigation .custom-next {
  margin-right: 10px;
}

@media (max-width: 1640px) {
  .brand-interior-page .interior-bottom-wrap {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .brand-interior-page .interior-summary {
    margin-bottom: 50px;
    font-size: 20px;
  }
  .brand-interior-page .rolling-banner-wrap {
    margin-bottom: 100px;
  }
  .brand-interior-page .rolling-banner-wrap .rolling-list > ul > li .banner-image {
    height: 35px;
  }
  .brand-interior-page .interior-bottom-wrap {
    gap: 70px;
  }
  .brand-interior-page .interior-bottom-wrap .top-area {
    gap: 30px;
  }
  .brand-interior-page .interior-bottom-wrap .top-area .left-logo {
    flex: 0 0 200px;
  }
  .brand-interior-page .interior-bottom-wrap .top-area .left-logo img {
    width: 100%;
    height: auto;
  }
  .brand-interior-page .interior-bottom-wrap .top-area .top-summary {
    font-size: 20px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area {
    gap: 30px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-name {
    flex: 0 0 250px;
    font-size: 25px;
  }
}
@media (max-width: 1000px) {
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-name {
    flex: unset;
  }
}
@media (max-width: 768px) {
  .brand-interior-page .interior-summary {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .brand-interior-page .interior-top-grid2 {
    width: 666.6666666667%;
  }
  .brand-interior-page .interior-top-grid2 .item {
    width: 33.3333333333vw;
  }
  .brand-interior-page .rolling-banner-wrap {
    margin-bottom: 70px;
  }
  .brand-interior-page .rolling-banner-wrap .rolling-list > ul > li {
    margin: 0 16px;
  }
  .brand-interior-page .rolling-banner-wrap .rolling-list > ul > li .banner-image {
    height: 35px;
  }
  .brand-interior-page .interior-bottom-wrap {
    gap: 50px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap {
    flex-direction: column;
    gap: 20px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-wrap .booth-name {
    flex: unset;
    font-size: 20px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .brand-interior-page .interior-summary {
    font-size: 14px;
  }
  .brand-interior-page .interior-top-grid2 {
    width: 900%;
  }
  .brand-interior-page .interior-top-grid2 .item {
    width: 50vw;
  }
  .brand-interior-page .rolling-banner-wrap {
    padding: 12px 16px;
    margin-bottom: 50px;
  }
  .brand-interior-page .rolling-banner-wrap .rolling-list > ul > li .banner-image {
    height: 35px;
  }
  .brand-interior-page .interior-bottom-wrap {
    gap: 30px;
  }
  .brand-interior-page .interior-bottom-wrap .top-area {
    gap: 16px;
  }
  .brand-interior-page .interior-bottom-wrap .top-area .left-logo {
    width: 100px;
  }
  .brand-interior-page .interior-bottom-wrap .top-area .top-summary {
    font-size: 14px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area {
    flex-direction: column;
    gap: 16px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-tabs {
    flex: unset;
    width: 100%;
    gap: 8px;
  }
  .brand-interior-page .interior-bottom-wrap .bot-area .bot-gallery-tabs .tab-item {
    font-size: 14px;
    letter-spacing: 3px;
    text-align: center;
  }
}
.brand-location-page {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.brand-location-page .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-location-page .container .company-name {
  width: 100%;
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
}
.brand-location-page .container .company-name > strong, .brand-location-page .container .company-name > span {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  text-align: center;
}
.brand-location-page .container .company-name > strong {
  margin-bottom: 20px;
}
.brand-location-page .container .location-map-area {
  width: 100%;
  margin-bottom: 30px;
}
.brand-location-page .container .location-map-area .root_daum_roughmap {
  width: 100%;
}
.brand-location-page .container .location-map-area .root_daum_roughmap .wrap_map {
  height: 750px;
}
.brand-location-page .container .location-map-area .root_daum_roughmap .cont {
  display: none;
}
.brand-location-page .container .location-info-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}
.brand-location-page .container .location-info-list .item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.brand-location-page .container .location-info-list .item .location-icon {
  flex: 0 0 auto;
  width: 72px;
  height: auto;
}
.brand-location-page .container .location-info-list .item .location-icon > img {
  width: 100%;
  height: auto;
}
.brand-location-page .container .location-info-list .item .location-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  word-break: keep-all;
}
.brand-location-page .container .location-info-list .item .location-content > em {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: inherit;
}
.brand-location-page .container .location-info-list .item .location-content > span {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
  word-break: inherit;
}

@media (max-width: 1440px) {
  .brand-location-page .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .brand-location-page .container .company-name {
    margin-bottom: 25px;
  }
  .brand-location-page .container .company-name > strong, .brand-location-page .container .company-name > span {
    font-size: 22px;
  }
  .brand-location-page .container .company-name > strong {
    margin-bottom: 12px;
  }
  .brand-location-page .container .location-map-area .root_daum_roughmap .wrap_map {
    height: 450px;
  }
  .brand-location-page .container .location-info-list {
    gap: 25px;
  }
  .brand-location-page .container .location-info-list .item {
    gap: 14px;
  }
  .brand-location-page .container .location-info-list .item .location-icon {
    width: 60px;
  }
  .brand-location-page .container .location-info-list .item .location-content > em, .brand-location-page .container .location-info-list .item .location-content > span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .brand-location-page .container .company-name {
    margin-bottom: 20px;
  }
  .brand-location-page .container .company-name > strong, .brand-location-page .container .company-name > span {
    font-size: 18px;
  }
  .brand-location-page .container .company-name > strong {
    margin-bottom: 10px;
  }
  .brand-location-page .container .location-map-area {
    margin-bottom: 20px;
  }
  .brand-location-page .container .location-map-area .root_daum_roughmap .wrap_map {
    height: 300px;
  }
  .brand-location-page .container .location-info-list {
    gap: 20px;
  }
  .brand-location-page .container .location-info-list .item .location-icon {
    width: 50px;
  }
  .brand-location-page .container .location-info-list .item .location-content > em, .brand-location-page .container .location-info-list .item .location-content > span {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .brand-location-page .container .company-name > strong, .brand-location-page .container .company-name > span {
    font-size: 14px;
  }
  .brand-location-page .container .location-info-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .brand-location-page .container .location-info-list .item .location-content > em, .brand-location-page .container .location-info-list .item .location-content > span {
    font-size: 14px;
  }
}
.gallery-page {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.gallery-page .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-page .container .gallery-desc {
  width: 100%;
  margin-bottom: 70px;
  font-size: 22px;
  line-height: 1.6;
  color: black;
  text-align: center;
  word-break: keep-all;
}
.gallery-page .container .gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.gallery-page .container .gallery-grid .item {
  width: 100%;
  aspect-ratio: 1/1.5;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translateY(0);
  transition: 0.2s all ease-in-out;
}
.gallery-page .container .gallery-grid .item:hover {
  transform: translateY(-5px);
}

@media (max-width: 1440px) {
  .gallery-page .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .gallery-page .container .gallery-desc {
    margin-bottom: 50px;
    font-size: 20px;
  }
  .gallery-page .container .gallery-grid {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .gallery-page .container .gallery-desc {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .gallery-page .container .gallery-grid {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .gallery-page .container .gallery-grid {
    max-width: 280px;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.franchise-competit-page {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.franchise-competit-page .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.franchise-competit-page .container .competit-top-banner {
  position: relative;
  width: 100%;
  max-width: 1640px;
  aspect-ratio: 1/0.53;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.franchise-competit-page .container .competit-top-banner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}
.franchise-competit-page .container .competit-top-banner > img {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: auto;
  max-width: 100%;
}
@keyframes rollingLeft1 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rollingLeft2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
.franchise-competit-page .container .rolling-banner-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.franchise-competit-page .container .rolling-banner-wrap .rolling-list.original {
  animation: rollingLeft1 70s linear infinite;
}
.franchise-competit-page .container .rolling-banner-wrap .rolling-list.clone {
  animation: rollingLeft2 70s linear infinite;
}
.franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul {
  position: relative;
  display: flex;
}
.franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul > li {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  margin: 0 33px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul > li .banner-image {
  position: relative;
  width: auto;
  height: 60px;
}
.franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul > li .banner-image > img {
  width: auto;
  height: 100%;
}
.franchise-competit-page .container .rolling-banner-wrap2 {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  overflow-x: hidden;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2.original {
  animation: rollingLeft1 70s linear infinite;
}
.franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2.clone {
  animation: rollingLeft2 70s linear infinite;
}
.franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul {
  position: relative;
  display: flex;
}
.franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul > li {
  position: relative;
  width: auto;
  height: auto;
  box-sizing: border-box;
  margin: 0 33px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul > li .banner-image {
  position: relative;
  width: auto;
  height: 60px;
}
.franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul > li .banner-image > img {
  width: auto;
  height: 100%;
}
.franchise-competit-page .container .competit-article {
  width: 100%;
  max-width: 1640px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.franchise-competit-page .container .competit-article .article-tit {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 20px;
}
.franchise-competit-page .container .competit-article .article-tit > img {
  width: 50px;
  height: auto;
}
.franchise-competit-page .container .competit-article .article-tit > span {
  font-size: 50px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
}
.franchise-competit-page .container .competit-article .article-tit > span > em {
  font-weight: 700;
}
.franchise-competit-page .container .competit-article .article-summary {
  margin-bottom: 70px;
  font-size: 20px;
  line-height: 1.4;
  color: black;
  word-break: keep-all;
}
.franchise-competit-page .container .competit-article .article-summary > em {
  font-weight: 700;
}
.franchise-competit-page .container .competit-article .article-summary.center {
  text-align: center;
}
.franchise-competit-page .container .competit-article .booth-grid {
  width: 100%;
  margin-bottom: 70px;
  display: grid;
  gap: 20px;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info > strong {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info > span {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info > p {
  font-size: 20px;
  line-height: 1.4;
  color: black;
  word-break: keep-all;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info > p.only-mb {
  margin-bottom: 25px;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info > b {
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: white;
  word-break: keep-all;
  background: #d40000;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info > b > img {
  width: auto;
  height: 16px;
}
@media (max-width: 1280px) {
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > b {
    margin-bottom: 14px;
  }
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info .cert-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.franchise-competit-page .container .competit-article .booth-grid .booth-info .cert-list > li {
  width: 100%;
  padding-left: 16px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #d40000;
}
@media (max-width: 1280px) {
  .franchise-competit-page .container .competit-article .booth-grid .booth-info .cert-list {
    gap: 10px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info .cert-list > li {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .franchise-competit-page .container .competit-article .booth-grid .booth-info .cert-list {
    gap: 6px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info .cert-list > li {
    padding-left: 10px;
    font-size: 14px;
  }
}
.franchise-competit-page .container .competit-article .booth-grid .cell {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid black;
}
.franchise-competit-page .container .competit-article .booth-grid.type01 {
  grid-template-columns: 3fr 3fr 2fr;
}
.franchise-competit-page .container .competit-article .booth-grid.type01 .booth-info {
  grid-column: 1/2;
  grid-row: 1/2;
}
.franchise-competit-page .container .competit-article .booth-grid.type01 .cell {
  height: 425px;
}
.franchise-competit-page .container .competit-article .booth-grid.type01 .cell.c01 {
  grid-column: 2/3;
  grid-row: 1/2;
}
.franchise-competit-page .container .competit-article .booth-grid.type01 .cell.c02 {
  grid-column: 3/4;
  grid-row: 1/2;
}
.franchise-competit-page .container .competit-article .booth-grid.type01 .cell.c03 {
  grid-column: 1/4;
  grid-row: 2/3;
  height: auto;
  aspect-ratio: 1/0.5792;
}
.franchise-competit-page .container .competit-article .booth-grid.type02 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto 1fr 1fr;
}
.franchise-competit-page .container .competit-article .booth-grid.type02 .booth-info {
  grid-column: 2/4;
  grid-row: 1/2;
}
.franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c04 {
  grid-column: 1/2;
  grid-row: 1/4;
  height: auto;
  aspect-ratio: 1/1.2463;
}
.franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c05 {
  grid-column: 2/4;
  grid-row: 2/3;
}
.franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c06 {
  grid-column: 2/3;
  grid-row: 3/4;
}
.franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c07 {
  grid-column: 3/4;
  grid-row: 3/4;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 {
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: 1fr 1fr 2fr;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .booth-info {
  grid-column: 1/3;
  grid-row: 1/2;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell {
  width: 100%;
  height: 100%;
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell .circle {
  position: relative;
  width: auto;
  height: 100%;
  margin-right: 20%;
  aspect-ratio: 1/1;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell .circle > img:nth-of-type(1) {
  width: 100%;
  height: 100%;
  animation-name: infiniteRotateAnim;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell .circle > img:nth-of-type(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-65%);
  width: 25%;
  height: auto;
  animation-name: infiniteHorizontalPatrolAnim;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c08 {
  grid-column: 1/2;
  grid-row: 3/4;
  height: auto;
  aspect-ratio: 1/1.45;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c09 {
  grid-column: 2/3;
  grid-row: 3/4;
  height: auto;
  aspect-ratio: 1/1.45;
}
.franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c10 {
  grid-column: 3/4;
  grid-row: 1/4;
}
.franchise-competit-page .container .competit-article .booth-grid.type04 {
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 2fr;
}
.franchise-competit-page .container .competit-article .booth-grid.type04 .booth-info {
  grid-column: 2/4;
  grid-row: 1/2;
}
.franchise-competit-page .container .competit-article .booth-grid.type04 .cell.c11 {
  grid-column: 1/2;
  grid-row: 1/3;
  height: auto;
  aspect-ratio: 1/1.07;
}
.franchise-competit-page .container .competit-article .booth-grid.type04 .cell.c12 {
  grid-column: 2/3;
  grid-row: 2/3;
}
.franchise-competit-page .container .competit-article .booth-grid.type04 .cell.c13 {
  grid-column: 3/4;
  grid-row: 2/3;
}
.franchise-competit-page .container .competit-article .competit-mng-easily {
  width: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: row;
  gap: 25px;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .left-thumb {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .left-thumb > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list {
  flex: 1 1 40%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid black;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top {
  width: 100%;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid black;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .number {
  flex: 0 0 auto;
  width: 64px;
  height: auto;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  color: white;
  text-align: center;
  background: black;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .name {
  flex: 1 1 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > strong {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > i {
  font-size: 32px;
  line-height: 1;
  color: black;
}
.franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .desc {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  color: black;
}
.franchise-competit-page .container .competit-article .competit-system {
  width: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: row;
  border-left: 1px solid black;
  border-right: 1px solid black;
}
.franchise-competit-page .container .competit-article .competit-system .item {
  flex: 1 1 30%;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.franchise-competit-page .container .competit-article .competit-system .item > strong {
  padding: 14px 24px;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: black;
  border: 1px solid black;
  border-radius: 500px;
  background: white;
}
.franchise-competit-page .container .competit-article .competit-system .item > img {
  max-width: 100%;
  margin-bottom: 30px;
}
.franchise-competit-page .container .competit-article .competit-system .item .system-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 10px;
}
.franchise-competit-page .container .competit-article .competit-system .item .system-content > em {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  color: black;
  text-align: center;
  word-break: keep-all;
}
.franchise-competit-page .container .competit-article .competit-system .item .system-content > p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.franchise-competit-page .container .competit-article .competit-system .item .system-content > p > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: black;
  text-align: center;
  word-break: keep-all;
}
.franchise-competit-page .container .competit-article .competit-system .item .system-content:not(:last-of-type) {
  margin-bottom: 16px;
}
.franchise-competit-page .container .competit-article .competit-system .item:not(:last-of-type) {
  border-right: 1px solid black;
}
.franchise-competit-page .container .competit-article .trendy-list-wrap {
  width: 100%;
  padding-bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list.left {
  justify-content: flex-start;
}
.franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list.right {
  justify-content: flex-end;
}
.franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list .trendy-item {
  flex: 0 0 auto;
  width: 20%;
  aspect-ratio: 1/1.4624;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid black;
}
.franchise-competit-page .container .competit-article .certi-list {
  display: flex;
  flex-direction: row;
  gap: 70px;
}
.franchise-competit-page .container .competit-article .certi-list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.franchise-competit-page .container .competit-article .certi-list .item .certi-logo {
  width: auto;
  height: 75px;
  max-width: 100%;
}
.franchise-competit-page .container .competit-article .certi-list .item .certi-logo > img {
  width: auto;
  height: 100%;
  max-width: 100%;
}
.franchise-competit-page .container .competit-article .certi-list .item > p {
  font-size: 20px;
  line-height: 1.4;
  color: black;
  text-align: center;
  word-break: keep-all;
}

@media (max-width: 1640px) {
  .franchise-competit-page .container .competit-article {
    padding: 0 16px;
  }
}
@media (max-width: 1440px) {
  .franchise-competit-page .container .competit-article .competit-mng-easily .left-thumb {
    flex: 1 1 40%;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .name {
    padding: 0 14px;
    font-size: 20px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content {
    padding: 20px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point {
    gap: 12px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > strong {
    font-size: 70px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > i {
    font-size: 24px;
  }
}
@media (max-width: 1280px) {
  .franchise-competit-page .container .competit-top-banner > img {
    height: 50%;
  }
  .franchise-competit-page .container .rolling-banner-wrap, .franchise-competit-page .container .rolling-banner-wrap2 {
    margin-bottom: 100px;
  }
  .franchise-competit-page .container .rolling-banner-wrap > ul > li .banner-image, .franchise-competit-page .container .rolling-banner-wrap2 > ul > li .banner-image {
    height: 35px;
  }
  .franchise-competit-page .container .competit-article .article-tit {
    margin-bottom: 20px;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .article-tit > img {
    width: 40px;
  }
  .franchise-competit-page .container .competit-article .article-tit > span {
    font-size: 40px;
  }
  .franchise-competit-page .container .competit-article .article-summary {
    margin-bottom: 50px;
    font-size: 22px;
  }
  .franchise-competit-page .container .competit-article .booth-grid {
    margin-bottom: 50px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > strong {
    font-size: 32px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > span {
    font-size: 18px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > p {
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > b {
    font-size: 18px;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type01 {
    grid-template-columns: repeat(2, 1fr);
  }
  .franchise-competit-page .container .competit-article .booth-grid.type01 .booth-info {
    grid-column: 1/3;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type01 .cell {
    height: auto;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type01 .cell.c01 {
    grid-column: 1/2;
    grid-row: 2/3;
    aspect-ratio: 1/0.5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type01 .cell.c02 {
    grid-column: 2/3;
    grid-row: 2/3;
    aspect-ratio: 1/0.5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type01 .cell.c03 {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 .booth-info {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 .cell {
    height: auto;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c04 {
    grid-column: 1/2;
    grid-row: 2/5;
    aspect-ratio: 1/1.5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c05 {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c06 {
    grid-column: 2/3;
    grid-row: 3/4;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type02 .cell.c07 {
    grid-column: 2/3;
    grid-row: 4/5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .booth-info {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell {
    grid-column: 2/3;
    grid-row: 1/2;
    height: 200px;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell .circle {
    margin-right: 10%;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c08 {
    grid-row: 3/4;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c09 {
    grid-row: 3/4;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c10 {
    grid-column: 1/3;
    grid-row: 2/3;
    height: auto;
    aspect-ratio: 1/0.345;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type04 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type04 .booth-info {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type04 .cell {
    height: auto;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type04 .cell.c11 {
    grid-column: 1/3;
    grid-row: 2/3;
    aspect-ratio: 1/0.5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type04 .cell.c12 {
    grid-column: 1/2;
    grid-row: 3/4;
    aspect-ratio: 1/1.2;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type04 .cell.c13 {
    grid-column: 2/3;
    grid-row: 3/4;
    aspect-ratio: 1/1.2;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily {
    flex-direction: column;
    padding-bottom: 70px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .left-thumb {
    flex: unset;
    width: 100%;
    height: auto;
    aspect-ratio: 1/0.8;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list {
    flex: unset;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .number {
    width: 45px;
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .name {
    padding: 0 12px;
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content {
    padding: 16px;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point {
    gap: 10px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > strong {
    font-size: 40px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > i {
    font-size: 18px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .desc {
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-system {
    padding-bottom: 70px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item > strong {
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item > img {
    margin-bottom: 20px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item .system-content > em {
    font-size: 18px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item .system-content > p > span {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap {
    padding-bottom: 70px;
    gap: 20px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list {
    gap: 20px;
  }
  .franchise-competit-page .container .competit-article .certi-list {
    gap: 20px;
  }
  .franchise-competit-page .container .competit-article .certi-list .item {
    gap: 20px;
  }
  .franchise-competit-page .container .competit-article .certi-list .item > p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .franchise-competit-page .container .competit-top-banner > img {
    bottom: 30px;
    min-height: 175px;
  }
  .franchise-competit-page .container .rolling-banner-wrap {
    margin-bottom: 70px;
  }
  .franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul > li {
    margin: 0 16px;
  }
  .franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul > li .banner-image {
    height: 35px;
  }
  .franchise-competit-page .container .rolling-banner-wrap2 {
    margin-bottom: 70px;
  }
  .franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul > li {
    margin: 0 16px;
  }
  .franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul > li .banner-image {
    height: 35px;
  }
  .franchise-competit-page .container .competit-article .article-tit {
    margin-bottom: 16px;
    gap: 10px;
  }
  .franchise-competit-page .container .competit-article .article-tit > img {
    width: 30px;
  }
  .franchise-competit-page .container .competit-article .article-tit > span {
    font-size: 25px;
  }
  .franchise-competit-page .container .competit-article .article-summary {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .franchise-competit-page .container .competit-article .booth-grid {
    margin-bottom: 30px;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > strong {
    font-size: 25px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > span {
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > p {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > b {
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .booth-info {
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell {
    grid-column: 1/3;
    grid-row: 2/3;
    height: 150px;
    justify-content: flex-start;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell .circle {
    margin-right: 0;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c08 {
    grid-row: 4/5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c09 {
    grid-row: 4/5;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .cell.c10 {
    grid-column: 1/3;
    grid-row: 3/4;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily {
    flex-direction: column;
    padding-bottom: 50px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .number {
    width: 35px;
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .name {
    padding: 0 10px;
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > strong {
    font-size: 28px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > i {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .desc {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-system {
    padding-bottom: 0;
    margin-bottom: 50px;
    flex-direction: column;
    border-right: none;
    border-left: none;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
  .franchise-competit-page .container .competit-article .competit-system .item {
    padding: 16px 0;
  }
  .franchise-competit-page .container .competit-article .competit-system .item:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid black;
  }
  .franchise-competit-page .container .competit-article .competit-system .item > strong {
    padding: 8px 12px;
    margin-bottom: 14px;
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item > img {
    margin-bottom: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item .system-content > em {
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item .system-content > p > span {
    font-size: 12px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap {
    padding-bottom: 50px;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list {
    flex-wrap: wrap;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list .trendy-item {
    flex: 1 1 40%;
    width: auto;
  }
  .franchise-competit-page .container .competit-article .certi-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .certi-list .item {
    width: 100%;
    gap: 14px;
  }
  .franchise-competit-page .container .competit-article .certi-list .item > p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .franchise-competit-page .container .competit-top-banner::before {
    height: 100%;
  }
  .franchise-competit-page .container .competit-top-banner > img {
    bottom: 16px;
  }
  .franchise-competit-page .container .rolling-banner-wrap {
    padding: 12px 16px;
    margin-bottom: 50px;
  }
  .franchise-competit-page .container .rolling-banner-wrap .rolling-list > ul > li .banner-image {
    height: 35px;
  }
  .franchise-competit-page .container .rolling-banner-wrap2 {
    padding: 12px 16px;
    margin-bottom: 50px;
  }
  .franchise-competit-page .container .rolling-banner-wrap2 .rolling-list2 > ul > li .banner-image {
    height: 35px;
  }
  .franchise-competit-page .container .competit-article .article-tit {
    margin-bottom: 12px;
    gap: 10px;
  }
  .franchise-competit-page .container .competit-article .article-tit > img {
    width: 25px;
  }
  .franchise-competit-page .container .competit-article .article-tit > span {
    font-size: 18px;
  }
  .franchise-competit-page .container .competit-article .article-summary {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .booth-grid {
    gap: 10px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > strong {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > span {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > p {
    font-size: 12px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > p.only-mb {
    margin-bottom: 16px;
  }
  .franchise-competit-page .container .competit-article .booth-grid .booth-info > b {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .booth-grid.type03 .circle-cell {
    height: 120px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily {
    flex-direction: column;
    padding-bottom: 50px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .number {
    width: 35px;
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .top .name {
    padding: 0 10px;
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > strong {
    font-size: 28px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .key-point > i {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-mng-easily .mng-list .item .content .desc {
    font-size: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-system {
    padding-bottom: 0;
    margin-bottom: 50px;
    flex-direction: column;
    border-right: none;
    border-left: none;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
  .franchise-competit-page .container .competit-article .competit-system .item {
    padding: 16px 0;
  }
  .franchise-competit-page .container .competit-article .competit-system .item:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid black;
  }
  .franchise-competit-page .container .competit-article .competit-system .item > strong {
    padding: 8px 12px;
    margin-bottom: 14px;
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item > img {
    margin-bottom: 14px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item .system-content > em {
    font-size: 16px;
  }
  .franchise-competit-page .container .competit-article .competit-system .item .system-content > p > span {
    font-size: 12px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap {
    padding-bottom: 50px;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list {
    flex-wrap: wrap;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .trendy-list-wrap .trendy-list .trendy-item {
    flex: 1 1 40%;
    width: auto;
  }
  .franchise-competit-page .container .competit-article .certi-list {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .franchise-competit-page .container .competit-article .certi-list .item {
    width: 100%;
    gap: 14px;
  }
  .franchise-competit-page .container .competit-article .certi-list .item > p {
    font-size: 14px;
  }
}
.franchise-revenue-page {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.franchise-revenue-page .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 150px;
}
.franchise-revenue-page .container .revenue-article {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.franchise-revenue-page .container .revenue-article .article-title {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.franchise-revenue-page .container .revenue-article .article-title > img {
  width: 50px;
  height: auto;
}
.franchise-revenue-page .container .revenue-article .article-title > p {
  font-size: 45px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
}
.franchise-revenue-page .container .revenue-article .article-title > p > em {
  font-weight: 700;
}
.franchise-revenue-page .container .revenue-article .desc {
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 1.4;
  color: black;
  word-break: keep-all;
}
.franchise-revenue-page .container .revenue-article .desc.t-center {
  text-align: center;
}
.franchise-revenue-page .container .revenue-article .revenue-content-img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.franchise-revenue-page .container .revenue-article .revenue-content-img > img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.franchise-revenue-page .container .revenue-article .fee-list {
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  border: 1px solid black;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item {
  padding-top: 100px;
  flex: 1 1 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 35px;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item:not(:last-child) {
  border-right: 1px solid black;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-align: center;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong.special {
  position: relative;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong.special > img:nth-of-type(1) {
  position: absolute;
  left: 100%;
  bottom: 100%;
  width: 30px;
  height: 30px;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong.special > img:nth-of-type(2) {
  position: absolute;
  right: 100%;
  top: 100%;
  width: 30px;
  height: 30px;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item > img {
  width: auto;
  height: 135px;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 20px;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span {
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  color: black;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span:nth-of-type(2) {
  font-weight: 500;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span.gsk {
  font-size: 30px;
  font-weight: 700;
}
.franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > i {
  font-size: 16px;
  line-height: 1.2;
  color: #464646;
  text-align: center;
  word-break: keep-all;
}
.franchise-revenue-page .container .revenue-article .revenue-attention {
  font-size: 25px;
  line-height: 1;
  color: black;
  text-align: center;
  word-break: keep-all;
}
.franchise-revenue-page .container .revenue-article .open-pay-list {
  width: 100%;
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  grid-gap: 45px;
  border-top: 1px solid black;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item .open-pay-img {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 73.2558%;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item .open-pay-img > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item .open-pay-img > span {
  position: absolute;
  left: 30px;
  bottom: 50px;
  font-size: 80px;
  line-height: 1;
  color: white;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item .details {
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item .details .size {
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  color: #aaa;
}
.franchise-revenue-page .container .revenue-article .open-pay-list .item .details .about {
  font-size: 25px;
  font-weight: 500;
  line-height: 1.6;
  color: black;
}

@media (max-width: 1440px) {
  .franchise-revenue-page .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .franchise-revenue-page .container {
    gap: 100px;
  }
  .franchise-revenue-page .container .revenue-article .article-title {
    margin-bottom: 20px;
    gap: 16px;
  }
  .franchise-revenue-page .container .revenue-article .article-title > img {
    width: 50px;
  }
  .franchise-revenue-page .container .revenue-article .article-title > p {
    font-size: 40px;
  }
  .franchise-revenue-page .container .revenue-article .desc {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list {
    height: 480px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item {
    grid-gap: 22px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong {
    font-size: 70px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong.special > img:nth-of-type(1) {
    width: 20px;
    height: 20px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong.special > img:nth-of-type(2) {
    width: 20px;
    height: 20px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > img {
    height: 100px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name {
    grid-gap: 14px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span {
    font-size: 22px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span.gsk {
    font-size: 25px;
  }
  .franchise-revenue-page .container .revenue-article .revenue-attention {
    font-size: 22px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list {
    padding-top: 20px;
    grid-gap: 30px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .open-pay-img > span {
    left: 16px;
    bottom: 20px;
    font-size: 40px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .details .size {
    font-size: 16px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .details .about {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .franchise-revenue-page .container {
    gap: 70px;
  }
  .franchise-revenue-page .container .revenue-article .article-title > img {
    width: 30px;
  }
  .franchise-revenue-page .container .revenue-article .article-title > p {
    font-size: 25px;
  }
  .franchise-revenue-page .container .revenue-article .desc {
    font-size: 16px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list {
    height: auto;
    flex-wrap: wrap;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item {
    height: 280px;
    padding-top: 45px;
    grid-gap: 16px;
    flex: 1 1 50%;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item:nth-of-type(2n) {
    border-right: none;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item:nth-of-type(-n+2) {
    border-bottom: 1px solid black;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong {
    font-size: 30px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > img {
    height: 70px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name {
    grid-gap: 10px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span {
    font-size: 16px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span.gsk {
    font-size: 20px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > i {
    font-size: 12px;
  }
  .franchise-revenue-page .container .revenue-article .revenue-attention {
    font-size: 16px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list {
    grid-gap: 16px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .open-pay-img > span {
    left: 16px;
    bottom: 16px;
    font-size: 20px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .details .size {
    font-size: 13px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .details .about {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .franchise-revenue-page .container {
    gap: 50px;
  }
  .franchise-revenue-page .container .revenue-article .article-title {
    gap: 10px;
  }
  .franchise-revenue-page .container .revenue-article .article-title > img {
    width: 20px;
  }
  .franchise-revenue-page .container .revenue-article .article-title > p {
    font-size: 18px;
  }
  .franchise-revenue-page .container .revenue-article .desc {
    font-size: 14px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item {
    height: 250px;
    padding-top: 40px;
    grid-gap: 14px;
    flex: 1 1 50%;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > strong {
    font-size: 24px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item > img {
    height: 50px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span {
    font-size: 14px;
  }
  .franchise-revenue-page .container .revenue-article .fee-list .fee-item .fee-name > span.gsk {
    font-size: 16px;
  }
  .franchise-revenue-page .container .revenue-article .revenue-attention {
    font-size: 14px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list {
    flex-direction: column;
    grid-gap: 16px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item {
    flex: unset;
    width: 100%;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .open-pay-img > span {
    left: 16px;
    bottom: 16px;
    font-size: 20px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .details .size {
    font-size: 13px;
  }
  .franchise-revenue-page .container .revenue-article .open-pay-list .item .details .about {
    font-size: 16px;
  }
}
.franchise-contact-page {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.franchise-contact-page .container {
  width: 100%;
  padding: 42px 180px;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f0f0f0;
}
.franchise-contact-page .container .contact-title {
  width: 100%;
  margin-bottom: 70px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: black;
  text-align: center;
}
.franchise-contact-page .container .contact-buttons {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 150px;
}
.franchise-contact-page .container .contact-buttons > a {
  flex: 1 1 40%;
  display: flex;
  flex-direction: row;
  background-color: white;
  border: 1px solid black;
}
.franchise-contact-page .container .contact-buttons > a .btn-icon {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: black;
}
.franchise-contact-page .container .contact-buttons > a .btn-icon > svg {
  width: 70%;
  height: auto;
  fill: white;
}
.franchise-contact-page .container .contact-buttons > a > span {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.franchise-contact-page .container .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.franchise-contact-page .container .contact-form .agreement-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.franchise-contact-page .container .contact-form .agreement-wrap > span {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  color: white;
  text-align: center;
  background: black;
  word-break: keep-all;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content {
  position: relative;
  width: 100%;
  padding: 36px 150px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: white;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > label {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > label .check-circle {
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 500px;
  background: white;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > label .check-circle > svg {
  width: 70%;
  height: auto;
  fill: black;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > label .check-circle.on {
  background: black;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > label .check-circle.on > svg {
  fill: white;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content > label > span {
  font-size: 20px;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.franchise-contact-page .container .contact-form .agreement-wrap .content .read-privacy-policy {
  padding: 10px 20px;
  font-size: 20px;
  line-height: 1;
  color: white;
  background: black;
}
.franchise-contact-page .container .contact-form .input-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.franchise-contact-page .container .contact-form .input-list .text-item, .franchise-contact-page .container .contact-form .input-list .ta-item {
  width: 100%;
  display: flex;
  flex-direction: row;
}
.franchise-contact-page .container .contact-form .input-list .text-item > span, .franchise-contact-page .container .contact-form .input-list .ta-item > span {
  flex: 0 0 150px;
  font-size: 20px;
  line-height: 2;
  color: black;
}
.franchise-contact-page .container .contact-form .input-list .text-item > input, .franchise-contact-page .container .contact-form .input-list .ta-item > input {
  flex: 0 0 250px;
  height: 2em;
  font-size: 20px;
  line-height: 1.2;
  color: black;
  background-color: white;
  border: 1px solid black;
}
.franchise-contact-page .container .contact-form .input-list .text-item > textarea, .franchise-contact-page .container .contact-form .input-list .ta-item > textarea {
  flex: 1 1 auto;
  padding: 10px;
  font-size: 20px;
  line-height: 1.2;
  color: black;
  background-color: white;
  border: 1px solid black;
  resize: none;
}
.franchise-contact-page .container .contact-form > button[type=submit] {
  width: 180px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: white;
  background: black;
  border: none;
  outline: none;
}

@media (max-width: 1440px) {
  .franchise-contact-page {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .franchise-contact-page .container {
    padding: 40px 70px;
  }
  .franchise-contact-page .container .contact-title {
    margin-bottom: 50px;
    font-size: 40px;
  }
  .franchise-contact-page .container .contact-buttons {
    margin-bottom: 30px;
    gap: 100px;
  }
  .franchise-contact-page .container .contact-buttons > a .btn-icon {
    width: 45px;
    height: 45px;
  }
  .franchise-contact-page .container .contact-buttons > a > span {
    font-size: 18px;
  }
  .franchise-contact-page .container .contact-form {
    gap: 30px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap > span {
    height: 40px;
    font-size: 16px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content {
    padding: 25px 100px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label {
    gap: 12px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label .check-circle {
    width: 22px;
    height: 22px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label > span {
    font-size: 16px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content .read-privacy-policy {
    padding: 8px 12px;
    font-size: 16px;
  }
  .franchise-contact-page .container .contact-form .input-list {
    gap: 16px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > span, .franchise-contact-page .container .contact-form .input-list .ta-item > span {
    flex: 0 0 120px;
    font-size: 16px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > input, .franchise-contact-page .container .contact-form .input-list .ta-item > input {
    font-size: 16px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > textarea, .franchise-contact-page .container .contact-form .input-list .ta-item > textarea {
    font-size: 16px;
  }
  .franchise-contact-page .container .contact-form > button[type=submit] {
    width: 150px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .franchise-contact-page .container {
    padding: 20px;
  }
  .franchise-contact-page .container .contact-title {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .franchise-contact-page .container .contact-buttons {
    margin-bottom: 20px;
    gap: 16px;
  }
  .franchise-contact-page .container .contact-buttons > a .btn-icon {
    width: 30px;
    height: 30px;
  }
  .franchise-contact-page .container .contact-buttons > a > span {
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap > span {
    height: 30px;
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content {
    padding: 16px 30px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label {
    grid-gap: 8px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label .check-circle {
    width: 18px;
    height: 18px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label > span {
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content .read-privacy-policy {
    padding: 5px 8px;
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > span, .franchise-contact-page .container .contact-form .input-list .ta-item > span {
    flex: 0 0 100px;
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > input, .franchise-contact-page .container .contact-form .input-list .ta-item > input {
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > textarea, .franchise-contact-page .container .contact-form .input-list .ta-item > textarea {
    font-size: 14px;
  }
  .franchise-contact-page .container .contact-form > button[type=submit] {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .franchise-contact-page .container {
    padding: 16px;
  }
  .franchise-contact-page .container .contact-title {
    font-size: 22px;
  }
  .franchise-contact-page .container .contact-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .franchise-contact-page .container .contact-buttons > a {
    width: 100%;
    flex: unset;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content {
    padding: 14px;
    flex-direction: column;
    gap: 12px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content > label {
    flex: unset;
    width: 100%;
    grid-gap: 8px;
  }
  .franchise-contact-page .container .contact-form .agreement-wrap .content .read-privacy-policy {
    flex: unset;
    align-self: flex-end;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item, .franchise-contact-page .container .contact-form .input-list .ta-item {
    flex-direction: column;
    gap: 10px;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > span, .franchise-contact-page .container .contact-form .input-list .ta-item > span {
    flex: unset;
    font-size: 14px;
    line-height: 1;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > input, .franchise-contact-page .container .contact-form .input-list .ta-item > input {
    flex: unset;
    width: 100%;
  }
  .franchise-contact-page .container .contact-form .input-list .text-item > textarea, .franchise-contact-page .container .contact-form .input-list .ta-item > textarea {
    flex: unset;
    width: 100%;
  }
  .franchise-contact-page .container .contact-form > button[type=submit] {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
}
.store-guide-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.store-guide-section .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
}
.store-guide-section .container .store-map-wrap {
  width: 100%;
  height: 700px;
  margin-bottom: 80px;
}
.store-guide-section .container .store-map-wrap > iframe {
  width: 100%;
  height: 100%;
}
.store-guide-section .container .store-list-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.store-guide-section .container .store-list-wrap .store-search-form {
  width: 100%;
  max-width: 1024px;
  padding: 20px 50px;
  margin: 0 auto;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 14px;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.store-guide-section .container .store-list-wrap .store-search-form > select, .store-guide-section .container .store-list-wrap .store-search-form > input {
  flex: 0 0 28%;
  min-width: 50px;
  height: 50px;
  border: 1px solid black;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.store-guide-section .container .store-list-wrap .store-search-form > button {
  flex: 1 1 auto;
  height: 50px;
  border: none;
  background: black;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: white;
}
.store-guide-section .container .store-list-wrap .store-list {
  width: 100%;
  margin-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 100px 70px;
}
.store-guide-section .container .store-list-wrap .store-list .store-item {
  width: 100%;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-rpt-img {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 18px;
  padding-bottom: 57.44%;
  background: #ddd;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-rpt-img > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap {
  width: 100%;
  padding: 0 10px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
  border-bottom: 2px solid black;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .name {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 16px;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item > svg {
  width: 20px;
  height: 20px;
  fill: black;
}
.store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item > span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
.store-guide-section .container .store-list-wrap .pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.store-guide-section .container .store-list-wrap .pagination > a {
  height: 24px;
  padding: 0 5px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: black;
  border: 1px solid black;
  border-radius: 3px;
}
.store-guide-section .container .store-list-wrap .pagination > a.active {
  background: black;
  color: white;
}

@media (max-width: 1440px) {
  .store-guide-section .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .store-guide-section .container .store-map-wrap {
    height: 500px;
    margin-bottom: 50px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form {
    padding: 20px;
    margin-bottom: 30px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form > select, .store-guide-section .container .store-list-wrap .store-search-form > input {
    padding: 0 16px;
    font-size: 16px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form > button {
    font-size: 16px;
  }
  .store-guide-section .container .store-list-wrap .store-list {
    margin-bottom: 50px;
    grid-gap: 50px 20px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap {
    grid-gap: 10px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .name {
    font-size: 22px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item {
    grid-gap: 12px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item > svg {
    width: 18px;
    height: 18px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item > span {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .store-guide-section .container .store-map-wrap {
    height: 360px;
    margin-bottom: 30px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form {
    padding: 16px;
    margin-bottom: 16px;
    grid-gap: 10px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form > select, .store-guide-section .container .store-list-wrap .store-search-form > input {
    height: 35px;
    padding: 0 12px;
    font-size: 14px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form > button {
    height: 35px;
    font-size: 14px;
  }
  .store-guide-section .container .store-list-wrap .store-list {
    grid-gap: 30px 16px;
    margin-bottom: 30px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .name {
    font-size: 20px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item {
    grid-gap: 8px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item > svg {
    width: 18px;
    height: 18px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .info-item > span {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .store-guide-section .container .store-map-wrap {
    height: 280;
  }
  .store-guide-section .container .store-list-wrap .store-search-form {
    padding: 14px 0;
    flex-direction: column;
    grid-gap: 10px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form > select, .store-guide-section .container .store-list-wrap .store-search-form > input {
    flex: unset;
    width: 100%;
    padding: 0 10px;
  }
  .store-guide-section .container .store-list-wrap .store-search-form > button {
    flex: unset;
    width: 100%;
  }
  .store-guide-section .container .store-list-wrap .store-list {
    grid-template-columns: 1fr;
    grid-gap: 16px;
  }
  .store-guide-section .container .store-list-wrap .store-list .store-item > a .store-info-wrap .name {
    font-size: 16px;
  }
}
.store-view-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.store-view-section .container {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
}
.store-view-section .container .current-store {
  width: 100%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-gap: 16px;
}
.store-view-section .container .current-store > svg {
  width: auto;
  height: 30px;
}
.store-view-section .container .current-store > span {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.store-view-section .container .store-view-gallery {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  flex-direction: row;
  grid-gap: 24px;
}
.store-view-section .container .store-view-gallery .left-gallery {
  flex: 0 0 auto;
  width: 15%;
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}
.store-view-section .container .store-view-gallery .left-gallery .gallery-item {
  width: 100%;
  flex: 1 1 22%;
  background-color: #f0f0f0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.store-view-section .container .store-view-gallery .left-gallery .gallery-item.current {
  position: relative;
}
.store-view-section .container .store-view-gallery .left-gallery .gallery-item.current::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.store-view-section .container .store-view-gallery .huge-img {
  position: relative;
  flex: 1 1 auto;
  height: 0;
  padding-bottom: 50%;
  background-color: #f0f0f0;
}
.store-view-section .container .store-view-gallery .huge-img > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.store-view-section .container .store-information-wrap {
  width: 100%;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
}
.store-view-section .container .store-information-wrap .simple-list {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-gap: 20px 70px;
}
.store-view-section .container .store-information-wrap .simple-list .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 16px;
}
.store-view-section .container .store-information-wrap .simple-list .item > svg {
  width: auto;
  height: 30px;
  fill: black;
}
.store-view-section .container .store-information-wrap .simple-list .item > span {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
.store-view-section .container .store-information-wrap .store-summary {
  width: 100%;
  margin-bottom: 25px;
  padding: 40px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: black;
  text-align: center;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
}
.store-view-section .container .store-information-wrap .store-map-wrap {
  width: 100%;
  height: 700px;
}
.store-view-section .container .store-information-wrap .store-map-wrap > iframe {
  width: 100%;
  height: 100%;
}
.store-view-section .container .back-to-list {
  width: 190px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-align: center;
  background: black;
}

@media (max-width: 1440px) {
  .store-view-section .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .store-view-section .container .current-store {
    margin-bottom: 20px;
  }
  .store-view-section .container .current-store > svg {
    height: 25px;
  }
  .store-view-section .container .current-store > span {
    font-size: 22px;
  }
  .store-view-section .container .store-view-gallery {
    margin-bottom: 50px;
    grid-gap: 16px;
  }
  .store-view-section .container .store-view-gallery .left-gallery {
    grid-gap: 16px;
  }
  .store-view-section .container .store-information-wrap {
    margin-bottom: 50px;
  }
  .store-view-section .container .store-information-wrap .simple-list {
    margin-bottom: 20px;
    grid-gap: 16px 50px;
  }
  .store-view-section .container .store-information-wrap .simple-list .item > svg {
    height: 22px;
  }
  .store-view-section .container .store-information-wrap .simple-list .item > span {
    font-size: 18px;
  }
  .store-view-section .container .store-information-wrap .store-summary {
    margin-bottom: 20px;
    padding: 30px 16px;
    font-size: 16px;
  }
  .store-view-section .container .store-information-wrap .store-map-wrap {
    height: 500px;
  }
  .store-view-section .container .back-to-list {
    width: 150px;
    height: 40px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .store-view-section .container .current-store {
    margin-bottom: 16px;
    grid-gap: 12px;
  }
  .store-view-section .container .current-store > svg {
    height: 22px;
  }
  .store-view-section .container .current-store > span {
    font-size: 18px;
  }
  .store-view-section .container .store-view-gallery {
    margin-bottom: 30px;
  }
  .store-view-section .container .store-information-wrap {
    margin-bottom: 30px;
  }
  .store-view-section .container .store-information-wrap .simple-list {
    flex-direction: column;
    grid-gap: 10px;
  }
  .store-view-section .container .store-information-wrap .simple-list .item {
    grid-gap: 12px;
  }
  .store-view-section .container .store-information-wrap .simple-list .item > svg {
    height: 20px;
  }
  .store-view-section .container .store-information-wrap .simple-list .item > span {
    font-size: 14px;
  }
  .store-view-section .container .store-information-wrap .store-summary {
    margin-bottom: 16px;
    padding: 16px;
    font-size: 14px;
  }
  .store-view-section .container .store-information-wrap .store-map-wrap {
    height: 360px;
  }
  .store-view-section .container .back-to-list {
    width: 100px;
    height: 36px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .store-view-section .container .store-view-gallery {
    flex-direction: column-reverse;
    grid-gap: 10px;
  }
  .store-view-section .container .store-view-gallery .left-gallery {
    width: 100%;
    flex-direction: row;
    grid-gap: 10px;
  }
  .store-view-section .container .store-view-gallery .left-gallery .gallery-item {
    height: 0;
    padding-bottom: 20%;
  }
  .store-view-section .container .store-view-gallery .huge-img {
    padding-bottom: 70%;
  }
  .store-view-section .container .store-information-wrap .store-map-wrap {
    height: 280px;
  }
}
/**
* 24 12 27
* 원동현
* 커뮤니티 - 블로그
*/
.community-blog-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.community-blog-page .blog-inner-wrap {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.community-blog-page .blog-inner-wrap .blog-posts-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.community-blog-page .blog-inner-wrap .blog-posts-list .item {
  width: 100%;
}
.community-blog-page .blog-inner-wrap .blog-posts-list .item > a {
  width: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 16px;
  background: white;
  overflow: hidden;
  box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0.3);
}
.community-blog-page .blog-inner-wrap .blog-posts-list .item > a .post-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.community-blog-page .blog-inner-wrap .blog-posts-list .item > a .post-content {
  width: 100%;
  height: 19.6px;
  font-size: 14px;
  line-height: 1.4;
  color: #464646;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.community-blog-page .blog-inner-wrap .blog-posts-list .item .no-post {
  width: 100%;
  padding: 200px 70px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
  color: #707070;
  text-align: center;
  word-break: keep-all;
  background: white;
  box-shadow: 0 0 10px -4px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}
.community-blog-page .blog-inner-wrap .pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3px;
}
.community-blog-page .blog-inner-wrap .pagination > a, .community-blog-page .blog-inner-wrap .pagination > span {
  width: 25px;
  height: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.community-blog-page .blog-inner-wrap .pagination > a > svg, .community-blog-page .blog-inner-wrap .pagination > span > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.community-blog-page .blog-inner-wrap .pagination .current {
  border: 1px solid black;
  background: black;
  color: white;
}

@media (max-width: 1280px) {
  .community-blog-page {
    padding: 0 16px;
  }
  .community-blog-page .blog-inner-wrap .blog-posts-list .item .no-post {
    padding: 150px 50px;
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .community-blog-page .blog-inner-wrap {
    gap: 30px;
  }
  .community-blog-page .blog-inner-wrap .blog-posts-list .item > a {
    padding: 16px;
    gap: 12px;
  }
  .community-blog-page .blog-inner-wrap .blog-posts-list .item > a .post-title {
    font-size: 14px;
  }
  .community-blog-page .blog-inner-wrap .blog-posts-list .item > a .post-content {
    height: 33.8px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .community-blog-page .blog-inner-wrap .pagination > a, .community-blog-page .blog-inner-wrap .pagination > span {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }
}
.community-sns-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.community-sns-page .sns-grid {
  width: 100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.community-sns-page .sns-grid .item {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.community-sns-page .sns-grid .item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.community-sns-page .sns-grid .item > a .sns-image {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #fafafa;
}
.community-sns-page .sns-grid .item > a .sns-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .community-sns-page .sns-grid {
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .community-sns-page .sns-grid {
    gap: 10px;
  }
}/*# sourceMappingURL=sub.css.map */