

ul,
li,
ol {
  list-style: none;
}
form {
  padding: 0;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="file"] {
  padding: 0.375rem 0.2rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="text"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="date"],
textarea {
  padding: 0.375rem 0.2rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select {
  padding: 0.375rem 2.25rem 0.375rem 0.2rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:focus,
input:focus,
textarea:focus {
  border-color: rgba(var(--bs-primary-rgb), 0.3);
  outline: 0;
  box-shadow: 0 0 0 0.04rem rgba(var(--bs-primary-rgb), 0.15);
}
input[type="checkbox"]:checked {
  accent-color: var(--bs-primary);
  background-color: var(--bs-primary) !important;
  color: #ffffff !important;
}

.no_scroll{
  overflow: hidden;
}

header {
  position: relative;
}
.topnav_bg {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 0;
  background: #fff;
  z-index: 1038;
  transition: all 0.1s ease-out;
  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
}
.topnav_bg.active {
  /* height: 420px; */
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgb(242, 242, 242);
  transition: all 0.05s ease-out;
  -webkit-transition: all 0.05s ease-out;
  -moz-transition: all 0.05s ease-out;
  -ms-transition: all 0.05s ease-out;
  -o-transition: all 0.05s ease-out;
}
.topnav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 3rem;
  width: 100%;
  height: 90px;
  background: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s ease;
}
.nav-fixed .topnav {
  z-index: 1039;
}
.topnav .logo img {
  max-width: 90%;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.topnav .nav .nav_wrap {
  display: flex;
  /* gap: 0 2rem; */
  font-weight: 500;
  font-size: 1.05rem;
  color: #fff;
}
.topnav .nav .nav_wrap .nav_item {
  /* min-width: 120px; */
  text-align: center;
  padding: 0 3rem;
}
.topnav .nav .nav_wrap .nav_item > a {
  position: relative;
  display: block;
  width: 100%;
  height: 90px;
  font-size: 1.25rem;
  font-weight: 600;
  /* color: #fff; */
  line-height: 90px;
}
.topnav .nav .nav_wrap .nav_item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  transition: all 0.3s ease-out;
}
.topnav .nav .nav_item.active > a {
  font-weight: 800 !important;
  color: var(--bs-primary) !important;
}
.topnav .nav .nav_item.active > a::after {
  bottom: 0;
  width: 100%;
  background: var(--bs-primary);
  transition-duration: 0.2s;
  transition-delay: 0.3s;
}
.topnav .nav .nav_wrap .sub {
  position: absolute;
  display: flex;
  gap: 0;
  left: 0;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100vw;
  height: 0px !important;
  background-color: #fff;
  /* transition: all 0.5s; */
  transition-duration:1s;
  overflow: hidden;
}
.topnav .nav .nav_wrap .sub.active {
  height: auto !important;
  overflow: auto;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1), 0 3px 5px rgba(0, 0, 0, 0.15);
  transition-duration:0.5s;
}
.topnav .nav .nav_wrap .sub .left{
  width: 30%;
  background-color: rgba(var(--bs-primary-rgb), 0.05);
  padding: 1rem 1rem 1rem 10%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  /* align-items: flex-end; */
  align-content: flex-end;
  border-top: 1px solid #f3f3f3;
}
.topnav .nav .nav_wrap .sub .left img{
  max-width: 100%;
  border-radius: 0.5rem;
}
.topnav .nav .nav_wrap .sub .left .txt{
  display: flex;
  flex-direction: column;
  gap: 0.5;
  padding: 0;
  margin: 0;
  color: var(--bs-gray-600);
}
.topnav .nav .nav_wrap .sub .left .title{
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-gray-700);
}
.topnav .nav .nav_wrap .sub .left p{
  font-size: .85rem;
  font-weight: 400;
}
.topnav .nav .nav_wrap .sub .right{
  width: 70%;
  display: flex;  
  flex-direction: column;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 2rem 5rem 5%;
  margin: 0;
  border-top: 1px solid #f3f3f3;
}
.topnav .nav .nav_wrap .sub .right>div{
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .5rem;
}
.topnav .nav .nav_wrap .sub .right .ca{
  display: block;
  width: 180px;
  max-width: 180px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bs-gray-900);
  text-align: center;
  padding: .5rem 1rem;
  margin: 0 0 1rem 0;
  border-bottom: 2px solid var(--bs-gray-800);
}
.topnav .nav .nav_wrap .right .list{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
}
.topnav .nav .nav_wrap .right .list a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-gray-800);
  padding: .5rem;
  margin: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.topnav .nav .nav_wrap .right a:hover {
  color: var(--bs-primary);
  padding: .5rem .5rem .5rem 1rem;
}
.topnav.bg_w {
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 1);
}
.topnav.bg_w .nav .nav_wrap .nav_item > a {
  /* font-weight: 600 !important; */
  color: #000;
}
.topnav.bg_w .rnav > div a,
.topnav.bg_w .rnav > div button {
  color: #000;
}

