body {
  min-width: auto;
  max-width: none;
}

.main__body .section_inner .main__title {
  position: relative;
  font-size: 22px;
  color: #25378E;
  padding-left: 20px;
}
.main__body .section_inner .main__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background-color: #25378E;
}
@media (max-width: 467.98px) {
  .main__body .section_inner .main__title {
    font-size: 18px;
  }
}
.main__body .section_block {
  padding-top: 50px;
  padding-bottom: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 40px 0 10px;
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 467.98px) {
  .service-grid {
    grid-template-columns: auto;
  }
}
.service-grid__item {
  border: 1px solid #e0e0e0;
  padding: 40px 24px;
  text-align: center;
  background-color: #fff;
  transition: box-shadow 0.3s;
}
.service-grid__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.service-grid__item p {
  text-align: left;
}
.service-grid__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background-repeat: no-repeat;
  background-size: contain;
}
.service-grid__icon--contract {
  background-image: url("../img_new/icon-contract.png");
}
.service-grid__icon--faq {
  background-image: url("../img_new/icon-faq.png");
}
.service-grid__icon--billing {
  background-image: url("../img_new/icon-billing.png");
}
.service-grid__icon--inspection {
  background-image: url("../img_new/icon-inspection.png");
}
.service-grid__icon--emergency {
  background-image: url("../img_new/icon-emergency.png");
}
.service-grid__icon--coming-soon {
  background-image: url("../img_new/icon-coming-soon.png");
}
.service-grid__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #25378E;
}
.service-grid__text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.service-grid__note {
  font-size: 14px;
  text-align: left;
  color: #25378E;
  margin-top: 0px;
}

.accordion {
  width: 100%;
  margin: 0 auto;
  border: none;
}
.accordion__title::before {
  content: none;
}
.accordion__title:after {
  content: none;
}
.accordion__item {
  margin-bottom: 10px;
  overflow: hidden;
}
.accordion__header {
  width: 100%;
  background: #fff;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: #002875;
  cursor: pointer;
  position: relative;
  border: 1px solid #25378E;
  padding-left: 30px;
}
@media (max-width: 467.98px) {
  .accordion__header {
    padding-left: 12px;
  }
}
.accordion__header .accordion__title {
  position: relative;
  font-size: 22px;
  color: #25378E;
  padding-left: 20px;
}
@media (max-width: 467.98px) {
  .accordion__header .accordion__title {
    font-size: 18px;
  }
}
.accordion__header .accordion__title::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background-color: #25378E;
  transform: none;
}
.accordion__header .accordion_arrow {
  width: 70px;
  height: 100%;
  background: #25378E;
  padding: 20px;
}
.accordion__header:focus {
  outline: none;
}
.accordion__icon {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg);
  transition: transform 0.3s;
  padding: 5px;
  box-sizing: content-box;
}
.accordion__content {
  display: none;
  padding: 20px;
  font-size: 14px;
  color: #333;
  border-right: 1px solid #E3E3E3;
  border-left: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
}
.accordion__item.is-open .accordion__content {
  display: block;
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(-135deg);
}

.account-register {
  text-align: center;
  margin: 40px auto;
}
.account-register__lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.account-register__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.account-register a.account-register__button {
  display: inline-block;
  background-color: #FA6400;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 18px 48px;
  border-radius: 9999px;
  transition: background-color 0.3s;
}
.account-register a.account-register__button:hover {
  background-color: #d15400;
}
.account-register__link {
  font-size: 14px;
}
.account-register__link a {
  color: blue;
  font-weight: bold;
  text-decoration: underline;
}
.account-register__link a:hover {
  text-decoration: none;
}

.flow__description {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.8;
  display: flex;
  gap: 20px;
  border: 1px solid #E3E3E3;
  padding: 15px 30px;
}
@media (max-width: 467.98px) {
  .flow__description {
    display: block;
    padding: 10px;
  }
}
.flow__description strong {
  display: block;
  font-weight: bold;
  margin-bottom: 12px;
}
.flow__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}
.flow__icon {
  width: 16px;
  height: 16px;
}
.flow__text {
  font-weight: bold;
  font-size: 16px;
}
.flow__button {
  display: inline-block;
  background-color: #FA6400;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 9999px;
  margin: 10px 0;
  transition: background-color 0.3s;
}
.flow__button:hover {
  background-color: #c75000;
}
.flow__link {
  font-size: 16px;
}
.flow__link a {
  color: #0033cc;
  font-weight: bold;
  text-decoration: underline;
}
.flow__link a:hover {
  text-decoration: none;
}
.flow__step {
  border-left: 3px solid #2a4ca1;
  padding-left: 16px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #E3E3E3;
  padding: 15px 30px;
}
@media (max-width: 467.98px) {
  .flow__step {
    display: block;
    padding: 10px;
  }
}
.flow__step:last-child {
  margin-bottom: 0;
}
.flow__step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}
.flow__step-title span {
  color: #2a4ca1;
  margin-right: 8px;
}
@media (max-width: 467.98px) {
  .flow__step-title span {
    display: block;
  }
}
.flow__step-note {
  font-size: 12px;
  color: #666;
  margin: 8px 0;
}
.flow__step-image {
  margin-top: 16px;
  max-width: 100%;
  height: auto;
  width: 350px;
  object-fit: contain;
}

