/*common.css*/
@font-face {
  font-family: 'Pretendard-Regular';
  src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Pretendard-Regular", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  width: 100%;
  height: 100%;
  display: block;
}

a:hover {
  color: #333;
  /* ï¿½ï¿½ï¿½Ï´ï¿½ ï¿½ï¿½ï¿½ï¿½Æ® ï¿½Ã·ï¿½ */
}

a:focus,
a:active {
  outline: none;
}

/* === Grid === */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  padding: 10px;
}

/* === Typography === */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.fw-bold {
  font-weight: bold;
}

.fs-sm {
  font-size: 0.875rem;
}

.fs-md {
  font-size: 1rem;
}

.fs-lg {
  font-size: 1.25rem;
}

.fs-20 {
  font-size: 20px;
}

/* === Button === */
.btn {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 5px 15px;
}

.btn:hover {
  background-color: #f5f5f5;
}

.btn.primary {
  background-color: #007bff;
  color: #fff;
  border-color: #007bff;
}

.btn.primary:hover {
  background-color: #0056b3;
}

/* === Flex Utilities === */
.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

/* === Spacing Utilities === */
.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.me-1 {
  padding-right: 0.25rem !important;
}

.me-2 {
  padding-right: 0.5rem !important;
}

.me-3 {
  padding-right: 1rem !important;
}

.me-4 {
  padding-right: 1.5rem !important;
}

.me-5 {
  padding-right: 3rem !important;
}

.ms-1 {
  padding-left: 0.25rem !important;
}

.ms-2 {
  padding-left: 0.5rem !important;
}

.ms-3 {
  padding-left: 1rem !important;
}

.ms-4 {
  padding-left: 1.5rem !important;
}

.ms-5 {
  padding-left: 3rem !important;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

/* === Display Utilities === */
.midium-show {
  display: none;
}

.d-block {
  display: block;
}

.d-table {
  display: table;
}

.d-none {
  display: none !important;
}

.w100 {
  width: 100%;
}

li {
  list-style: none;
}

h1 {
  font-size: 36px;
}

.position-relative {
  position: relative;
}

/* === Images === */
.img-fluid {
  max-width: 100%;
  height: auto;
}

.mobile-show {
  display: none;
}

.pc-show {
  display: block;
}

.pc-none {
  display: none;
}

/*main.css*/
/*===header===*/
.upper-nav:hover {
  background-color: #fff;
}

.upper-nav:hover ul li a {
  color: #333;
}

.upper-nav>ul {
  padding-top: 18px;
  padding-bottom: 19px;
}

.upper-nav>ul>li {
  width: 103px;
  text-align: center;
}

.upper-nav>ul>li a {
  position: relative;
  color: #fff;
}

.upper-nav>ul>li a::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  display: inline;
  background-color: #d6d6d6;
  top: 5px;
  left: 90px;
}

.upper-nav>ul>li:nth-child(2) a::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 16px;
  display: inline;
  background-color: #d6d6d6;
  top: 5px;
  left: 113px;
}

.upper-nav>ul>li:last-child a::before {
  content: "";
  display: none;
}

.lower-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.301);
}

.lower-nav>ul>li {
  position: relative;
  width: 20%;
  text-align: center;
  padding: 23px 0;
}

.lower-nav>ul>li::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #004097;
  border-radius: 100%;
  top: 13px;
  left: 50%;
  opacity: 0;
}

.lower-nav>ul>li:hover::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.lower-nav>ul>li:first-child::after {
  content: "ï¿½ï¿½";
  display: none;
}

.lower-nav>ul>li.hovered::after {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

.lower-nav>ul>li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}

.lower-nav ul>li>a:hover,
.lower-nav ul>li.hovered>a {
  color: #004097 !important;
}

.inner-lower-nav {
  position: absolute;
  background-color: #fff;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 100%;
  width: 100%;
  background: white;
  z-index: 10;
}

.lower-nav:hover .inner-lower-nav,
.inner-lower-nav:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.inner-lower-nav>div {
  background-color: #fff;
  width: 100%;
  padding: 16px 0 40px 297px;
}

.inner-lower-nav>div>ul {
  padding-left: 109px;
  text-align: center;
}