.topnav.navbar-shrink {
  height: 65px;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.08);
  /* background-color: rgba(255, 255, 255, 1); */
}
.topnav.navbar-shrink .logo img {
  transform: scale(0.8);
  transform-origin: left;
}
.topnav.navbar-shrink .nav_wrap {
  font-weight: 500;
  font-size: 1rem;
  color: #000;
}
.topnav.navbar-shrink .nav .nav_wrap .nav_item > a {
  font-size: 1.15rem;
  /* font-weight: 600 !important; */
  color: #000;
  height: 65px;
  line-height: 65px;
}
.topnav.navbar-shrink .rnav > div a,
.topnav.navbar-shrink .rnav > div button {
  color: #000;
}

/* @media (min-width: 992px) {
  .topnav {
    padding: 0rem 1.5rem;
  }
  .topnav .nav .nav_wrap .nav_item > a {
    font-size: 1.2rem;
  }
  .topnav .nav .nav_wrap .sub a {
    font-size: 0.9rem;
  }
} */
@media (max-width: 1500px) {
  .topnav {
    padding: 0rem 2.5rem;
  }
}
@media (max-width: 1480px) {
  .topnav {
    padding: 0rem 1.5rem;
  }
  .topnav .nav .nav_wrap .nav_item {
    padding: 0 3rem;
  }
  .topnav .nav .nav_wrap .nav_item > a {
    /* font-size: 1.25rem; */
  }
  .topnav .nav .nav_wrap .sub .left{
    padding: 1rem 1rem 1rem 5%;
  }
}
@media (max-width: 1050px) {
  .topnav .nav {
    display: none;
    /* position: fixed;
    right: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    padding: 2rem 1.5rem;
    background-color: #fff; */
  }
}
@media (max-width: 991.98px) {
  .topnav {
    padding: 0rem 2rem;
  }
}
@media (max-width: 767.98px) {
  .topnav {
    padding: 0rem 1rem;
  }
}




.topnav .rnav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 1);
  padding: 0;
  margin: 0;
}
.topnav .rnav > div {
  padding: 0 0.5rem;
}
.topnav .rnav > div:last-child {
  padding: 0 0 0 0.5rem;
}
.topnav .rnav > div a {
  color: rgba(255, 255, 255, 0.8);
}
.topnav .rnav > div a:hover {
  color: var(--bs-primary);
}
.topnav .rnav > div button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 100;
  /* color: #fff; */
  background-color: transparent;
  border: solid transparent;
}
.topnav .rnav > div button .material-symbols-rounded{
  font-size: 2.5rem;
}
.topnav .rnav .mem{
  display: flex !important;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.topnav .rnav .mem a{
  display: flex !important;
  align-items: center;
  padding: 0;
  margin: 0;
}
.topnav .rnav .mem .material-symbols-rounded{
  font-size: 2.0rem;
}
@media (max-width: 1050px) {
  .topnav .rnav .mem{
    display: none !important;
  }
}


.topnav_sub {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

.nav_side_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 2000;
}
.nav_side_bg.active {
  display: block;
}
.nav_side {
  position: fixed;
  display: flex;
  padding: .5rem 1.5rem 2.5rem 1.5rem !important;
  top: 0;
  right: -350px;
  width: 300px;
  height: 100%;
  min-height: 100%;
  background: #fff;
  transition: all 0.3s ease-in-out;
  z-index: 2001;
  overflow-y: auto;
}
.nav_side.active {
  right: 0;
}
.nav_side .nav_wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  padding: 1rem 0 !important;
}
.nav_side .logo {
  max-width: 100%;
  padding: 0;
  text-align: center;
}
.nav_side .logo img {
  width: 80%;
}
.nav_side .mem_box{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0;
  margin: 2rem 0;
}
.nav_side .mem_info{
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.nav_side .mem_info .pic{
  padding: 0;
  margin: 0;
}
.nav_side .mem_info .pic span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  color: #464947;
  padding: 0;
  margin: 0;
  background: #f3f3f3;
  border-radius: 100%;
  overflow: hidden;
}
.nav_side .mem_info .tt{
  font-size: 1rem;
}
.nav_side .mem_info .tt strong{
  font-size: 1.2rem;
}
.nav_side .mem {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 0;
}
.nav_side .mem div.tt {
  display: block;
  font-size: 0.7rem;
  color: #222;
  text-align: center;
	word-break:keep-all;
	word-wrap:break-word;
  padding-top: 0.5rem;
}
.nav_side .mem a {
  width: 100%;
  display: flex;  
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 1rem 0.5rem 2.5rem;
  margin: 0;
  font-size: 0.7rem;
  color: var(--bs-gray-600);
  border: 1px solid var(--bs-gray-200);
  border-radius: 0.3rem;
}
.nav_side .mem a:hover {
  background: var(--bs-gray-100);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.5);
}
.nav_side .mem a span {  
  font-size: 1.2rem;
  color: var(--bs-primary);
}
.nav_side .menu_wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--bs-dark);
}
.nav_side .menu_wrap .menu_item {
  width: 100%;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ececec;
}
.nav_side .menu_wrap .menu {
  padding: 1rem 0 1rem 1rem;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  background: none;
}
.nav_side .menu_wrap .menu:hover {
  color: var(--bs-primary);
}
.nav_side .menu_wrap .submenu {
  position: relative;
  width: 100%;
  height: 0px;
  overflow: hidden;
  padding: 0 1rem;
  transition: all 0.3s ease-in-out;
}
.nav_side .menu_wrap .submenu>div {
  padding: 0.5rem 0;
}
.nav_side .menu_wrap .submenu h1 {
  font-size: .98rem;
  font-weight: 600;
  color: var(--bs-primary);
  padding: 0;
}
.nav_side .menu_wrap .submenu a {
  position: relative;
  display: block;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}
