:root {
  --renewal-red:#e2001a;
  --renewal-red-dark:#b8000f;
  --renewal-yellow:#ffe100;
  --renewal-yellow-soft:#fff6c2;
  --renewal-dark:#333;
  --renewal-gray:#4a4a4a;
  --renewal-bg:#f7f7f5;
  --renewal-line:#e5e5e5;
  --renewal-text:#333;
  --renewal-sub:#666;
}

body {
  background: #fff !important;
  color: var(--renewal-text) !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif !important;
}

body a {
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.top-stripe {
  background: var(--renewal-yellow);
}

.site-header {
  border: 0 !important;
  border-bottom: 1px solid var(--renewal-line) !important;
  background: #fff !important;
}

.site-header {
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
.site-header .header-inner {
  width: auto !important;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-header .logo {
  position: static !important;
  display: block !important;
  float: none !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}
.site-header .logo img {
  display: block;
  width: auto !important;
  height: 66px !important;
  margin: 0 !important;
}
.site-header .header-info {
  flex: 1 1 auto;
  min-width: 220px;
}
.site-header .address {
  position: static !important;
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--renewal-sub) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}
.site-header .tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  white-space: nowrap;
  line-height: 1.15;
}
.site-header .tel-label {
  display: block;
  color: var(--renewal-red);
  font-size: 11px;
  font-weight: 700;
}
.site-header .tel-number {
  color: var(--renewal-dark);
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header .header-inner {
    justify-content: center;
  }
  .site-header .header-info {
    text-align: center;
  }
  .site-header .tel {
    align-items: center;
  }
}
@media (max-width: 640px) {
  .site-header .header-inner {
    padding: 14px 15px;
  }
  .site-header .logo img {
    height: 38px !important;
  }
  .site-header .header-info {
    flex-basis: 100%;
  }
  .site-header .tel-number {
    font-size: 27px;
  }
}
.header-actions {
  position: static !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0;
}
.header-actions > a {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 7px 8px !important;
  background: none !important;
  color: var(--renewal-gray) !important;
  font-size: 11px !important;
  font-weight: 700;
  text-decoration: none !important;
  text-indent: 0 !important;
}
.header-actions .icon-circle {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--renewal-bg);
  color: var(--renewal-red);
  font-size: 14px;
}
.header-actions > a.cta {
  flex-direction: row;
  padding: 10px 17px !important;
  border-radius: 999px;
  background: var(--renewal-red) !important;
  color: #fff !important;
  font-size: 13px !important;
  white-space: nowrap;
  box-shadow: 0 5px 12px rgba(226, 0, 26, 0.2);
}
.header-actions > a.cta:hover {
  transform: translateY(-2px);
  background: var(--renewal-red-dark) !important;
  box-shadow: 0 8px 18px rgba(226, 0, 26, 0.25);
}
.header-actions .cta .icon-circle {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.header-actions .cal-status-btn {
  flex-direction: row !important;
  gap: 8px !important;
  padding: 8px 15px !important;
  border: 2px solid var(--renewal-dark) !important;
  border-radius: 999px;
  background: var(--renewal-yellow) !important;
  color: var(--renewal-dark) !important;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.cal-status-dot-wrap {
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.cal-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55);
  animation: renewal-pulse 1.8s infinite;
}
.cal-status-dot.is-open {
  background: #2ecc71;
}
.cal-status-dot.is-closed {
  background: var(--renewal-red);
  animation-name: renewal-pulse-closed;
}

@keyframes renewal-pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
  }
}
@keyframes renewal-pulse-closed {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 0, 26, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(226, 0, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 0, 26, 0);
  }
}
.cal-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 20, 20, 0.6);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cal-modal-overlay.show {
  display: flex;
}
.cal-modal-overlay.in {
  opacity: 1;
}

.cal-modal-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 88vh;
  padding: 28px 26px 24px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(14px) scale(0.97);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cal-modal-overlay.in .cal-modal-box {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cal-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--renewal-bg);
  color: var(--renewal-dark);
  font-size: 16px;
  cursor: pointer;
}