.inner-lower-nav>div>ul:nth-child(1) {
  padding-left: 0px;
}

.inner-lower-nav>div>ul:nth-child(2) {
  padding-left: 135px;
}

.inner-lower-nav>div>ul:nth-child(3) {
  padding-left: 139px;
}

.inner-lower-nav>div>ul:nth-child(4) {
  padding-left: 119px;
}

.inner-lower-nav>div>ul:nth-child(5) {
  padding-left: 121px;
}

.inner-lower-nav>div>ul>li {
  padding-top: 15px;
}

.inner-lower-nav>div>ul>li:nth-child(1) {
  padding-top: 0px;
}

.inner-lower-nav>div>ul>li>a:hover,
.inner-lower-nav>div>ul>li>a:active {
  text-decoration: underline;
  font-weight: 600;
  color: #333 !important;
}

/*===ï¿½ï¿½ï¿½Ö¾ï¿½===*/
header {
  position: relative;
  z-index: 2;
}

.wrap {
  position: relative;
}

.visual-bg {
  position: relative;
  width: 100%;
  /*   height: calc(100vh - 159px); */
  height: 100vh;
  background-color: #000000;
  z-index: 0;
  top: -160px;
  text-align: center;
}

.visual-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  display: block;
  z-index: 1;
}

.vh100 {
  height: 100vh;
}

/*===ï¿½Ç½Ã°ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½===*/
.notice {
  position: absolute;
  width: 100%;
  z-index: 1;
  bottom: -163px;
}

.notice-div {
  width: 93%;
  height: 164px;
  background-color: #1d5f6f;
  border-radius: 0px 0px 0px 100px;
}

.notice-div::after {
  content: "";
  position: absolute;
  width: 285px;
  height: 100%;
  background-image: url("./data/img/suwoni.png");
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: -41px;
}

.notice-inner {
  position: relative;
  width: 22%;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  padding-left: 1.5rem;
}

.notice-inner::after {
  content: "";
  width: 1px;
  height: 111px;
  display: inline-block;
  background-color: #618f9a;
  position: absolute;
  right: 0;
  top: 3px;
}

.notice-inner:last-child::after {
  content: none;
}

.btn-rounded-black {
  display: flex;
  background-color: #1f1f1f;
  /* ï¿½ï¿½ï¿½ï¿½ ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ */
  color: white;
  font-size: 16px;
  font-weight: 300;
  border: none;
  border-radius: 100px;
  /* pill ï¿½ï¿½ï¿½ï¿½ */
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  padding: 5px 16px 5px 24px;
}

.btn-rounded-black:hover {
  background-color: #333;
}

.notice-inner_1 {
  margin-left: 4em;
}

.notice-inner_1 {
  position: relative;
  width: 15%;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.notice-inner_1::after {
  content: "";
  width: 1px;
  height: 111px;
  display: inline-block;
  background-color: #618f9a;
  position: absolute;
  right: 0;
  top: 3px;
}

.notice-title {
  font-size: 23px;
  font-weight: bold;
  margin-left: 11px;
  letter-spacing: -1px;
}

.btn-div {
  width: 104px;
  height: 27px;
  letter-spacing: -1px;
}

.btn-rounded-green {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 200;
  transition: all 0.2s ease-in-out;
  padding: 5px 15px;
  background-color: #24b23f;
  color: white;
  font-size: 16px;
  font-weight: 300;
  border: none;
  border-radius: 100px;
}

.btn-next-text {
  font-size: 16px;
  color: #a8bac0;
  margin-left: 8px;
}

.btn-rounded-yellow {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 200;
  transition: all 0.2s ease-in-out;
  padding: 5px 15px;
  background-color: #dd8631;
  color: white;
  font-size: 16px;
  font-weight: 300;
  border: none;
  border-radius: 100px;
}

.btn-rounded-red {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 200;
  transition: all 0.2s ease-in-out;
  padding: 5px 15px;
  background-color: #d33b3b;
  color: white;
  font-size: 16px;
  font-weight: 300;
  border: none;
  border-radius: 100px;
}

/*===ï¿½ï¿½ï¿½ï¿½Ã£ï¿½Â¸Þ´ï¿½===*/
#notice {
  margin-top: 52px;
}