.nav_side .menu_wrap .submenu a:hover {
  color: var(--bs-primary);
}
.nav_side .menu_wrap .submenu.active {
  height: auto;
  overflow: auto;
  border-top: 1px solid var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), 0.03);
}
.nav_side .menu_wrap .menu.active {
  color: var(--bs-primary);
}
.nav_side .blank{
  min-height: 2rem;
}
@media (max-width: 767.98px) {
  .nav_side {
    width: 250px;
  }
  .nav_side .menu_wrap .menu {
    font-size: 1rem;
  }
  .nav_side .mem_info .pic span{
    font-size: 1.3rem;
  }
  .nav_side .mem_info .tt{
    font-size: .7rem;
  }
  .nav_side .mem_info .tt strong{
    font-size: .9rem;
  }
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px;
  margin: 0;
}
footer .menu {
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding: 0.5rem 5rem;
  margin: 0;
  border-top: 1px solid var(--bs-gray-200);
  border-bottom: 1px solid var(--bs-gray-200);
  transition: all 0.2s ease;
}
footer .menu > div {
  padding: 0;
}
footer .menu > div a {
  font-weight: 600;
  font-size: 0.75rem;
  color: #414141;
}
footer .menu > div a.p {
  color: #313131;
}
footer .menu > div a:hover {
  color: var(--bs-primary);
}
footer .info_wrap{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  max-width: 1440px;
	margin: 0 auto;
	padding: 2rem 1.5rem;
}
footer .finfo{
  width: 100%;
	display: flex;
  /* flex-direction: column; */
  gap: 3rem;
	padding: 0;
	margin: 0;
  order: 1;
}
footer .finfo img{
  height: 30px;
  margin-top: 0.4rem;
}
footer .company{
	display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding: 0;
  margin: 1rem 0 0 0;
	font-size: .75rem;
}
footer .finfo ul{
	display: flex;
  /* flex-direction: column; */
  gap: 0.5rem;
	padding: 0;
	margin: 0;
}
footer .finfo ul li{
	padding: 0;
	margin: 0;
  text-wrap: balance;
  word-break: keep-all;
  word-wrap: break-word;
}
footer .finfo ul li:first-child{
	font-weight: 600;
}
footer .copy{
  width: 100%;
  padding: 0;
  margin: 0;
	font-size: .65rem;
  color: var(--bs-gray-500)
}