.cal-modal-title {
  margin-bottom: 4px;
  color: var(--renewal-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cal-modal-box > h4 {
  margin: 0 0 12px;
  color: var(--renewal-dark);
  font-size: 18px;
  font-weight: 800;
}

.cal-modal-body #calender_control {
  margin-bottom: 14px;
}
.cal-modal-body #calender_control a {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--renewal-red);
  border-radius: 999px;
  color: var(--renewal-red-dark);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.cal-modal-body table.holiday {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.cal-modal-body table.holiday th {
  padding: 8px 0;
  border-bottom: 2px solid var(--renewal-line);
  color: var(--renewal-sub);
  font-size: 12px;
  text-align: center;
}
.cal-modal-body table.holiday th.sun {
  color: var(--renewal-red);
}
.cal-modal-body table.holiday th.sta {
  color: #2a6fdb;
}
.cal-modal-body table.holiday td {
  padding: 10px 0;
  border-bottom: 1px solid var(--renewal-line);
  color: var(--renewal-text);
  font-size: 13px;
  text-align: center;
}
.cal-modal-body table.holiday td.holi {
  border-radius: 8px;
  background: var(--renewal-red);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(226, 0, 26, 0.35);
}
.cal-modal-body table.holiday td.holi p {
  margin: 2px 0 0;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.cal-modal-body #calender_save.none {
  display: none;
}

.cal-modal-loading {
  padding: 40px 0;
  color: var(--renewal-sub);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 900px) {
  .header-actions {
    width: 100% !important;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .header-actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }
  .header-actions > a.cta, .header-actions > a.cal-status-btn {
    justify-content: center;
  }
}
.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--renewal-dark);
  color: #fff;
  padding: 10px 15px;
  font: 700 12px inherit;
  cursor: pointer;
}

#navigation.main-nav {
  position: relative !important;
  z-index: 100 !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: var(--renewal-gray) !important;
  overflow: visible !important;
}
#navigation.main-nav > ul {
  display: flex !important;
  max-width: 1180px !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  justify-content: space-between;
  list-style: none !important;
}
#navigation.main-nav > ul > li {
  position: relative !important;
  float: none !important;
  width: 20% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
}
#navigation.main-nav > ul > li > a {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 15px 12px !important;
  background: none !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-indent: 0 !important;
}
#navigation.main-nav > ul > li:hover > a {
  background: var(--renewal-red) !important;
}
#navigation .sub {
  display: none !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  z-index: 110;
  width: 220px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 0 8px 8px;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  overflow: hidden !important;
  list-style: none !important;
}
#navigation li:hover > .sub {
  display: block !important;
}
#navigation .sub li {
  float: none !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
}
#navigation .sub a {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  padding: 11px 17px !important;
  border-bottom: 1px solid var(--renewal-line) !important;
  background: #fff !important;
  color: var(--renewal-dark) !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-indent: 0 !important;
}
#navigation .sub a:hover {
  background: var(--renewal-yellow-soft) !important;
  color: var(--renewal-red-dark) !important;
}

@media (max-width: 640px) {
  .menu-toggle {
    display: block;
    grid-column: 1/-1;
    width: 100%;
  }
  #navigation.main-nav {
    display: none;
  }
  #navigation.main-nav > ul {
    display: block !important;
    padding: 0 !important;
  }
  #navigation.main-nav > ul > li {
    width: 100% !important;
  }
  #navigation.main-nav > ul > li > a {
    text-align: left !important;
    padding: 13px 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }
  #navigation .sub {
    position: static !important;
    display: block !important;
    width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }
  #navigation .sub a {
    padding-left: 32px !important;
  }
}
#indeximage {
  margin: 0 !important;
  background: #111;
}
#indeximage img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
}

#contents {
  padding: 6px 0 64px !important;
  background: var(--renewal-bg) !important;
}
#contents > .wrap {
  display: flex;
  width: auto !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

#main {
  float: none !important;
  flex: 1;
  min-width: 0;
  width: auto !important;
  margin: 0 !important;
  padding: 34px !important;
  border: 1px solid var(--renewal-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.055);
}

#sub {
  float: none !important;
  width: 270px !important;
  margin: 0 !important;
  padding: 0 !important;
}

#groupsite {
  display: none !important;
}