.flow__textarea {
  width: 70%;
}
@media (max-width: 467.98px) {
  .flow__textarea {
    width: 100%;
  }
}

.nested-accordion {
  margin-top: 20px;
}
.nested-accordion__item {
  border-top: 3px solid #2a4ca1;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.nested-accordion__item button:not([disabled]) {
  border: none;
}
.nested-accordion__header {
  width: 100%;
  background: #fff;
  border-left: 4px solid #2a4ca1;
  color: #002875;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.nested-accordion__header:focus {
  outline: none;
  border: none;
}
.nested-accordion__icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #002875;
  border-bottom: 2px solid #002875;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
.nested-accordion__content {
  display: none;
  padding: 30px;
  font-size: 14px;
  color: #333;
}
@media (max-width: 467.98px) {
  .nested-accordion__content {
    padding: 10px;
  }
}
.nested-accordion__item.is-open .nested-accordion__content {
  display: block;
}
.nested-accordion__item.is-open .nested-accordion__icon {
  transform: rotate(-135deg);
}

.login-guide__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.login-guide__image {
  flex-shrink: 0;
}
.login-guide__image img {
  width: 180px;
}
.login-guide__table {
  border-collapse: collapse;
  max-width: 100%;
}
.login-guide__table th {
  width: 130px;
  border: 1px solid #707070;
  padding: 5px;
  text-align: left;
  background-color: #E8E8E8;
  font-weight: 400;
}
.login-guide__table td {
  width: 250px;
  border: 1px solid #707070;
  padding: 5px;
  text-align: left;
}

.home-desc {
  font-size: 14px;
  color: #333;
}
.home-desc__images {
  margin-bottom: 30px;
}
.home-desc__images img {
  max-width: 49%;
}
@media (max-width: 767.98px) {
  .home-desc__images img {
    max-width: 49%;
  }
}
@media (max-width: 467.98px) {
  .home-desc__images img {
    max-width: 100%;
  }
}
.home-desc__images.flex_images {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 467.98px) {
  .home-desc__images.flex_images {
    gap: 10px;
  }
}
.home-desc__section {
  margin-bottom: 24px;
}
.home-desc__number {
  font-weight: bold;
  font-size: 16px;
  color: #004087;
  margin-bottom: 4px;
}
.home-desc__title {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 18px;
  color: #25378E;
}
.home-desc__text {
  margin: 0;
  font-size: 16px;
}
.home-desc__table {
  width: 80%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 12px;
}
@media (max-width: 467.98px) {
  .home-desc__table {
    width: 100%;
  }
}
.home-desc__table th,
.home-desc__table td {
  border: 1px solid #999;
  padding: 8px 12px;
  vertical-align: top;
  text-align: left;
}
.home-desc__table th {
  background: #eee;
  white-space: nowrap;
}
.home-desc__table a {
  color: #0055cc;
  text-decoration: underline;
}
.home-desc__table a:hover {
  text-decoration: none;
}

.accordion__close {
  text-align: center;
  margin-top: 24px;
}
.accordion__close-button {
  background: #f2f2f2;
  border: none;
  padding: 10px 28px;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s;
  max-width: 30%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .accordion__close-button {
    max-width: 60%;
  }
}
@media (max-width: 467.98px) {
  .accordion__close-button {
    max-width: 80%;
  }
}
.accordion__close-button:hover {
  background-color: #e0e0e0;
}