footer .sns{
  /* width: 100%; */
  display: flex;
  /* justify-content: flex-end; */
  gap: 1.5rem;
  padding: 0;
  margin: 0.5rem 0 0 0;
  order: 3;
}
footer .sns img{
  height: 30px;
  /* width: 35px; */
  /* filter: grayscale(100%); */
  /* opacity: 0.5; */
  transition: all .2s;
}
footer .sns a:hover img{
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 1200px) {
  footer .info_wrap{
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 991.98px) {
  footer .menu {
    gap: 2rem;
    padding: 1rem 2.5rem;
  }
}
@media (max-width: 767.98px) {
  footer .menu {
    padding: .5rem 0.5rem;
    justify-content: center !important;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  footer .menu > div {
    padding: 0 0.5rem;
  }
  footer .info_wrap{
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem 1.5rem 2rem 1.5rem;
  }
  footer .sns{
    width: 100%;
    order: 1;
    /* flex-direction: column;
    gap: 0.6rem; */
    justify-content: flex-end;
  }
  footer .sns img{
    /* width: 40px; */
    height: 25px;
  }
  footer .finfo{
    order: 3;
    /* gap: 3rem; */
  }
  footer .finfo{
    flex-direction: column;
    gap: 1rem;
  }
  footer .sns img{
    height: 20px;
  }
}

.page-top {
  color: #fff;
  background-color: #000;
}

.help_top {
  font-size: 0.75rem;
  color: #e68b30;
  padding-bottom: 10px;
}
.help_right {
  font-size: 0.75rem;
  color: #e68b30;
  padding-left: 10px;
}


.form_wrap {
  padding: 0;
  margin: 0;
  width: 100%;
  border-top: 3px solid var(--bs-primary);
}
.form_wrap > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.6rem 0;
  margin: 0;
  border-bottom: 1px solid #eaeef3;
}
.form_wrap .title {
  width: 15%;
  min-width: 100px;
  padding: 0 0 0 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.2s ease;
}
.form_wrap .value {
  width: 85%;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}
.form_wrap input[type="text"],
.form_wrap input[type="password"],
.form_wrap input[type="number"],
.form_wrap input[type="email"],
.form_wrap textarea {
  width: 100%;
  padding: 0.7rem 0.5rem;
  /* background: #f5f5f5; */
  background: #eeeeee;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.form_wrap select {
  padding: 0.7rem 0.5rem;
  /* background: #f5f5f5; */
  background: #eeeeee;
  border: 1px solid transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px 12px;
  transition: all 0.2s ease;
}
.form_wrap select:focus,
.form_wrap input:focus,
.form_wrap textarea:focus {
  background: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.025rem rgba(13, 110, 253, 0.5);
}
.form_wrap span {
  font-weight: 400;
  font-size: 0.8rem;
  color: #f47420;
}
.form_wrap .value .name {
  width: 30%;
  max-width: 150px;
}
.form_wrap .value .tel {
  width: 30%;
  max-width: 150px;
  ime-mode: disabled;
}
.form_wrap .value .email {
  width: 30%;
  max-width: 150px;
  ime-mode: disabled;
}
@media (min-width: 1400px) {
  .form_wrap .title {
    width: 15%;
  }
  .form_wrap .value {
    width: 85%;
  }
}
@media (max-width: 767.98px) {
  .form_wrap .title {
    width: 100%;
    padding: 0 0 0.5rem 0;
  }
  .form_wrap .value {
    width: 100%;
  }
  .form_wrap .value .name {
    width: 100%;
    max-width: 100%;
  }
  .form_wrap .value .tel {
    width: 100%;
    max-width: 30%;
  }
  .form_wrap .value .email {
    width: 45%;
    max-width: 45%;
  }
}
.form_span {
  font-size: 0.8rem;
}
.form_span span {
  font-weight: 400;
  color: #f47420;
}
.form_info {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
}
.form_info .tt {
  font-weight: 300;
  font-size: 1.1rem;
}


#DivContents {
  width: 100%;
  max-width: 100% !important;
  table-layout: fixed;
  box-sizing: border-box;
  font-size: 1.15rem;
  word-break: keep-all;
  word-wrap: break-word;
  padding: 2rem 1rem;
}
#DivContents div {
  max-width: 100% !important;
}
#DivContents p {
  width: 100%;
  max-width: 100% !important;
  padding: 5px 0px;
  margin: 0px;
  font-size: 1.15rem;
}
#DivContents td {
  font-size: 1.15rem;
}
#DivContents img {
  /*max-width: 1000px;*/
  max-width: 100% !important;
}
@media (max-width: 768px) {
  #DivContents {
    padding: 0;
    font-size: 1.15rem;
  }
}
.page_contents {
  width: 100%;
  border-top: 2px solid var(--bs-primary);
  padding: 2rem 0;
  margin: 0;
  font-size: 0.85rem !important;
  color: #000;
  word-break: keep-all;
  word-wrap: break-word;
}
.page_contents p,
.page_contents td {
  font-size: 0.85rem !important;
}






/*@-ms-viewport{width:device-width}*/
.visible-lg,
.visible-md,
.visible-sm,
.visible-xs {
  display: none !important;
}
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  td.visible-xs,
  th.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  td.visible-sm,
  th.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  td.visible-md,
  th.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  td.visible-lg,
  th.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}





.block_bar{
  height: 10px;
  background: repeating-linear-gradient(-45deg, var(--bs-gray-200) 0 1px, transparent 1px 4px);
}


.mt10 { margin-top: 10px !important; }
.mt15 { margin-top: 15px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.mt100 { margin-top: 100px !important; }

.pt30 { padding-top: 30px !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }

.pl10 { padding-left: 10px !important}
.pl20 { padding-left: 20px !important}
.pl30 { padding-left: 30px !important}

.div_blank { height: 100px !important; }