.favorite-menu {
  position: relative;
  width: 936px;
  background-color: #faf9f2;
  padding: 48px 57px 0px 57px;
  border-radius: 20px;
}

.favorite-menu::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -27px;
  display: block;
  width: 150px;
  height: 200px;
  background-image: url("./data/img/frog2.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
}

.favorite-menu>div>div {
  margin-top: 56px;
}

.favorite-menu>div>div>a>dl>dt {
  height: 93px;
}

.favorite-menu>div>div>a:first-child>dl>dt>img {
  margin-left: 14px;
}

.favorite-menu>div>div>a:last-child>dl>dt>img {
  margin-right: 18px;
}

.favorite-menu>div>div>a>dl>dd {
  font-size: 22px;
  font-weight: 500;
  padding-bottom: 80px;
}

.favorite_title {
  margin-top: 47px;
}

/*===ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½===*/
.notice-box {
  width: 404px;
  margin-left: 60px;
}

.notice-box-div>ul {
  margin-top: 25px;
}

.notice-box-div>ul>li {
  width: 100%;
  height: 100%;
  border: 2px solid #efefef;
  border-radius: 10px;
}

.notice-box-div>ul>li:last-child {
  margin-top: 17px;
}

.notice-box-div>ul>li>a {
  display: block;
  padding: 25px 29px 15px 29px;
}

.notice-box-div>ul>li>a>dl>dt {
  font-size: 18px;
  height: 54px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  width: 100%;
  /* ï¿½Ç´ï¿½ ï¿½Ê¿ï¿½ï¿½ï¿½ ï¿½ï¿½ï¿½ï¿½ï¿½ï¿½ */
}

.notice-box-div>ul>li>a>dl>dd {
  margin-top: 35px;
  color: #888888;
}

/*===swiper-zone===*/
#swiper-zone {
  display: block;
  width: 100%;
  height: 560px;
  height: 659px;
  background: url("./data/img/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.swiper-zone-mt {
  margin-top: 7.6%;
}

.swiper1 {
  position: relative;
  margin-top: 7.6%;
  width: 936px;
  height: 404px;
  border: 1px solid #efefef;
  border-radius: 20px;
}

.swiper-controls {
  position: absolute;
  width: 180px;
  height: 45px;
  bottom: 0;
  right: 0;
  background-color: rgba(113,113,113,0.7);
  border-radius: 20px 0 0;
  z-index: 10;
}

.swiper-pagination {
  position: absolute;
  top: 21% !important;
  left: -19% !important;
  color: #fff !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
}

.popup-zone .swiper-button-prev {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  cursor: pointer;
}

.popup-zone .swiper-button-next {
  position: absolute;
  top: 50% !important;
  left: 81% !important;
  cursor: pointer;
}

.btn-swiper-toggle {
  position: absolute;
  bottom: 29%;
  z-index: 100;
  right: 23%;
}

/*===ï¿½Ö¿ï¿½Ã½ï¿½ï¿½ï¿? ï¿½È³ï¿½===*/
.swiper-box {
  position: relative;
  width: 404px;
  margin-left: 60px;
  background-color: #ebf6de;
  padding: 27px 24px;
  border-radius: 40px;
}

.swiper-box h1 {
  color: #698745;
  letter-spacing: -3px;
  font-size: 34px;
  padding-left: 12px;
}

.swiper-box::after {
  content: "";
  position: absolute;
  width: 104px;
  height: 122px;
  background-image: url("./data/img/frog3.png");
  background-repeat: no-repeat;
  top: -15px;
  right: 22px;
  z-index: 1;
}

.swiper-box-div>ul {
  flex-wrap: wrap;
  width: 100%;
  margin-top: 17px;
  position: relative;
  z-index: 1;
}

.swiper-box-div>ul>li {
  width: 170px;
  height: 83px;
  flex-wrap: wrap;
  border: 2px solid #efefef;
  border-radius: 10px;
  background-color: #fff;
  margin-top: 10px;
  padding: 16px 12px;
  border-radius: 10px;
  font-size: 15px;
}