@media (max-width: 900px) {
  #contents > .wrap {
    display: block;
  }
  #main {
    width: 100% !important;
  }
  #sub {
    width: 100% !important;
    margin-top: 30px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
  }
}
@media (max-width: 640px) {
  #contents {
    padding: 34px 0 !important;
  }
  #contents > .wrap {
    padding: 0 12px !important;
  }
  #main {
    padding: 22px 17px !important;
    border-radius: 10px;
  }
  #sub {
    display: block;
  }
  .right img, .left img {
    float: none !important;
    margin: 0 auto 15px !important;
  }
}
.panlist {
  margin: -34px -34px 30px !important;
  padding: 12px 34px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--renewal-line) !important;
  border-radius: 14px 14px 0 0;
  background: #fafafa !important;
  color: var(--renewal-sub) !important;
  font-size: 11px !important;
}

#main h2, #main h3:not(.calender):not(.topix), #main h4 {
  height: auto !important;
  background: none !important;
  text-indent: 0 !important;
  color: var(--renewal-dark) !important;
  font-family: "Noto Sans JP", sans-serif !important;
}

#main h2 {
  position: relative;
  margin: 38px 0 22px !important;
  padding: 0 0 13px !important;
  border: 0 !important;
  font-size: 27px !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
}
#main h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 46px;
  height: 3px;
  background: var(--renewal-red);
}
#main h3 {
  margin: 34px 0 18px !important;
  padding: 13px 17px !important;
  border: 0 !important;
  border-left: 5px solid var(--renewal-red) !important;
  border-radius: 0 8px 8px 0;
  background: var(--renewal-bg) !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}
#main h4 {
  margin: 28px 0 15px !important;
  padding: 10px 14px !important;
  border: 0 !important;
  border-bottom: 2px solid var(--renewal-yellow) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
}

#main p, #main li, #main td, #main th {
  font-size: 14px;
  line-height: 1.8;
}

#main a:not(.link):not([class]) {
  color: var(--renewal-red-dark);
}

#main a.link, #main input[type=submit], #main input[type=button], #main button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: auto !important;
  margin: 14px 0;
  padding: 11px 22px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--renewal-red) !important;
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(226, 0, 26, 0.16);
}

#main img {
  max-width: 100%;
  height: auto;
}
#main table {
  max-width: 100%;
  border-collapse: collapse;
  background: #fff;
}
#main th {
  background: var(--renewal-gray) !important;
  color: #fff !important;
}

#main th, #main td {
  padding: 10px !important;
  border: 1px solid var(--renewal-line) !important;
}

#main input[type=text], #main input[type=email], #main input[type=tel], #main input[type=password], #main select, #main textarea {
  max-width: 100%;
  padding: 11px 12px !important;
  border: 1px solid #ccc !important;
  border-radius: 7px !important;
  background: #fff !important;
  font: inherit !important;
}

#main input:focus, #main select:focus, #main textarea:focus {
  outline: 2px solid rgba(226, 0, 26, 0.18);
  border-color: var(--renewal-red) !important;
}

#contact {
  width: 100%;
  margin-top: 40px !important;
  border: 0 !important;
  border-radius: 10px;
  overflow: hidden;
  background: var(--renewal-yellow-soft) !important;
}
#contact td {
  border: 0 !important;
  background: transparent !important;
  text-align: center;
}

#sub > h3 {
  height: auto !important;
  margin: 0 !important;
  padding: 13px 16px !important;
  border: 0 !important;
  border-radius: 10px 10px 0 0;
  background: var(--renewal-gray) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  text-indent: 0 !important;
}

#sub #holiday, #sub #topix, #sub .itembox {
  margin: 0 0 22px !important;
  padding: 15px !important;
  border: 1px solid var(--renewal-line) !important;
  border-top: 0 !important;
  border-radius: 0 0 10px 10px;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

#sub .banner {
  margin: 0 0 14px !important;
  padding: 14px !important;
  border: 1px solid var(--renewal-line) !important;
  border-radius: 10px;
  background: #fff !important;
  text-align: center;
}
#sub .banner img {
  max-width: 100%;
  height: auto;
}
#sub #topix li {
  padding: 10px 0 !important;
  border-bottom: 1px solid var(--renewal-line) !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
}

.shaken-contact,
.flow-contact,
.necessity-contact,
.price-contact,
#contents #main #contact {
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
}

