@charset "UTF-8";
html {
  margin: 0;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 17px;
  color: #707070;
  line-height: 1.9;
  margin-top: 0 !important;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: white;
}

a {
  text-decoration: underline;
}
a.button {
  text-decoration: none !important;
}

.a_none {
  text-decoration: none !important;
}

.pc_header {
  display: none;
}
@media screen and (min-width: 850px) {
  .pc_header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 200;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 64px;
  }
  .pc_header .pc_header_inner {
    max-width: 1280px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .pc_header .pc_logo_link {
    text-decoration: none;
    flex-shrink: 0;
  }
  .pc_header .pc_logo {
    height: 36px;
    width: auto;
    display: block;
  }
  .pc_header .pc_nav {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
    margin-left: 16px;
    padding: 0;
  }
  .pc_header .pc_nav_item {
    position: relative;
  }
  .pc_header .pc_nav_item > a,
  .pc_header .pc_nav_item > button.pc_nav_dropdown_trigger {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
    background: transparent;
    border: 0;
    font-family: inherit;
    cursor: pointer;
  }
  .pc_header .pc_nav_item > a:hover,
  .pc_header .pc_nav_item > button.pc_nav_dropdown_trigger:hover {
    background: #F0FAFA;
    color: #35A0A0;
  }
  .pc_header .pc_nav_item.pc_nav_has_dropdown > a::after, .pc_header .pc_nav_item.pc_nav_has_dropdown > button.pc_nav_dropdown_trigger::after {
    content: " ▾";
    font-size: 10px;
  }
  .pc_header .pc_nav_item:hover .pc_dropdown {
    display: block;
  }
  .pc_header .pc_dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    padding: 8px;
    min-width: 180px;
    z-index: 300;
  }
  .pc_header .pc_dropdown a {
    display: block;
    padding: 7px 14px;
    font-size: 12px;
    color: #555;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s;
  }
  .pc_header .pc_dropdown a:hover {
    background: #F0FAFA;
    color: #35A0A0;
  }
  .pc_header .pc_header_cta {
    background: #06C755;
    color: white !important;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none !important;
    white-space: nowrap;
    font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
    flex-shrink: 0;
    transition: background 0.2s;
  }
  .pc_header .pc_header_cta:hover {
    background: #05a648;
  }
}