.swiper-box-div>ul>li a {
  letter-spacing: -0.5px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-box-div>ul>li:nth-child(2n) {
  margin-left: 7px;
}

.info-inner-div {
  width: 90px;
}

.info-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*=== bannerZone ===*/
.banner-zone {
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.banner-swiper {
  display: flex !important;
/*   justify-content: space-between; */
  align-items: center;
}

.swiper-wrapper-banner {
  margin-left: 269px;
}

.swiper-controls-banner {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-zone-front {
  position: relative;
  z-index: 1000;
  background-color: #fff;
  width: 200px;
  padding: 27px 21px 27px 0;
  margin-top: 10px;
  margin-bottom: 10px;
}

.banner-wrapper {
  /* width: 85% !important; */
  display: flex;
}

.banner-image {
  /*  width: 200px;
  height: 50px; */
  background-color: rgb(241, 241, 241);
  padding: 10px 10px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner-image>a {
  width: 100%;
  height: 100%;
}

.banner-image>a>img {
  height: 50px;
  display: block;
  margin: auto;
}

.swiper-button-pause-banner {
  margin-top: 5px;
}

/*===footer===*/
.footer {
  background-color: #f6f6f6;
  font-size: 22px;
  padding-bottom: 47px;
}

.phone {
  font-size: 26px;
  font-weight: 600;
  margin-left: 10px;
}

.fs-20 {
  font-size: 20px;
}

.fs-20>a {
  text-align: center;
  display: inline-block;
}

.footer-text2 {
  display: flex;
}

.footer-text2>ul>li {
  margin-left: 24px;
  font-size: 19px;
}

.footer-text2>ul>li>a {
  position: relative;
}

.footer-text2>ul>li:nth-child(1) {
  margin-left: 0px;
}

.footer-text2>ul>li>a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #ccc;
  display: block;
  top: 8px;
  right: -13px;
}

.footer-text2>ul>li:last-child>a::after {
  content: "";
  display: none;
}

.fs-20>a:nth-child(3)::after {
  right: 40px;
}

.fs-20>a:last-child {
  margin-left: 0;
}

.fs-20>a:last-child::after {
  content: none;
}

.fs-18 {
  font-size: 18px;
  font-weight: 600;
}

.fs-16 {
  font-size: 16px;
}

.text-grey {
  color: #aaaaaa;
  font-size: 16px;
}

.footer-text-div {
  width: 60%;
  margin-top: 38px;
}

.footer-logo-div {
  width: 40%;
  align-items: end;
  padding-bottom: 39px;
}

@media (max-width: 1800px) {
  .notice-div::after {
    content: "";
    display: none;
  }
}

@media (max-width: 1500px) {
  .swiper-box-div>ul>li {
    width: 140px;
  }
}

@media (max-width: 1400px) {
  .upper-nav>ul {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .upper-nav>ul>li {
    width: 8%;
  }

  .upper-nav>ul>li a::before {
    content: "";
    display: none;
  }

  .upper-nav>ul>li:nth-child(2) a::before {
    content: "";
    display: none;
  }

  .notice-div {
    width: 100%;
    justify-content: space-between;
  }

  .notice-inner {
    font-size: 18px;
  }

  .notice-title {
    font-size: 18px;
  }

  .swiper-box-div>ul>li {
    width: 140px;
  }

  .swiper-box-div>ul>li:nth-child(2n) {
    margin-left: 0px;
  }
}

@media (max-width: 1200px) {
  .hamburger {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    z-index: 1001;
    cursor: pointer;
  }

  .mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-nav ul li {
    border-bottom: 1px solid #eee;
    font-size: 20px;
    background-color: #fff;
  }

  .mobile-nav ul li a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: #333;
    text-decoration: none;
  }

  .mobile-nav.show {
    max-height: 1000px;
  }

  .mobile-inner-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-inner-menu li a {
    padding: 10px 15px;
    display: block;
    font-size: 16px;
  }

  .mobile-inner-menu li a {
    position: relative;
    margin-left: 20px;
  }

  .mobile-inner-menu li a::before {
    content: "";
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #109cda;
    border-radius: 100%;
    display: block;
    top: 27px;
    left: 00px;
  }

  .hamburger-inner {
    width: 100%;
    height: 68px;
  }

  .logo {
    display: block;
  }

  .mobile_logo {
    position: relative;
  }

  .mobile_logo>.logo {
    position: absolute;
    top: 15px;
  }

  .mobile-nav {
    position: absolute;
    width: 100%;
    top: 68px;
  }

  .upper-nav {
    display: none;
  }

  .lower-nav {
    border: none;
  }

  .midium-show {
    display: block;
  }

  .visual-bg {
    top: -68px;
  }


  .notice-inner {
    margin-left: 0 !important;
    text-align: center;
  }

  .notice-title {
    font-size: 16px;
  }

  .d-m-block {
    display: block;
    text-align: center;
  }

  .swiper-box-div>ul>li {
    width: 116px;
    height: 84px;
    padding: 6px 12px;
    text-align: center;
  }

  .swiper-box-div>ul>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .info-img img {
    display: none;
  }

  .swiper1 {
    width: 100%;
    height: 100%;
  }

  .swiper-controls1 {
    position: absolute;
    bottom: 0 !important;
    right: 0 !important;

  }

  .swiper-box h1 {
    font-size: 20px;
  }

  /*   .swiper-box::after {
      content: "";
      display: none;
    } */

  .favorite-menu::before {
    content: "";
    display: none;
  }

  #notice {
    padding-top: 100px;
  }

  .swiper-wrapeer-banner {
    padding-left: 6%;
}

}

@media (max-width: 1000px) {
  .conatiner {
    max-width: 1000px;
  }

  .logo_img {
    width: 138px;
  }

  .pc-show {
    display: none;
  }

  .mobile-show {
    display: block;
    background: #1d5f6f !important;
    margin-top: -7px;
  }

  .btn-rounded-black {
    padding: 5px 5px 5px 5px;
  }

  .notice-div {
    width: 100%;
  }

  .notice-inner {
    width: 100%;
  }

  .favorit-notice-box-wrap {
    display: block;
  }

  .favorite-menu {
    width: 100%;
  }

  .notice-box {
    width: 100%;
    margin-top: 50px;
    margin-left: 0;
  }

  .notice-swiper-wrapper {
    text-align: center;
  }

  #swiper-zone {
    height: auto;
  }

  #swiper-zone>div {
    display: block;
  }

  .swiper1 {
    width: 100%;
    height: 100%;
  }

  .swiper-controls1 {
    position: absolute;
    bottom: 0 !important;
    right: 0 !important;

  }

  .swiper-box-div>ul>li {
    width: 30%;
  }

  .swiper-box-div>ul>li a {
    width: 100%;
  }

  .swiper-box-div>ul>li a>div {
    width: 100%;
  }

  .info-inner-div {
    width: 100%;
    font-size: 14px;
    letter-spacing: -2px;
    text-align: left;
  }

  .info-img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .info-img img {
    display: block;
    margin: auto;
  }

  .swiper-box h1 {
    font-size: 30px;
  }

  .swiper-box {
    width: 100%;
    margin-left: 0;
  }

  .mobile-notice-title {
    color: #fff;
    display: flex;
    justify-content: start;
    margin-left: 20px;
    padding-top: 15px;
    font-weight: bold;
  }

  .comminfo-title {
    margin-left: -30px;
  }

  .realtime-swiper-button-wrap {
    padding-top: 38px;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    top: 60% !important;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    top: 60% !important;
  }

  .notice-inner {
    padding-left: 0;
  }

  .btn-rounded-black {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 5px 13px 5px 13px;
  }

  .swiper-slide {
    height: auto !important;
  }

  .swiper-box::after {
    content: "";
    position: absolute;
    width: 104px;
    height: 122px;
    background-image: url(./data/img/frog3.png);
    background-repeat: no-repeat;
    background-size: 85%;
    top: -11px;
    right: 0px;
    z-index: 0;
  }
  .swiper-wrapeer-banner {
    padding-left: 12%;
}
/*   .banner-swiper>.swiper-wrapper {
    width: 100%;
    height: 50px;
    margin-left: 48px;
  } */

  .footer>div {
    display: block;
    padding-top: 20px;
    width: 100%;
  }

  .footer-text-div {
    width: 100%;
    margin-top: 0;
  }

  .text-grey {
    display: inline-block;
    letter-spacing: -2;
    line-height: 18px;
  }

  .footer-logo-div {
    width: 100%;
  }

}