@media (max-width: 640px) {
  .panlist {
    margin: -22px -17px 22px !important;
    padding: 10px 17px !important;
  }
  #main h2 {
    font-size: 22px !important;
  }
  #main h3 {
    font-size: 18px !important;
  }
  #main table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }
}
#footer.site-footer {
  clear: both !important;
  float: none !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 68px 0 0 !important;
  border: 0 !important;
  border-top: 4px solid var(--renewal-yellow) !important;
  background: var(--renewal-yellow-soft) !important;
  background-image: none !important;
  color: var(--renewal-dark) !important;
}
#footer.site-footer * {
  box-sizing: border-box;
}
#footer.site-footer > .wrap:not(.footer-brand):not(#footer_nemu) {
  width: auto !important;
  max-width: 1180px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  background: transparent !important;
  background-image: none !important;
  text-align: initial !important;
}
#footer .footer-brand {
  clear: both !important;
  display: flex !important;
  align-items: center;
  gap: 28px;
  max-width: none !important;
  height: auto !important;
  margin: 0 0 40px !important;
  padding: 0 0 36px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: none !important;
  flex-wrap: wrap;
}
#footer .footer-brand .logo {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
#footer .footer-brand .logo img {
  display: block;
  height: 66px;
  width: auto;
}
#footer .footer-brand .tel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  white-space: nowrap;
}
#footer .footer-brand .tel-label {
  display: block;
  color: var(--renewal-red);
  font-size: 11px;
  font-weight: 700;
}
#footer .footer-brand .tel-number {
  color: var(--renewal-dark);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}
#footer .footer-nav {
  clear: both;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100% !important;
  height: auto !important;
  margin: 0 0 44px !important;
  padding: 0 !important;
  background: none !important;
}
#footer .footer-nav > div {
  float: none !important;
  width: auto !important;
  min-width: 0;
}
#footer .footer-nav h5 {
  height: auto !important;
  margin: 0 0 16px !important;
  padding: 0 0 8px !important;
  border: 0 !important;
  border-bottom: 2px solid var(--renewal-dark) !important;
  background: none !important;
  color: var(--renewal-dark) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.5 !important;
  text-indent: 0 !important;
}
#footer .footer-nav ul {
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
#footer .footer-nav li {
  float: none !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  background: none !important;
}
#footer .footer-nav a {
  display: inline !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  color: var(--renewal-dark) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  text-decoration: none !important;
  text-indent: 0 !important;
}
#footer .footer-bottom {
  clear: both !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  padding: 28px 20px !important;
  background: var(--renewal-dark) !important;
  background-image: none !important;
  text-align: center !important;
  color: #fff !important;
  font-size: 10px !important;
}
#footer .footer-bottom ul {
  float: none !important;
  display: flex !important;
  justify-content: center;
  gap: 18px;
  width: auto !important;
  height: auto !important;
  margin: 0 0 10px !important;
  padding: 0 !important;
  list-style: none !important;
  flex-wrap: wrap;
}
#footer .footer-bottom li {
  float: none !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}
#footer .footer-bottom a {
  display: inline !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  color: #fff !important;
  font-size: 11px !important;
  line-height: 1.5 !important;
  text-decoration: none !important;
}
#footer .footer-bottom address {
  clear: both !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  color: #fff !important;
  font-size: 10px !important;
  font-style: normal !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

#pagetop.pagetop {
  position: fixed !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 500 !important;
  float: none !important;
  display: flex;
  width: 52px !important;
  height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--renewal-red) !important;
  background-image: none !important;
  background-position: initial !important;
  background-size: auto !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, background-color 0.18s ease;
  line-height: normal !important;
  text-decoration: none !important;
}
#pagetop.pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
#pagetop.pagetop:after {
  content: none;
}
#pagetop.pagetop .arrow {
  display: block;
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #fff;
  border-left: 6px solid transparent;
}

@media (max-width: 900px) {
  #footer .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  #footer .footer-brand {
    display: block !important;
    text-align: center;
  }
  #footer .footer-brand .logo img {
    height: 44px;
    margin: 0 auto 12px;
  }
  #footer .footer-brand .tel {
    align-items: center;
  }
  #pagetop.pagetop {
    right: 16px !important;
    bottom: 16px !important;
    width: 46px !important;
    height: 46px !important;
  }
}

/*# sourceMappingURL=style.css.map */