header {
  width: 100%;
  position: fixed;
  z-index: 100;
  height: 60px !important;
  background-color: white !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) !important;
  overflow: hidden !important;
}
@media screen and (min-width: 850px) {
  header {
    display: none;
  }
}
header .header_background {
  display: none !important;
}
header .header_flex {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
header .header_flex .top_icon {
  width: fit-content;
  max-width: 200px;
  height: 40px;
  object-fit: cover;
}
header .header_flex .menu_icon {
  height: 20px;
}

.slide_menu {
  position: fixed;
  top: 10vh;
  left: 15%;
  width: 70%;
  height: 500px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  z-index: 1000;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.slide_menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slide_menu .link_box {
  display: block;
  width: 100%;
  height: auto;
  padding: 30px 0;
  overflow-y: scroll;
}
.slide_menu .link_box a,
.slide_menu .link_box button.slide_menu_dropdown_label {
  display: block;
  color: #C6B3A1;
  font-size: 18px;
  line-height: 40px;
  width: 60%;
  margin: 0 auto;
  text-decoration: none;
  background: transparent;
  border: 0;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  padding: 0;
}
.slide_menu .link_box .menu_link {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.slide_menu .link_box .menu_link a {
  line-height: 25px;
  font-size: 14px;
  margin-left: 20px;
}
@media screen and (min-width: 850px) {
  .slide_menu {
    display: none !important;
  }
}

.menu_trigger {
  cursor: pointer;
  z-index: 1001;
}

.header_flex {
  position: relative;
  z-index: 1001;
}

footer {
  position: relative;
  width: 100%;
}
footer .sp_banner {
  position: fixed;
  bottom: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 1000;
  animation: fadeIn 3s ease forwards;
}
@media (min-width: 850px) {
  footer .sp_banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: auto;
    padding: 0;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }
  footer .sp_banner .sp_banner_notice {
    flex: none;
    width: auto;
    padding: 6px 14px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
  }
  footer .sp_banner .line {
    height: 54px;
    padding: 0 22px 0 14px;
    border-radius: 28px;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  footer .sp_banner .line:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  }
  footer .sp_banner .line img {
    width: 26px;
    height: 26px;
    margin-right: 8px;
  }
  footer .sp_banner .line p {
    font-size: 14px;
  }
}
footer .sp_banner a {
  text-decoration: none !important;
  flex-shrink: 0;
}
footer .sp_banner .sp_banner_notice {
  flex: 1;
  margin: 0;
  padding: 0 2px 0 4px;
  color: #0F2030;
  font-size: 12px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  min-width: 0;
}
footer .sp_banner .line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 14px 0 10px;
  margin: 0;
  background-color: #06C755;
  border-radius: 8px;
}
footer .sp_banner .line img {
  display: block;
  width: 28px;
  height: 28px;
  margin: 0 6px 0 0;
  border-radius: 5px;
}
footer .sp_banner .line p {
  line-height: 1;
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-weight: 600;
  color: white;
  margin: 0;
  white-space: nowrap;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
footer .footer_content {
  position: relative;
  padding-top: 40px;
  background-color: #8AA5B2;
}
footer .footer_content .logo {
  margin: auto;
  margin-bottom: 20px;
  width: 250px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
}
footer .footer_content .logo img {
  width: 80%;
}
footer .footer_content .icon_flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer_content .icon_flex .img_box {
  margin: 0 10px;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_content .icon_flex .img_box img {
  width: 25px;
  height: 25px;
}
footer .footer_content .info {
  width: 80%;
  margin: 10px auto;
  color: white;
}
footer .footer_content .info h2 {
  font-size: 14px;
  margin-bottom: 5px;
}
footer .footer_content .info p {
  font-size: 12px;
  padding-left: 20px;
  margin-bottom: 20px;
  line-height: 20px;
}
footer .footer_content .info a {
  font-size: 12px;
  padding: 12px 0 12px 20px;
  line-height: 1.5;
  min-height: 44px;
  display: block;
  box-sizing: border-box;
}
footer .footer_content .google_map {
  margin: 20px auto;
  display: block;
  width: 90%;
  max-width: 500px;
  height: 400px;
  border-radius: 10px;
}
footer .footer_content .google_map_placeholder {
  background-color: #e8eef1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
footer .footer_content .google_map_placeholder .google_map_load_btn {
  background: white;
  border: 1px solid #9EC8DF;
  border-radius: 24px;
  padding: 10px 20px;
  font-size: 13px;
  color: #3A7A95;
  cursor: pointer;
  font-family: inherit;
}
footer .footer_content .google_map_placeholder .google_map_load_btn:hover {
  background: #F0F8FB;
}
footer .footer_content .footer_link_container {
  margin-top: 40px;
  background-color: #8AA5B2;
}
footer .footer_content .footer_link_container .grid_container {
  display: grid;
}
footer .footer_content .footer_link_container .grid_container .grid_item {
  padding: 10px;
}
footer .footer_content .footer_link_container .grid_container .grid_item a {
  text-decoration: none;
}
footer .footer_content .footer_link_container .grid_container .grid_item h2 {
  font-size: 14px;
  font-family: -apple-system, "system-ui", Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  margin-bottom: 5px;
  color: white;
}
footer .footer_content .footer_link_container .grid_container .grid_item .link_list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
footer .footer_content .footer_link_container .grid_container .grid_item .link_list a {
  display: block;
  font-size: 10px;
  color: white;
  line-height: 1.5;
  min-height: 44px;
  padding: 12px 0;
  box-sizing: border-box;
}
footer .footer_content .footer_link_container .grid_1 {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
footer .footer_content .footer_link_container .grid_2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
footer .footer_content .copyright {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  margin-top: -10px;
  color: white;
  font-size: 12px;
  background-color: #8AA5B2;
  border: 10px #8AA5B2 solid;
}

.fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2s, transform 2s;
}

.fadeup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.exit-popup-overlay .exit-popup {
  position: relative;
  max-width: 420px;
  width: 90%;
}
.exit-popup-overlay .exit-popup img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.exit-popup-overlay .exit-popup .close-button {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 1;
  padding: 0;
  font-size: 0;
  color: transparent;
}
.exit-popup-overlay .exit-popup .close-button::before, .exit-popup-overlay .exit-popup .close-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #555;
  border-radius: 1px;
}
.exit-popup-overlay .exit-popup .close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.exit-popup-overlay .exit-popup .close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.single_page {
  padding-top: 100px;
}
@media screen and (min-width: 850px) {
  .single_page {
    padding-top: 10px;
  }
}
.single_page {
  padding-bottom: 150px;
}
.single_page .pankuzu {
  padding-left: 12px;
  font-family: A1 Gothic R, sans-serif;
  font-size: 13px;
  color: #887462;
}
.single_page .single_page_title_box {
  position: relative;
  padding-top: 0px;
  height: 85px;
  width: 100%;
  padding-left: 40px;
}
.single_page .single_page_title_box .eng {
  font-size: 14px;
  margin-top: 90px;
  margin-bottom: 5px;
  font-family: A1 Gothic R, sans-serif;
  color: #887462;
}
.single_page .single_page_title_box .title {
  font-size: 18px;
  font-family: "A1 Gothic M", sans-serif;
}
.single_page .single_page_title_box img {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.single_page .blog_content {
  width: 95%;
  margin: 0 auto;
  display: block;
}
.single_page .blog_content .index {
  width: 95%;
  margin: 25px auto;
  border: 2px solid #3A7A95;
  border-radius: 10px;
  background-color: white;
}
.single_page .blog_content .index a {
  color: #707070;
  text-decoration: none;
}
.single_page .blog_content .index .index_title {
  width: 100%;
  font-size: 16px;
  height: 40px;
  line-height: 35px;
  font-family: "A1 Gothic M", sans-serif;
  text-align: center;
  background-color: #3A7A95;
  border: 2px solid #3A7A95;
  color: white;
  border-radius: 10px 10px 0 0;
}
.single_page .blog_content .index ol {
  margin: 10px 20px;
  list-style: none;
  counter-reset: my-counter;
}
.single_page .blog_content .index ol .h2_list {
  counter-increment: my-counter;
  font-size: 14px;
  font-family: "A1 Gothic M", sans-serif;
  margin-top: 10px;
}
.single_page .blog_content .index ol .h2_list::before {
  content: counter(my-counter) ".";
  margin-right: 10px;
  font-size: 14px;
  line-height: 16px;
  font-family: "A1 Gothic M", sans-serif;
}
.single_page .blog_content .index ol .h2_list ul li {
  position: relative;
  font-size: 13px;
  font-weight: normal;
  line-height: 1.4;
  margin: 8px 10px;
  padding-left: 15px;
}
.single_page .blog_content .index ol .h2_list ul li::before {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid gray;
  content: "";
}
.single_page .blog_content .index ol .h2_list ul li a {
  text-decoration: none;
}
.single_page .blog_content h2 {
  padding: 0 10px;
  font-size: 21px;
  font-family: "A1 Gothic M", sans-serif;
  color: #3A7A95;
  margin-top: 40px;
}
.single_page .blog_content h3 {
  margin: 10px 15px;
  margin-top: 30px;
  font-size: 17px;
  padding: 5px 10px;
  line-height: 22px;
  border-left: 4px solid #3A7A95;
  color: #717171;
  font-family: "A1 Gothic M", sans-serif;
}
.single_page .blog_content h4 {
  font-size: 18px;
  width: 95%;
  margin: 5px auto;
  padding: 5px 10px;
  font-family: "A1 Gothic M", sans-serif;
}
.single_page .blog_content p {
  padding: 0 20px;
  margin: 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: #717171;
}
.single_page .blog_content img {
  display: block;
  max-width: 85%;
  max-height: 45%;
  object-fit: contain;
  margin: 10px auto;
}
.single_page .blog_content .wp-block-lazyblock-point .p-content__point .p-content__pointTitle {
  padding: 0 20px;
  font-size: 15px;
  font-family: "A1 Gothic M", sans-serif;
  color: #3A7A95;
  margin-top: 40px;
}
.single_page .blog_content .wp-block-lazyblock-point .p-content__point .p-content__pointList {
  width: 90%;
  margin: 20px auto;
  margin-top: 10px;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
}
.single_page .blog_content .wp-block-lazyblock-point .p-content__point .p-content__pointList li {
  font-size: 15px;
  font-family: "A1 Gothic M", sans-serif;
  color: #3A7A95;
}
.single_page .blog_content .wp-block-lazyblock-point .p-content__point .p-content__pointList p {
  font-size: 13px;
  color: #717171;
  width: 100%;
  margin: 5px 0 15px 0;
  padding-left: 10px;
}
.single_page .blog_content .wp-block-lazyblock-point .p-content__point .p-content__pointList a {
  text-decoration: underline;
}
.single_page .blog_content .wp-block-lazyblock-link-list {
  width: 90%;
  margin: 10px auto;
  padding: 5px 0;
}
.single_page .blog_content .wp-block-lazyblock-link-list a {
  color: rgb(130, 154, 200);
}
.single_page .blog_content .wp-block-lazyblock-link-list p {
  width: 100%;
  font-size: 13px;
  margin: 0 auto;
  padding: 0;
}
.single_page .blog_content .wp-block-lazyblock-link-list .link-list-title {
  width: 100%;
  font-family: "A1 Gothic M", sans-serif;
  padding: 0;
  text-align: center;
}
.single_page .blog_content .wp-block-lazyblock-link-list .link-list {
  list-style: none;
  border: 2px solid pink;
  border-radius: 5px;
  padding: 5px;
  background-color: white;
}
.single_page .blog_content .wp-block-lazyblock-link-list li {
  width: 95%;
  margin: 0 auto;
  font-size: 14px;
  list-style: none;
}
.single_page .blog_content table .has-fixed-layout {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.single_page .blog_content table .has-fixed-layout th,
.single_page .blog_content table .has-fixed-layout td {
  padding: 15px;
  text-align: center;
  border: 1px solid #e0e0e0;
}
.single_page .blog_content table .has-fixed-layout th {
  background: #f8f9fa;
  font-family: "A1 Gothic M", sans-serif;
}
.single_page .blog_content table .has-fixed-layout tr:nth-child(even) {
  background: #fdfdfd;
}
.single_page .blog_content table .has-fixed-layout tr:hover {
  background: #f1f1f1;
  transition: background 0.3s ease;
}
.single_page .blog_content table .has-fixed-layout img {
  width: 80px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
.single_page .blog_content table .has-fixed-layout img:hover {
  transform: scale(1.1);
}
.single_page .blog_content table .has-fixed-layout a {
  color: #3A7A95;
  text-decoration: none;
  font-family: "A1 Gothic M", sans-serif;
  transition: color 0.3s ease;
}
.single_page .blog_content table .has-fixed-layout a:hover {
  color: rgb(43.7101449275, 91.9420289855, 112.2898550725);
}
.single_page .blog_content table .has-fixed-layout strong {
  font-size: 1.1em;
  color: #333;
}
.single_page .blog_content table .has-fixed-layout mark {
  background: #FFF2C0;
  padding: 3px 5px;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .single_page .blog_content table .has-fixed-layout th,
  .single_page .blog_content table .has-fixed-layout td {
    padding: 10px;
    font-size: 14px;
  }
  .single_page .blog_content table .has-fixed-layout img {
    width: 60px;
  }
}
.single_page .blog_content figcaption {
  font-size: 12px;
  color: #717171;
}
.single_page .blog_content .wp-block-list {
  width: 95%;
  margin: 20px auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
  border-radius: 10px;
  background-color: white;
  padding: 20px;
  list-style: circle;
}
.single_page .blog_content .wp-block-list li {
  width: 100%;
  list-style: none;
  font-size: 14px;
  line-height: 1.6;
}
.single_page .blog_content .wp-block-list.shadow-list {
  width: 95%;
  margin: 20px auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
  border-radius: 10px;
  background-color: white;
  padding: 20px;
}
.single_page .blog_content .wp-block-list.shadow-list li {
  width: 100%;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
}
.single_page .blog_content .wp-block-list.pink-list {
  width: 95%;
  margin: 20px auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.0862745098);
  border-radius: 10px;
  background-color: white;
  padding: 20px;
}
.single_page .blog_content .wp-block-list.pink-list li {
  width: 100%;
  list-style: none;
  font-size: 13px;
  line-height: 1.4;
}

.exit-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.3s ease-out;
}
.exit-popup-overlay .exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  z-index: 1001;
  animation: slideIn 0.4s ease-out;
}
.exit-popup-overlay .exit-popup img {
  width: 100%;
  height: auto;
}
.exit-popup-overlay .exit-popup .popup-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.exit-popup-overlay .exit-popup .popup-buttons .popup-button {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.exit-popup-overlay .exit-popup .popup-buttons .popup-button.primary-button {
  background-color: #3A7A95;
  color: #fff;
}
.exit-popup-overlay .exit-popup .popup-buttons .popup-button.primary-button:hover {
  background-color: rgb(43.7101449275, 91.9420289855, 112.2898550725);
}
.exit-popup-overlay .exit-popup .popup-buttons .popup-button.secondary-button {
  background-color: #D5ECF8;
  color: #3A7A95;
}
.exit-popup-overlay .exit-popup .popup-buttons .popup-button.secondary-button:hover {
  background-color: rgb(191.1428571429, 226.112244898, 244.3571428571);
}
.exit-popup-overlay .exit-popup .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 5px;
}
.exit-popup-overlay .exit-popup .close-button:hover {
  color: #333333;
}

@media (max-width: 480px) {
  .exit-popup {
    padding: 20px;
  }
  .exit-popup .popup-header .popup-title {
    font-size: 20px;
  }
  .exit-popup .popup-header .popup-subtitle {
    font-size: 14px;
  }
  .exit-popup .popup-buttons {
    flex-direction: column;
  }
  .exit-popup .popup-buttons .popup-button {
    width: 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