@media (max-width: 500px) {

  .mobile-show {
    display: block;
    background: #1d5f6f !important;
    margin-top: 0px;
  }

  .pc-show {
    display: none;
  }

  .notice-swiper-prev {
    left: 0 !important;
  }

  .notice-swiper-next {
    right: 0 !important;
  }

  .notice-swiper .swiper-button-next {
    transform: none !important;
  }

  .notice-swiper .swiper-button-prev {
    transform: none !important;
  }

  #notice {
    margin-top: 42px;
  }

  .favorite-menu>div>div {
    flex-wrap: wrap;
    margin-top: 30px;
    text-align: center;
  }

  .favorite-menu>div>div>a {
    width: 50%;
  }

  .favorite-menu>div>div>a>dl>dd {
    font-size: 16px;
    padding-bottom: 23px;
  }

  .favorite_title {
    margin-top: 18px;
  }

  .notice-swiper .swiper-button-next,
  .notice-swiper .swiper-button-prev {
    color: #333;
    top: 50%;
    transform: translateY(-50%);
  }

  .btn-rounded-black {
    margin-bottom: 1.5em;
  }



  .swiper-box-div>ul>li {
    width: 48%;
  }

  .info-img {
    display: block;
    width: 30%;
    height: 100%;
  }



  .swiper1 {
    width: 100%;
    height: 100%;
  }

  .swiper-controls1 {
    position: absolute;
    bottom: 0 !important;
    right: 0 !important;

  }

  .banner-zone-front {
    width: 130px;
  }

  /* .banner-image {
    width: 171px !important;
    margin-right: 10% !important;
    left: 19%;
  } */

  .footer>div {
    display: block !important;
  }

  .footer-text-div {
    width: 100%;
    margin-top: 0px;
  }

  .footer-logo-div {
    width: 100%;
    margin-top: 20px;
  }

  .phone {
    margin-top: 20px;
    font-size: 20px;
    letter-spacing: -1px;
  }

  .footer-tel-div {
    display: flex;
    padding-top: 20px;
  }

  .footer-tel {
    display: block;
    font-size: 20px;
  }

  .footer-text2>ul {
    flex-wrap: wrap;
  }

  .footer-text2>ul>li:nth-child(2) {
    margin-left: 14px;
}
  .footer-text2>ul>li:last-child {
    margin-left: 14px;
}

  .btn-rounded-black {
    font-size: 11px;
  }

  .favorite-menu {
    padding: 48px 28px 0px 28px;
  }

  .favorite-menu>h1 {
    font-size: 26px;
    font-weight: 900;
  }

  .favorite-menu>div>div>a>dl>dd {
    font-size: 18px;
  }

  .notice-box>div>h1 {
    font-size: 30px;
  }

  .notice-box>div>span a {
    font-weight: 900;
  }

  .banner-zone-front {
    width: 146px;
    padding: 0;
    margin-top: 1px;
    margin-bottom: 1px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .banner-swiper>.swiper-wrapper {
    /*  width: 163px; */
    height: 50px;
  }

  .banner-image a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-wrapeer-banner {
    padding-left: 14%;
  }
  /* .swiper-slide {
        height: 50px !important;
      } */

  .banner-image>a {
    font-size: 13px;
  }
.width{
  width:40%;
}
  

  .footer-text2>ul>li>a::after {
    top: 6px;
    right: -7px;
  }

  .fs-18 {
    font-size: 15px;
    letter-spacing: -1px;
    line-height: 2px;
  }

  .text-grey {
    font-size: 14px;
    display: inline-block;
    line-height: 15px;
    letter-spacing: -1px;
    margin-top: 17px;
  }

  .fs-16 {
    font-size: 14px;
    display: inline-block;
  }

  .footer-logo-div {
    width: 100%;
  }

  .footer-logo-div>img {
    margin: auto;
    padding-left: 0 !important;
  }

}

@media (max-width: 1199px) {

  .lower-nav>ul,
  .inner-lower-nav {
    display: none !important;
  }

  #mobileNav {
    display: block;
  }
}