.portal-tabs__nav {
  display: flex;
  background: #fff;
  border-bottom: none;
}
.portal-tabs__tab {
  flex: 1;
  text-align: center;
  background: #fff;
  color: #333;
  border: 1px solid #E5E5E5;
  border-bottom-width: 4px;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .portal-tabs__tab {
    font-size: 14px;
    border-radius: 0;
    padding: 12px 5px;
  }
}
@media (max-width: 467.98px) {
  .portal-tabs__tab {
    font-size: 12px;
  }
}
.portal-tabs__tab br.sp_br {
  display: none;
}
@media (max-width: 467.98px) {
  .portal-tabs__tab br.sp_br {
    display: block;
  }
}
.portal-tabs__tab[data-tab=tab1] {
  border-bottom-color: #25378E;
}
@media (max-width: 467.98px) {
  .portal-tabs__tab[data-tab=tab1] {
    border-radius: 0;
  }
}
.portal-tabs__tab[data-tab=tab2] {
  border-bottom-color: #FFEF01;
}
@media (max-width: 467.98px) {
  .portal-tabs__tab[data-tab=tab2] {
    border-radius: 0;
  }
}
.portal-tabs__tab.is-active {
  font-weight: bold;
}
.portal-tabs__tab.is-active[data-tab=tab1] {
  background: #F1F3F5;
  border: 1px solid #25378E;
  border-bottom: 4px solid #25378E;
  color: #004087;
}
.portal-tabs__tab.is-active[data-tab=tab2] {
  background: #FCFAED;
  border: 1px solid #FFEF01;
  border-bottom: 4px solid #FFEF01;
  color: #000000;
}
.portal-tabs__content {
  display: none;
  padding: 34px 0;
}
.portal-tabs__content.is-active {
  display: block;
}
.portal-tabs__content p {
  margin-bottom: 0px;
}
@media (max-width: 467.98px) {
  .portal-tabs__content p {
    margin-bottom: 0;
  }
}
.portal-tabs__content span.caution {
  color: #25378E;
  margin: 0;
  font-weight: bold;
  font-size: 12px;
  display: block;
}
.portal-tabs__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .portal-tabs__inner {
    display: grid;
  }
}
.portal-tabs__img {
  flex: 0 0 400px;
}
.portal-tabs__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 467.98px) {
  .portal-tabs__img img {
    width: 80%;
    margin: 0 auto;
  }
}
.portal-tabs__text {
  flex: 1;
}
.portal-tabs__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.nav-support {
  padding: 20px;
  position: relative;
  margin: 50px 0;
}
.nav-support h3 {
  position: absolute;
  content: "";
  top: -16px;
  left: 50px;
  margin: 0;
  padding: 0 15px;
  background-color: white;
}
.nav-support.service-homesecurity {
  border: 1px solid #FA6400;
}
.nav-support.service-homesecurity h3 {
  color: #FA6400;
}
.nav-support.service-other {
  border: 1px solid #FFEF01;
}
.nav-support.service-other h3 {
  color: #FFEF01;
}
.nav-support.service-guard {
  border: 1px solid #B8061C;
}
.nav-support.service-guard h3 {
  color: #B8061C;
}
.nav-support.service-corporation {
  border: 1px solid #84C024;
}
.nav-support.service-corporation h3 {
  color: #84C024;
}
.nav-support ul {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .nav-support ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 467.98px) {
  .nav-support ul {
    grid-template-columns: auto;
  }
}
.nav-support ul li {
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: bold;
  transition: all 0.3s;
  display: block;
}
.nav-support ul li a {
  display: block;
}
.nav-support ul li a img {
  width: 100%;
}

.panel {
  display: none;
  text-align: center;
}
.panel.active {
  display: block;
}
.panel h2 {
  font-size: 22px;
  text-align: left;
}
.panel h2.tab1-title {
  color: #fd8030;
}
.panel h2.tab2-title {
  color: #84c024;
}
.panel h2.tab3-title {
  color: #f2c45a;
}
.panel h2.tab4-title {
  color: #b8061c;
}
.panel .inner-content h3 {
  font-size: 20px;
  font-weight: bold;
  padding: 14px 16px;
  background-color: #f1f3f5;
  position: relative;
  border-right: 6px solid #e7ebf0;
  margin: 20px 0 0 0;
}
.panel .inner-content h3::after {
  content: "";
  width: 62px;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, transparent 50%, #e7ebf0 50%, #e7ebf0 100%);
  position: absolute;
  right: 0px;
  top: 0;
}
.panel ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.panel ul li {
  width: 48%;
  margin: 20px 0 0 0;
}
.panel ul li a {
  transition: all 0.3s;
}
.panel ul li a:hover {
  opacity: 0.6;
}
.panel .tel {
  font-size: 30px;
  font-weight: bold;
  color: #1d50a2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel .tel:before {
  content: "";
  background: url("/support/images/ico_freedial.png") 0 0 no-repeat;
  width: 36px;
  height: 24px;
  margin: 0 20px 0 0;
}/*# sourceMappingURL=style.css.map */