:root {
  --spacing: 0;
}

* {
  letter-spacing: var(--spacing);
}

::-moz-selection {
  background: #ccc;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #ccc;
  color: #fff;
  text-shadow: none;
}

ins {
  background-color: #ccc;
  color: #333;
  text-decoration: none;
}

mark {
  background-color: #ccc;
  color: #333;
  font-style: italic;
  font-weight: 700;
}

body {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.875;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.85714;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-size: 16px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  h1, h2, h3, h4, h5, h6 {
    font-size: 14px;
  }
}

dt, dd {
  margin: 0;
  padding: 0;
}

figcaption {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  figcaption {
    font-size: 14px;
  }
}

a:link, a:visited {
  color: #333;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

a:link.txt_link, a:visited.txt_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: underline;
  gap: 10px;
}

a:link.txt_link.orange, a:visited.txt_link.orange {
  color: #ff801e;
}

a:link.txt_link.blue, a:visited.txt_link.blue {
  color: #307ab3;
}

a:link.txt_link:hover, a:visited.txt_link:hover {
  opacity: 1;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  a:link.txt_link:hover, a:visited.txt_link:hover {
    text-decoration: underline;
  }
}

a:link.txt_link img, a:visited.txt_link img {
  width: auto;
}

a:link img, a:visited img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  a:hover img {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

img {
  opacity: 1;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

img.pc {
  display: inline;
}

@media screen and (max-width: 768px) {
  img.pc {
    display: none !important;
  }
}

img.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  img.sp {
    display: block !important;
  }
}

input[type=text],
input[type=email],
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff;
  padding: 11px 20px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  color: #333;
  outline: none;
}

@media screen and (max-width: 768px) {
  input[type=text],
  input[type=email],
  select,
  textarea {
    padding: 8px 10px;
    width: 100%;
  }
}

select {
  padding: 6px 10px;
  cursor: pointer;
}

textarea {
  max-width: 100%;
  height: 210px;
}

@media screen and (max-width: 768px) {
  textarea {
    height: 160px;
  }
}

.check_box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 30px;
  line-height: 1.375;
  cursor: pointer;
}

.check_box input[type=checkbox] {
  display: none;
}

.check_box input[type=checkbox]:checked + span:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -9px;
  width: 7px;
  height: 13px;
  border-right: 2px solid #307ab3;
  border-bottom: 2px solid #307ab3;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check_box span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 2px;
  background: #fff;
}

.select_wrap {
  position: relative;
  width: 160px;
}

.select_wrap:after {
  content: '';
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  background: url(../img/cmn/icn_chevron_down_bk.svg) no-repeat center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .select_wrap {
    width: 100%;
  }
}

.select_limit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.select_limit .select_from {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .select_limit .select_from {
    font-size: 12px;
  }
}

::-webkit-input-placeholder, :placeholder-shown {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

.bold {
  font-weight: 700;
}

.c_color {
  color: #307ab3;
}

.txt_wh {
  color: #fff !important;
}

.note {
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .note {
    font-size: 12px;
  }
}

.require {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 46px;
  height: 24px;
  color: #fff;
  background: #ff801e;
  font-size: 13px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .require {
    width: 35px;
    height: 18px;
    font-size: 11px;
    line-height: 18px;
  }
}

.tag_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.tag_list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 10px;
  background: #f4f4f4;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

@media screen and (max-width: 768px) {
  .tag_list li {
    padding: 2px 5px;
    font-size: 11px;
  }
}

.font-tiny {
  font-size: 75%;
}

.font-small {
  font-size: 88%;
}

.font-big {
  font-size: 120%;
}

.font-fuge {
  font-size: 140%;
}

.font-fugefuge {
  font-size: 170%;
}

.page_ttl {
  position: relative;
  margin-top: 173px;
  width: 100%;
  min-height: 200px;
  background: #deebf5;
}

.page_ttl .breadcrumb {
  padding-top: 20px;
  font-size: 13px;
  font-weight: 500;
}

.page_ttl .breadcrumb ol {
  display: inline-block;
}

.page_ttl .breadcrumb .breadcrumb_item {
  display: inline;
}

.page_ttl .breadcrumb .breadcrumb_item:after {
  content: '>';
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .page_ttl .breadcrumb .breadcrumb_item:after {
    margin: 0 5px;
  }
}

.page_ttl .breadcrumb .breadcrumb_item:last-child:after {
  content: none;
}

@media screen and (max-width: 768px) {
  .page_ttl .breadcrumb {
    padding-top: 10px;
    font-size: 11px;
  }
}

.page_ttl .page_headline {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
  column-gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 30px 0 40px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.46667;
}

.page_ttl .page_headline img {
  width: auto;
  height: 26px;
  -webkit-transform: translateY(11px);
  -ms-transform: translateY(11px);
  transform: translateY(11px);
}

@media screen and (max-width: 768px) {
  .page_ttl .page_headline img {
    height: 20px;
    -webkit-transform: translateY(7px);
    -ms-transform: translateY(7px);
    transform: translateY(7px);
  }
}

@media screen and (max-width: 768px) {
  .page_ttl .page_headline {
    -webkit-column-gap: 8px;
    column-gap: 8px;
    padding: 20px 0 30px;
    font-size: 22px;
  }
}

@media screen and (max-width: 1260px) {
  .page_ttl {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .page_ttl {
    margin-top: 62px;
    min-height: 140px;
  }
}

.headline1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
  column-gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
  color: #307ab3;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.8;
}

.headline1.bd {
  padding-bottom: 18px;
  border-bottom: 4px solid #307ab3;
}

@media screen and (max-width: 768px) {
  .headline1.bd {
    padding-bottom: 10px;
    border-bottom: 3px solid #307ab3;
  }
}

.headline1 img {
  width: auto;
  height: 26px;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}

@media screen and (max-width: 768px) {
  .headline1 img {
    height: 20px;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@media screen and (max-width: 768px) {
  .headline1 {
    -webkit-column-gap: 8px;
    column-gap: 8px;
    font-size: 18px;
    line-height: 1.66667;
  }
}

.headline2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 12px;
  column-gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  position: relative;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.88889;
}

.headline2.bd {
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .headline2.bd {
    padding-bottom: 20px;
  }
}

.headline2.bg {
  padding: 14px 20px;
  border-top: 2px solid #307ab3;
  border-bottom: 2px solid #307ab3;
  background: #deebf5;
  color: #307ab3;
}

@media screen and (max-width: 768px) {
  .headline2.bg {
    padding: 8px 14px;
  }
}

.headline2 img {
  width: auto;
  height: 22px;
  -webkit-transform: translateY(7px);
  -ms-transform: translateY(7px);
  transform: translateY(7px);
}

@media screen and (max-width: 768px) {
  .headline2 img {
    height: 20px;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
  }
}

@media screen and (max-width: 768px) {
  .headline2 {
    -webkit-column-gap: 8px;
    column-gap: 8px;
    font-size: 17px;
    line-height: 1.75;
  }
}

.headline3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.88235;
}

.headline3.bd {
  padding-bottom: 12px;
  border-bottom: 1px solid #307ab3;
  color: #307ab3;
}

@media screen and (max-width: 768px) {
  .headline3.bd {
    padding-bottom: 10px;
  }
}

.headline3.bd_left {
  padding-left: 15px;
  border-left: 3px solid #307ab3;
}

@media screen and (max-width: 768px) {
  .headline3.bd_left {
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .headline3 {
    font-size: 16px;
    line-height: 1.8;
  }
}

.underline {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0, rgba(53, 141, 186, 0.15)));
  background: -webkit-linear-gradient(transparent 50%, rgba(53, 141, 186, 0.15) 0);
  background: -o-linear-gradient(transparent 50%, rgba(53, 141, 186, 0.15) 0);
  background: linear-gradient(transparent 50%, rgba(53, 141, 186, 0.15) 0);
  background-size: 1px 18px;
  background-repeat: repeat-x;
  background-position: bottom 0 left 0;
}

.marker {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0, rgba(238, 146, 7, 0.4)));
  background: -webkit-linear-gradient(transparent 0, rgba(238, 146, 7, 0.4) 0);
  background: -o-linear-gradient(transparent 0, rgba(238, 146, 7, 0.4) 0);
  background: linear-gradient(transparent 0, rgba(238, 146, 7, 0.4) 0);
  background-size: 1px 20px;
  background-repeat: repeat-x;
  background-position: bottom 2px left 0;
}

.inner {
  position: relative;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  max-width: 1280px;
}

.inner.narrower {
  max-width: 1080px;
}

@media screen and (max-width: 768px) {
  .inner.narrower {
    max-width: 100%;
  }
}

.inner.narrower2 {
  max-width: 880px;
}

@media screen and (max-width: 768px) {
  .inner.narrower2 {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
    max-width: 100%;
  }
}

.bg {
  position: relative;
  background: #deebf5;
}

.bg.gray {
  background: #f4f4f4;
}

.bg.blue {
  background: #307ab3;
}

.btn_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 13px 20px;
  border: none;
  border-radius: 5px;
  background: #ff801e;
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn_link.btn-w-100 {
  width: 100% !important;
}

.btn_link.sm {
  padding: 8px 20px;
}

@media screen and (max-width: 768px) {
  .btn_link.sm {
    padding: 8px 15px;
  }
}

.btn_link.lg {
  min-width: 230px;
}

@media screen and (max-width: 768px) {
  .btn_link.lg {
    min-width: 160px;
  }
}

.btn_link.bd {
  border: 1px solid #ff801e;
  background: none;
  color: #ff801e !important;
}

.btn_link.bd .icn {
  background: #ff801e;
}

.btn_link.blue {
  background: #307ab3;
}

.btn_link.blue.bd {
  border: 1px solid #307ab3;
  background: none;
  color: #307ab3 !important;
}

.btn_link.blue.bd .icn {
  background: #307ab3;
}

.btn_link.black {
  background: #333;
}

.btn_link.black.bd {
  border: 1px solid #333;
  background: none;
  color: #333 !important;
}

.btn_link.black.bd .icn {
  background: #333;
}

.btn_link[type=submit] {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.btn_link[type=submit]:hover {
  opacity: .7;
  cursor: pointer;
}

.btn_link .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

.btn_link .icn img {
  width: auto;
}

@media screen and (max-width: 768px) {
  .btn_link .icn {
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.btn_link .icn_search {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

@media screen and (max-width: 768px) {
  .btn_link .icn_search {
    width: auto;
    height: 18px;
  }
}

@media screen and (max-width: 768px) {
  .btn_link {
    gap: 6px;
    padding: 8px 10px;
  }
}

.cmn_ul_list {
  list-style: none;
}

.cmn_ul_list li {
  position: relative;
  margin-top: 5px;
  padding-left: 16px;
}

.cmn_ul_list li:first-child {
  margin-top: 0;
}

.cmn_ul_list li:before {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #307ab3;
}

@media screen and (max-width: 768px) {
  .cmn_ul_list li:before {
    top: 10px;
  }
}

.cmn_ul_list li ul {
  margin-top: 15px;
}

.cmn_ul_list li ul li:before {
  background: #888;
}

@media screen and (max-width: 768px) {
  .cmn_ul_list li ul {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_ul_list li {
    padding-left: 14px;
  }
}

.cmn_ol_list, .child_ol_list {
  list-style: none;
  counter-reset: li;
}

.cmn_ol_list li, .child_ol_list li {
  position: relative;
  margin-top: 5px;
  padding-left: 30px;
}

.cmn_ol_list li:first-child, .child_ol_list li:first-child {
  margin-top: 0;
}

.cmn_ol_list li:before, .child_ol_list li:before {
  content: counter(li);
  counter-increment: li;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #307ab3;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
}

@media screen and (max-width: 768px) {
  .cmn_ol_list li:before, .child_ol_list li:before {
    top: 4px;
    font-size: 13px;
  }
}

.cmn_ol_list li ol, .child_ol_list li ol {
  margin-top: 15px;
  list-style: none;
}

.cmn_ol_list li ol li:before, .child_ol_list li ol li:before {
  background: #888;
}

@media screen and (max-width: 768px) {
  .cmn_ol_list li ol, .child_ol_list li ol {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_ol_list li, .child_ol_list li {
    padding-left: 28px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table_overflow .cmn_table th, .cmn_table_overflow .cmn_table td {
    display: table-cell;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table_overflow .cmn_table {
    width: 870px;
  }
}

@media screen and (max-width: 375px) {
  .cmn_table_overflow .cmn_table {
    width: 580px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table_overflow {
    overflow-x: scroll;
  }
}

.cmn_table {
  width: 100%;
}

.cmn_table.property {
  font-size: 14px;
  line-height: 1.57143;
}

.cmn_table.property th {
  width: auto;
}

.cmn_table.property th, .cmn_table.property td {
  padding: 14px 15px;
}

@media screen and (max-width: 768px) {
  .cmn_table.property th, .cmn_table.property td {
    display: table-cell;
    padding: 10px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table.property {
    font-size: 12px;
  }
}

.cmn_table a {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.cmn_table th {
  width: 320px;
  background: #f4f4f4;
  font-weight: 700;
  text-align: left;
}

.cmn_table th.sm {
  width: 190px;
}

@media screen and (max-width: 768px) {
  .cmn_table th.sm {
    width: auto;
  }
}

.cmn_table th.md {
  width: 240px;
}

@media screen and (max-width: 768px) {
  .cmn_table th.md {
    width: auto;
  }
}

.cmn_table th.align_center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cmn_table th.no_one_col_sp {
    width: 170px;
  }
}

@media screen and (max-width: 428px) {
  .cmn_table th.no_one_col_sp {
    width: 120px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table th {
    width: auto;
  }
}

.cmn_table td {
  background: #fff;
}

.cmn_table th, .cmn_table td {
  padding: 20px 30px;
  border: 1px solid #ccc;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .cmn_table th, .cmn_table td {
    display: block;
    padding: 15px;
    border-top: none;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }
  .cmn_table th.no_one_col_sp, .cmn_table td.no_one_col_sp {
    display: table-cell !important;
    border: 1px solid #ccc !important;
  }
}

.cmn_table .price_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.cmn_table .price_number span {
  color: #307ab3;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .cmn_table .price_number span {
    font-size: 22px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table .price_number {
    gap: 2px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table {
    border-top: 1px solid #ccc;
  }
}

.contact_form .half_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.contact_form .half_row dl {
  width: calc((100% - 30px) / 2);
}

@media screen and (max-width: 768px) {
  .contact_form .half_row dl {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .contact_form .half_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.contact_form dl {
  margin-top: 20px;
}

.contact_form dl dt {
  gap: 10px;
  font-weight: 700;
}

.contact_form dl dt .require {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

.contact_form dl dd {
  margin-top: 12px;
}

.contact_form dl dd .contact_check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}

@media screen and (max-width: 768px) {
  .contact_form dl dd .contact_check_list {
    gap: 10px 15px;
  }
}

@media screen and (max-width: 768px) {
  .contact_form dl dd {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .contact_form dl {
    margin-top: 15px;
  }
}

.contact_form .privacy_policy {
  overflow-y: scroll;
  padding: 15px 20px;
  width: 100%;
  height: 210px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

@media screen and (max-width: 768px) {
  .contact_form .privacy_policy {
    padding: 10px 15px;
  }
}

.cmn_bg_box {
  padding: 30px;
  width: 100%;
  background: #f4f4f4;
}

.cmn_bg_box.wh {
  background: #fff;
}

.cmn_bg_box.bd {
  border: 2px solid #307ab3;
  background: #fff;
}

.cmn_bg_box.bd_dotted {
  border: 2px dotted #111;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .cmn_bg_box {
    padding: 20px;
  }
}

.gmap iframe {
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .gmap iframe {
    height: 350px;
  }
}

#header {
  z-index: 98;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  border-top: 5px solid #307ab3;
  background: #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(159, 160, 160, 0.25);
  box-shadow: 3px 3px 3px rgba(159, 160, 160, 0.25);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#header.on .site_ttl {
  opacity: 0;
  padding-top: 0;
  max-height: 0;
}

@media screen and (max-width: 1260px) {
  #header.on .site_ttl {
    opacity: 1;
    padding-top: 6px;
    max-height: 80px;
  }
}

#header .site_ttl {
  opacity: 1;
  padding-top: 13px;
  max-height: 80px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#header .site_ttl .site_desc {
  color: #888;
  font-size: 15px;
  font-weight: 500;
}

@media screen and (max-width: 1260px) {
  #header .site_ttl .site_desc {
    font-size: 11px;
  }
}

#header .site_ttl a {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.21429;
}

@media screen and (max-width: 1260px) {
  #header .site_ttl a {
    font-size: 20px;
  }
}

@media screen and (max-width: 1260px) {
  #header .site_ttl {
    padding-top: 6px;
    padding-bottom: 5px;
  }
}

#header #navi {
  position: relative;
  padding: 18px 0 22px;
}

#header #navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#header #navi ul li {
  width: calc(100% / 6);
  border-right: 1px solid #ccc;
  line-height: 1.625;
}

#header #navi ul li:first-child {
  border-left: 1px solid #ccc;
}

@media screen and (max-width: 1260px) {
  #header #navi ul li:first-child {
    border-top: 1px solid #ccc;
    border-left: none;
  }
}

#header #navi ul li.current .navi_link, #header #navi ul li:hover .navi_link {
  color: #307ab3;
}

@media screen and (max-width: 1260px) {
  #header #navi ul li:hover .navi_link {
    color: #333;
  }
}

@media screen and (max-width: 1260px) {
  #header #navi ul li.current .navi_link {
    color: #307ab3;
  }
}

#header #navi ul li .navi_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.375;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 1260px) {
  #header #navi ul li .navi_link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 15px;
    padding: 15px 10px;
    font-size: 16px;
  }
}

#header #navi ul li a.navi_link:hover {
  opacity: 1;
}

@media screen and (max-width: 1260px) {
  #header #navi ul li {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc;
  }
}

@media screen and (max-width: 1260px) {
  #header #navi ul {
    display: none;
    overflow: hidden;
    width: 100% !important;
  }
}

#header #navi input {
  display: none;
}

@media screen and (max-width: 1260px) {
  #header #navi input[type="checkbox"]:checked ~ .child_navi {
    visibility: visible !important;
    padding: 15px;
    margin-bottom: 20px;
    max-height: inherit;
    pointer-events: auto;
  }
  #header #navi input[type="checkbox"]:checked ~ * .toggle_icon:before {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
  }
}

@media screen and (max-width: 1260px) {
  #header #navi {
    position: fixed;
    top: 62px;
    left: 0;
    background: #fff;
  }
}

#header #navi_btn {
  display: none;
  position: absolute;
  top: 3px;
  right: 16px;
  bottom: 0;
  cursor: pointer;
}

#header #navi_btn .navi_btn_wrap {
  position: relative;
  width: 25px;
  height: 22px;
}

#header #navi_btn .navi_btn_wrap .navi_btn_line {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 2px;
  background-color: #307ab3;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#header #navi_btn .navi_btn_wrap .navi_btn_line.navi_btn_line_1 {
  top: 2px;
}

#header #navi_btn .navi_btn_wrap .navi_btn_line.navi_btn_line_2 {
  top: 10px;
}

#header #navi_btn .navi_btn_wrap .navi_btn_line.navi_btn_line_3 {
  top: 18px;
}

#header #navi_btn .menu {
  margin-top: 5px;
  color: #307ab3;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 1260px) {
  #header #navi_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

#header #menu_navi_btn_sp {
  display: none;
  cursor: pointer;
}

@media screen and (max-width: 1260px) {
  #header #menu_navi_btn_sp:checked ~ #navi {
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 20px 20px 100px;
    width: 100%;
    height: 100%;
  }
  #header #menu_navi_btn_sp:checked ~ label#navi_btn .navi_btn_line_1 {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
  }
  #header #menu_navi_btn_sp:checked ~ label#navi_btn .navi_btn_line_2 {
    width: 0;
  }
  #header #menu_navi_btn_sp:checked ~ label#navi_btn .navi_btn_line_3 {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 10px;
  }
  #header #menu_navi_btn_sp:checked ~ * ul {
    display: block;
  }
  #header #menu_navi_btn_sp:checked ~ * .sp_btn_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
  }
  #header #menu_navi_btn_sp:checked ~ * .child_navi {
    max-height: 0;
    visibility: hidden !important;
  }
}

@media screen and (max-width: 1260px) {
  #header {
    border-top: 3px solid #307ab3;
  }
  #header.open {
    overflow-y: scroll;
    height: 100%;
  }
}

#pagetop {
  z-index: 99;
  position: fixed;
  left: 50%;
  bottom: 45px;
  margin-left: calc(1320px / 2);
}

#pagetop.on a {
  opacity: 1;
  pointer-events: all;
}

@media screen and (max-width: 768px) {
  #pagetop.on a {
    opacity: 1 !important;
  }
}

#pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  pointer-events: none;
  line-height: 1;
}

#pagetop a:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  #pagetop a:hover {
    opacity: 1;
  }
}

#pagetop a img {
  margin-top: -2px;
}

@media screen and (max-width: 768px) {
  #pagetop a {
    opacity: 0 !important;
    width: 52px;
    height: 52px;
    font-size: 11px;
    line-height: 0.81818;
  }
}

@media screen and (max-width: 1520px) {
  #pagetop {
    right: 40px;
    left: inherit;
    margin-left: inherit;
  }
}

@media screen and (max-width: 768px) {
  #pagetop {
    right: 20px;
    bottom: 20px;
  }
}

.footer .inner {
  max-width: 1080px;
}

.footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 0;
}

.footer ul li {
  width: calc((100% - 60px) / 4);
}

.footer ul li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer ul li {
    width: calc((100% - 60px) / 4);
  }
}

@media screen and (max-width: 576px) {
  .footer ul li {
    width: calc((100% - 20px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .footer ul {
    padding: 30px 0;
  }
}

.footer .privacy_copyright {
  padding: 13px 0;
  background: #307ab3;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer .privacy_copyright {
    padding: 12px 0;
    font-size: 11px;
  }
}

.top_desc {
  margin-top: 173px;
}

@media screen and (max-width: 1260px) {
  .top_desc {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .top_desc {
    margin-top: 62px;
  }
}

.top_search_about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}

.top_search_about .left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 992px) {
  .top_search_about .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .top_search_about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.top_search_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  line-height: 1.88889;
}

.top_search_form form input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  border-radius: 5px 0px 0px 5px;
}

@media screen and (max-width: 768px) {
  .top_search_form form input {
    padding: 12px 15px;
    width: 100%;
  }
}

.top_search_form form button {
  width: 80px;
  border: none;
  border-radius: 0px 5px 5px 0px;
  background: #333;
  color: #fff;
  font-weight: 700;
  --spacing: .2em;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.top_search_form form button:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .top_search_form form button:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .top_search_form form button {
    width: 60px;
  }
}

@media screen and (max-width: 768px) {
  .top_search_form form {
    font-size: 15px;
  }
}

.top_partners_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 20px;
  min-width: 380px;
  min-height: 180px;
  background: url(../img/top/img_partners_link.jpg) no-repeat center;
  background-size: cover;
}

.top_partners_link:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 128, 30, 0.8);
}

.top_partners_link .headline1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 8px;
  justify-items: center;
  text-align: center;
  color: #fff;
  line-height: 1.52;
}

.top_partners_link .headline1 img {
  height: 20px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .top_partners_link .headline1 img {
    height: 18px;
  }
}

@media screen and (max-width: 768px) {
  .top_partners_link .headline1 {
    row-gap: 6px;
  }
}

.top_partners_link .btn_link {
  margin-top: 10px;
  padding: 0;
  border-radius: 0;
  background: none;
}

@media screen and (max-width: 768px) {
  .top_partners_link {
    padding: 15px;
    min-width: 100%;
    min-height: 150px;
  }
}

.top_about_temporary_housing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}

.top_about_temporary_housing img {
  width: 180px !important;
}

.top_about_temporary_housing p {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .top_about_temporary_housing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
}

.top_flow_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding: 20px;
  min-width: 380px;
  min-height: 180px;
  border: 2px solid #ff801e;
  background: url(../img/top/img_flow_link.jpg) no-repeat center right;
  background-size: contain;
}

.top_flow_link .headline1 {
  color: #ff801e;
}

.top_flow_link .btn_link {
  margin-top: 10px;
  padding: 0;
  border-radius: 0;
  border: none !important;
}

@media screen and (max-width: 768px) {
  .top_flow_link {
    padding: 15px;
    min-width: 100%;
    min-height: 150px;
  }
}

.toggle_list > li {
  margin-top: 30px;
}

.toggle_list > li:first-child {
  margin-top: 0;
}

.toggle_list > li .toggle_each {
  position: relative;
  padding: 0 30px;
  border: 1px solid #307ab3;
  border-radius: 5px;
  background: #fff;
}

.toggle_list > li .toggle_each dt .content, .toggle_list > li .toggle_each dd .content {
  position: relative;
}

.toggle_list > li .toggle_each dt .content:before, .toggle_list > li .toggle_each dd .content:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .toggle_list > li .toggle_each dt .content:before, .toggle_list > li .toggle_each dd .content:before {
    font-size: 18px;
    line-height: 1.66667;
  }
}

.toggle_list > li .toggle_each dt {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.toggle_list > li .toggle_each dt.current:after {
  background: url(../img/cmn/icn_minus_bl.svg) no-repeat center;
}

.toggle_list > li .toggle_each dt:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .toggle_list > li .toggle_each dt:hover {
    opacity: 1;
  }
}

.toggle_list > li .toggle_each dt:after {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 16px;
  background: url(../img/cmn/icn_plus_bl.svg) no-repeat center;
  background-size: contain;
}

.toggle_list > li .toggle_each dt .content {
  padding: 20px 30px 20px 40px;
}

.toggle_list > li .toggle_each dt .content:before {
  content: 'Q';
  color: #307ab3;
}

@media screen and (max-width: 768px) {
  .toggle_list > li .toggle_each dt .content {
    padding: 15px 24px 15px 24px;
  }
}

.toggle_list > li .toggle_each dd {
  display: none;
  position: relative;
  border-top: 1px solid #ccc;
}

.toggle_list > li .toggle_each dd .content {
  padding: 20px 0 20px 40px;
}

.toggle_list > li .toggle_each dd .content:before {
  content: 'A';
  color: #ff801e;
}

@media screen and (max-width: 768px) {
  .toggle_list > li .toggle_each dd .content {
    padding: 15px 0 15px 24px;
  }
}

@media screen and (max-width: 768px) {
  .toggle_list > li .toggle_each {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .toggle_list > li {
    margin-top: 20px;
  }
}

.flow_list {
  list-style: none;
  counter-reset: li;
}

.flow_list li {
  position: relative;
  margin-top: 50px;
  padding: 30px;
  background: #f4f4f4;
}

.flow_list li:first-child {
  margin-top: 0;
}

.flow_list li:last-child:before, .flow_list li:last-child:after {
  content: none;
}

.flow_list li:after {
  content: '';
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: -32px;
  left: 0;
  margin: 0 auto;
  width: 23px;
  height: 12px;
  background: url(../img/cmn/icn_chevron_down_bk.svg) no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .flow_list li:after {
    bottom: -26px;
  }
}

.flow_list li .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.flow_list li .number .step {
  counter-increment: li;
  display: block;
  padding: 4px 10px;
  min-width: 100px;
  background: #307ab3;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

@media screen and (max-width: 768px) {
  .flow_list li .number .step {
    padding: 2px 5px;
    min-width: 60px;
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .flow_list li .number {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .flow_list li {
    margin-top: 40px;
    padding: 20px;
  }
}

.cmn_news_list li {
  border-bottom: 1px solid #ccc;
}

.cmn_news_list li:first-child {
  border-top: 1px solid #ccc;
}

.cmn_news_list li a {
  display: block;
  padding: 26px 0;
}

.cmn_news_list li a dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.cmn_news_list li a dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.cmn_news_list li a dl dt .cat {
  display: block;
  padding: 4px 10px;
  min-width: 100px;
  background: #307ab3;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

.cmn_news_list li a dl dt .cat.black {
  background: #333;
}

@media screen and (max-width: 768px) {
  .cmn_news_list li a dl dt .cat {
    padding: 2px 5px;
    min-width: 80px;
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_news_list li a dl dt {
    gap: 15px;
  }
}

.cmn_news_list li a dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .cmn_news_list li a dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
  }
}

@media screen and (max-width: 768px) {
  .cmn_news_list li a {
    padding: 12px 0;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.pagination .numbers {
  display: block;
  opacity: 1;
  padding: 4px 10px;
  min-width: 38px;
  border-radius: 5px;
  border: solid 1px #ccc;
  background: #fff;
  color: #333;
  text-align: center;
}

.pagination .numbers.current {
  border: solid 1px #307ab3;
  background: #307ab3;
  color: #fff;
}

.pagination .numbers.current:hover {
  opacity: 1;
}

.pagination .numbers:hover {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .pagination .numbers:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .pagination .numbers {
    padding: 4px 4px;
    min-width: 30px;
	font-size: 0.8em;
  }
}

.pagination .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #333;
}

@media screen and (max-width: 768px) {
  .pagination .icn {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 768px) {
  .pagination {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.news_single .time_cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.news_single .time_cat .cat {
  display: block;
  padding: 4px 10px;
  min-width: 100px;
  background: #307ab3;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

.news_single .time_cat .cat.black {
  background: #333;
}

@media screen and (max-width: 768px) {
  .news_single .time_cat .cat {
    padding: 2px 5px;
    min-width: 80px;
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .news_single .time_cat {
    gap: 15px;
  }
}

.news_single a {
  color: #307ab3;
  text-decoration: underline;
}

.news_single a.btn_link {
  text-decoration: none;
}

.prev_next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  padding: 30px 20px;
  background: #f4f4f4;
  text-decoration: underline;
}

.prev_next .prev, .prev_next .next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.prev_next .prev a, .prev_next .next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.prev_next .prev a .icn, .prev_next .next a .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #333;
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

@media screen and (max-width: 768px) {
  .prev_next .prev a .icn, .prev_next .next a .icn {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 768px) {
  .prev_next .prev a, .prev_next .next a {
    gap: 5px;
  }
}

.prev_next .prev {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.prev_next .next {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .prev_next {
    gap: 15px;
    padding: 10px;
    font-size: 13px;
    line-height: 1.69231;
  }
}

.map_link svg {
  height: auto;
}

.map_link svg path {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  .map_link svg a:hover {
    opacity: 1;
  }
  .map_link svg a:hover .txt {
    fill: #fff !important;
  }
  .map_link svg a:hover path {
    fill: #307ab3;
  }
}

@media screen and (hover: hover) and (pointer: fine) and (max-width: 768px) {
  .map_link svg a:hover path {
    fill: inherit;
  }
}

.serch_list_box {
  border: 1px solid #ccc;
}

.serch_list_box .search_parent {
  padding: 15px 30px;
  background: #f4f4f4;
}

@media screen and (max-width: 768px) {
  .serch_list_box .search_parent {
    padding: 10px 20px;
  }
}

.serch_list_box .search_child_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 0;
  padding: 30px;
}

.serch_list_box .search_child_list li {
  width: calc(100% / 4);
}

@media screen and (max-width: 768px) {
  .serch_list_box .search_child_list li {
    width: calc(100% / 2);
  }
}

@media screen and (max-width: 768px) {
  .serch_list_box .search_child_list {
    gap: 10px 0;
    padding: 20px;
  }
}

.search_requirements input[type=text] {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.88889;
}

@media screen and (max-width: 768px) {
  .search_requirements input[type=text] {
    padding: 12px 15px;
    width: 100%;
    font-size: 15px;
  }
}

.search_requirements .requirements_check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
}

@media screen and (max-width: 768px) {
  .search_requirements .requirements_check_list {
    gap: 10px 15px;
  }
}

.search_results_guide {
  position: relative;
  padding: 25px 30px;
  background: #fff1e6;
}

.search_results_guide:after {
  content: '';
  z-index: 0;
  opacity: .9;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 106px;
  height: 106px;
  background: url(../img/cmn/icn_search_results_guide.svg) no-repeat center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .search_results_guide:after {
    bottom: -40px;
    width: 86px;
    height: 86px;
  }
}

.search_results_guide li {
  z-index: 1;
  position: relative;
  margin-top: 5px;
}

.search_results_guide li:first-child {
  margin-top: 0;
}

.search_results_guide li:first-child a img {
  margin-right: 1px;
}

.search_results_guide li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  text-decoration: underline;
}

.search_results_guide li a:hover {
  opacity: 1;
  text-decoration: none;
}

.search_results_guide li a img {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

@media screen and (max-width: 768px) {
  .search_results_guide li a {
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .search_results_guide li {
    margin-top: 3px;
  }
}

@media screen and (max-width: 768px) {
  .search_results_guide {
    padding: 15px;
  }
}

.search_results_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.search_results_info .search_results_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #307ab3;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.46667;
}

.search_results_info .search_results_number span {
  display: block;
  color: #333;
  font-size: 16px;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

@media screen and (max-width: 768px) {
  .search_results_info .search_results_number span {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .search_results_info .search_results_number {
    font-size: 28px;
  }
}

.search_results_info .search_results_order_pagination {
  width: 100%;
}

.search_results_info .search_order_number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.search_results_info .search_order_number dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.search_results_info .search_order_number dl.number .select_wrap {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .search_results_info .search_order_number dl.number .select_wrap {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .search_results_info .search_order_number dl dt {
    width: 120px;
    text-align: right;
  }
}

@media screen and (max-width: 768px) {
  .search_results_info .search_order_number dl {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .search_results_info .search_order_number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .search_results_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }
}

.property_each {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid #ccc;
}

.property_each:last-child {
  border-bottom: 1px solid #ccc;
}

.property_each .left {
  width: 260px;
}

.property_each .left .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.property_each .left .floor_plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ccc;
}

.property_each .left .status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 10px;
  background: #333;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

@media screen and (max-width: 768px) {
  .property_each .left .status {
    padding: 2px 5px;
    font-size: 11px;
  }
}

.property_each .left .btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.property_each .left .btn_box .each_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 6px 0;
  width: calc((100% - 10px) / 2) !important;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.property_each .left .btn_box .each_btn .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff801e;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

.property_each .left .btn_box .each_btn .icn img {
  width: auto;
  height: 7px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.property_each .left .btn_box .each_btn img {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

@media screen and (max-width: 768px) {
  .property_each .left .btn_box .each_btn img {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .property_each .left .btn_box .each_btn {
    padding: 4px 0;
  }
}

@media screen and (max-width: 768px) {
  .property_each .left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}

.property_each .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.property_each .right .cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 10px;
  background: #307ab3;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

.property_each .right .cat.black {
  background: #333;
}

@media screen and (max-width: 768px) {
  .property_each .right .cat {
    padding: 2px 5px;
    font-size: 11px;
  }
}

.property_each .right .tag_list {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .property_each .right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .property_each {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
  }
}

.town_name_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  line-height: 1.25;
}

.town_name_link dt {
  font-weight: 700;
}

.town_name_link dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.town_name_link dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px 0;
}

.town_name_link dd ul li {
  margin-right: 8px;
  padding-right: 8px;
  border-right: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .town_name_link {
    gap: 15px;
  }
}

.property_info {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}

.property_info .property_info_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 15px;
  border-bottom: 4px solid #307ab3;
}

.property_info .document_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 6px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.property_info .document_btn img {
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

@media screen and (max-width: 768px) {
  .property_info .document_btn {
    padding: 4px 10px;
  }
}

.property_info .cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 4px 10px;
  background: #307ab3;
  color: #fff;
  font-size: 13px;
  text-align: center;
  line-height: 1.38462;
}

.property_info .cat.black {
  background: #333;
}

@media screen and (max-width: 768px) {
  .property_info .cat {
    padding: 2px 5px;
    font-size: 11px;
  }
}

.property_info .first_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.property_info .first_table .each {
  width: calc((100% - 30px) / 2);
}

.property_info .first_table .each .cmn_table.property th {
  min-width: 135px;
}

@media screen and (max-width: 768px) {
  .property_info .first_table .each {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .property_info .first_table {
    gap: 15px;
  }
}

.property_info .property_info_slider, .property_info .property_info_slider_tmb {
  overflow: hidden;
  position: relative;
}

.property_info .property_info_slider .swiper-slide, .property_info .property_info_slider_tmb .swiper-slide {
  cursor: pointer;
}

.property_info .property_info_slider .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.property_info .property_info_slider .swiper-button-prev:after,
.property_info .property_info_slider .swiper-button-next:after {
  content: none;
}

.property_info .property_info_slider .swiper-button-prev .icn,
.property_info .property_info_slider .swiper-button-next .icn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #333;
}

.property_info .property_info_slider .swiper-button-prev .icn img,
.property_info .property_info_slider .swiper-button-next .icn img {
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 768px) {
  .property_info .property_info_slider .swiper-button-prev .icn,
  .property_info .property_info_slider .swiper-button-next .icn {
    width: 26px;
    height: 26px;
  }
}

.property_info .tag_list {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .property_info {
    padding-bottom: 20px;
  }
}

.property_detail {
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .property_detail .cmn_table.property th, .property_detail .cmn_table.property td {
    display: block;
    width: 100% !important;
  }
}

.property_detail .cmn_table .property_4row th {
  width: 20%;
}

.property_detail .cmn_table .property_4row td {
  width: 30%;
}

.property_detail .cmn_table .property_2row th {
  width: 10%;
}

.property_detail .cmn_table .property_2row td {
  width: 90%;
}

@media screen and (max-width: 768px) {
  .property_detail {
    padding-bottom: 20px;
  }
}

.shop_staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.shop_staff.staff {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 768px) {
  .shop_staff.staff {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.shop_staff .left {
  width: 260px;
}

.shop_staff .left .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .shop_staff .left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}

.shop_staff .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .shop_staff .right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .shop_staff {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
}

@media screen and (max-width: 992px) {
  .sidebar {
    margin: 60px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .sidebar {
    margin: 30px 0 0;
  }
}

.search_requirements_ttl {
  padding: 15px 20px;
  background: #307ab3;
  color: #fff;
}

.search_requirements_box {
  padding: 30px 20px;
  border: 1px solid #ccc;
}

.search_requirements_box .child_ttl {
  margin: 20px 0 5px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .search_requirements_box .child_ttl {
    margin: 12px 0 8px;
  }
}

.search_requirements_box .area_child {
  padding: 5px 0 0 15px;
}

.search_requirements_box .area_change_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #f4f4f4;
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.search_requirements_box .select_limit {
  gap: 3px;
}

.search_requirements_box .select_wrap {
  width: 100%;
}

.search_requirements_box .requirements_check_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.search_requirements_box .requirements_check_list.rent li {
  width: 100%;
}

.search_requirements_box .requirements_check_list.floor_plan li:nth-child(odd) {
  width: 120px;
}

@media screen and (max-width: 768px) {
  .search_requirements_box .requirements_check_list.floor_plan li {
    width: calc((100% - 15px) / 2) !important;
  }
}

@media screen and (max-width: 768px) {
  .search_requirements_box .requirements_check_list {
    gap: 10px 15px;
  }
}

.search_requirements_box input[type=text] {
  padding: 6px 10px;
}

.search_requirements_box .btn_link {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .search_requirements_box {
    padding: 20px;
  }
}

.mt00 {
  margin-top: 0px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.pt170 {
  padding-top: 170px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.pt180 {
  padding-top: 180px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.pt190 {
  padding-top: 190px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.pt200 {
  padding-top: 200px !important;
}

@media screen and (max-width: 768px) {
  .mt05 {
    margin-top: 2.5px !important;
  }
  .pt05 {
    padding-top: 2.5px !important;
  }
  .mt10 {
    margin-top: 5px !important;
  }
  .pt10 {
    padding-top: 5px !important;
  }
  .mt15 {
    margin-top: 7.5px !important;
  }
  .pt15 {
    padding-top: 7.5px !important;
  }
  .mt20 {
    margin-top: 10px !important;
  }
  .pt20 {
    padding-top: 10px !important;
  }
  .mt25 {
    margin-top: 12.5px !important;
  }
  .pt25 {
    padding-top: 12.5px !important;
  }
  .mt30 {
    margin-top: 15px !important;
  }
  .pt30 {
    padding-top: 15px !important;
  }
  .mt35 {
    margin-top: 17.5px !important;
  }
  .pt35 {
    padding-top: 17.5px !important;
  }
  .mt40 {
    margin-top: 20px !important;
  }
  .pt40 {
    padding-top: 20px !important;
  }
  .mt45 {
    margin-top: 22.5px !important;
  }
  .pt45 {
    padding-top: 22.5px !important;
  }
  .mt50 {
    margin-top: 25px !important;
  }
  .pt50 {
    padding-top: 25px !important;
  }
  .mt55 {
    margin-top: 27.5px !important;
  }
  .pt55 {
    padding-top: 27.5px !important;
  }
  .mt60 {
    margin-top: 30px !important;
  }
  .pt60 {
    padding-top: 30px !important;
  }
  .mt65 {
    margin-top: 32.5px !important;
  }
  .pt65 {
    padding-top: 32.5px !important;
  }
  .mt70 {
    margin-top: 35px !important;
  }
  .pt70 {
    padding-top: 35px !important;
  }
  .mt75 {
    margin-top: 37.5px !important;
  }
  .pt75 {
    padding-top: 37.5px !important;
  }
  .mt80 {
    margin-top: 40px !important;
  }
  .pt80 {
    padding-top: 40px !important;
  }
  .mt85 {
    margin-top: 42.5px !important;
  }
  .pt85 {
    padding-top: 42.5px !important;
  }
  .mt90 {
    margin-top: 45px !important;
  }
  .pt90 {
    padding-top: 45px !important;
  }
  .mt95 {
    margin-top: 47.5px !important;
  }
  .pt95 {
    padding-top: 47.5px !important;
  }
  .mt100 {
    margin-top: 50px !important;
  }
  .pt100 {
    padding-top: 50px !important;
  }
  .mt110 {
    margin-top: 55px !important;
  }
  .pt110 {
    padding-top: 55px !important;
  }
  .mt120 {
    margin-top: 60px !important;
  }
  .pt120 {
    padding-top: 60px !important;
  }
  .mt130 {
    margin-top: 65px !important;
  }
  .pt130 {
    padding-top: 65px !important;
  }
  .mt140 {
    margin-top: 70px !important;
  }
  .pt140 {
    padding-top: 70px !important;
  }
  .mt150 {
    margin-top: 75px !important;
  }
  .pt150 {
    padding-top: 75px !important;
  }
  .mt160 {
    margin-top: 80px !important;
  }
  .pt160 {
    padding-top: 80px !important;
  }
  .mt170 {
    margin-top: 85px !important;
  }
  .pt170 {
    padding-top: 85px !important;
  }
  .mt180 {
    margin-top: 90px !important;
  }
  .pt180 {
    padding-top: 90px !important;
  }
  .mt190 {
    margin-top: 95px !important;
  }
  .pt190 {
    padding-top: 95px !important;
  }
  .mt200 {
    margin-top: 100px !important;
  }
  .pt200 {
    padding-top: 100px !important;
  }
  .mt00_sp {
    margin-top: 0px !important;
  }
  .pt00_sp {
    padding-top: 0px !important;
  }
  .mt05_sp {
    margin-top: 5px !important;
  }
  .pt05_sp {
    padding-top: 5px !important;
  }
  .mt10_sp {
    margin-top: 10px !important;
  }
  .pt10_sp {
    padding-top: 10px !important;
  }
  .mt15_sp {
    margin-top: 15px !important;
  }
  .pt15_sp {
    padding-top: 15px !important;
  }
  .mt20_sp {
    margin-top: 20px !important;
  }
  .pt20_sp {
    padding-top: 20px !important;
  }
  .mt25_sp {
    margin-top: 25px !important;
  }
  .pt25_sp {
    padding-top: 25px !important;
  }
  .mt30_sp {
    margin-top: 30px !important;
  }
  .pt30_sp {
    padding-top: 30px !important;
  }
  .mt35_sp {
    margin-top: 35px !important;
  }
  .pt35_sp {
    padding-top: 35px !important;
  }
  .mt40_sp {
    margin-top: 40px !important;
  }
  .pt40_sp {
    padding-top: 40px !important;
  }
  .mt45_sp {
    margin-top: 45px !important;
  }
  .pt45_sp {
    padding-top: 45px !important;
  }
  .mt50_sp {
    margin-top: 50px !important;
  }
  .pt50_sp {
    padding-top: 50px !important;
  }
  .mt55_sp {
    margin-top: 55px !important;
  }
  .pt55_sp {
    padding-top: 55px !important;
  }
  .mt60_sp {
    margin-top: 60px !important;
  }
  .pt60_sp {
    padding-top: 60px !important;
  }
  .mt65_sp {
    margin-top: 65px !important;
  }
  .pt65_sp {
    padding-top: 65px !important;
  }
  .mt70_sp {
    margin-top: 70px !important;
  }
  .pt70_sp {
    padding-top: 70px !important;
  }
  .mt75_sp {
    margin-top: 75px !important;
  }
  .pt75_sp {
    padding-top: 75px !important;
  }
  .mt80_sp {
    margin-top: 80px !important;
  }
  .pt80_sp {
    padding-top: 80px !important;
  }
  .mt85_sp {
    margin-top: 85px !important;
  }
  .pt85_sp {
    padding-top: 85px !important;
  }
  .mt90_sp {
    margin-top: 90px !important;
  }
  .pt90_sp {
    padding-top: 90px !important;
  }
  .mt95_sp {
    margin-top: 95px !important;
  }
  .pt95_sp {
    padding-top: 95px !important;
  }
  .mt100_sp {
    margin-top: 100px !important;
  }
  .pt100_sp {
    padding-top: 100px !important;
  }
  .mt110_sp {
    margin-top: 110px !important;
  }
  .pt110_sp {
    padding-top: 110px !important;
  }
  .mt120_sp {
    margin-top: 120px !important;
  }
  .pt120_sp {
    padding-top: 120px !important;
  }
  .mt130_sp {
    margin-top: 130px !important;
  }
  .pt130_sp {
    padding-top: 130px !important;
  }
  .mt140_sp {
    margin-top: 140px !important;
  }
  .pt140_sp {
    padding-top: 140px !important;
  }
  .mt150_sp {
    margin-top: 150px !important;
  }
  .pt150_sp {
    padding-top: 150px !important;
  }
  .mt160_sp {
    margin-top: 160px !important;
  }
  .pt160_sp {
    padding-top: 160px !important;
  }
  .mt170_sp {
    margin-top: 170px !important;
  }
  .pt170_sp {
    padding-top: 170px !important;
  }
  .mt180_sp {
    margin-top: 180px !important;
  }
  .pt180_sp {
    padding-top: 180px !important;
  }
  .mt190_sp {
    margin-top: 190px !important;
  }
  .pt190_sp {
    padding-top: 190px !important;
  }
  .mt200_sp {
    margin-top: 200px !important;
  }
  .pt200_sp {
    padding-top: 200px !important;
  }
}

.mr00 {
  margin-right: 0px !important;
}

.pr00 {
  padding-right: 0px !important;
}

.mr05 {
  margin-right: 5px !important;
}

.pr05 {
  padding-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.mr110 {
  margin-right: 110px !important;
}

.pr110 {
  padding-right: 110px !important;
}

.mr120 {
  margin-right: 120px !important;
}

.pr120 {
  padding-right: 120px !important;
}

.mr130 {
  margin-right: 130px !important;
}

.pr130 {
  padding-right: 130px !important;
}

.mr140 {
  margin-right: 140px !important;
}

.pr140 {
  padding-right: 140px !important;
}

.mr150 {
  margin-right: 150px !important;
}

.pr150 {
  padding-right: 150px !important;
}

.mr160 {
  margin-right: 160px !important;
}

.pr160 {
  padding-right: 160px !important;
}

.mr170 {
  margin-right: 170px !important;
}

.pr170 {
  padding-right: 170px !important;
}

.mr180 {
  margin-right: 180px !important;
}

.pr180 {
  padding-right: 180px !important;
}

.mr190 {
  margin-right: 190px !important;
}

.pr190 {
  padding-right: 190px !important;
}

.mr200 {
  margin-right: 200px !important;
}

.pr200 {
  padding-right: 200px !important;
}

@media screen and (max-width: 768px) {
  .mr00 {
    margin-right: 0px !important;
  }
  .pr00 {
    padding-right: 0px !important;
  }
  .mr05 {
    margin-right: 2.5px !important;
  }
  .pr05 {
    padding-right: 2.5px !important;
  }
  .mr10 {
    margin-right: 5px !important;
  }
  .pr10 {
    padding-right: 5px !important;
  }
  .mr15 {
    margin-right: 7.5px !important;
  }
  .pr15 {
    padding-right: 7.5px !important;
  }
  .mr20 {
    margin-right: 10px !important;
  }
  .pr20 {
    padding-right: 10px !important;
  }
  .mr25 {
    margin-right: 12.5px !important;
  }
  .pr25 {
    padding-right: 12.5px !important;
  }
  .mr30 {
    margin-right: 15px !important;
  }
  .pr30 {
    padding-right: 15px !important;
  }
  .mr35 {
    margin-right: 17.5px !important;
  }
  .pr35 {
    padding-right: 17.5px !important;
  }
  .mr40 {
    margin-right: 20px !important;
  }
  .pr40 {
    padding-right: 20px !important;
  }
  .mr45 {
    margin-right: 22.5px !important;
  }
  .pr45 {
    padding-right: 22.5px !important;
  }
  .mr50 {
    margin-right: 25px !important;
  }
  .pr50 {
    padding-right: 25px !important;
  }
  .mr55 {
    margin-right: 27.5px !important;
  }
  .pr55 {
    padding-right: 27.5px !important;
  }
  .mr60 {
    margin-right: 30px !important;
  }
  .pr60 {
    padding-right: 30px !important;
  }
  .mr65 {
    margin-right: 32.5px !important;
  }
  .pr65 {
    padding-right: 32.5px !important;
  }
  .mr70 {
    margin-right: 35px !important;
  }
  .pr70 {
    padding-right: 35px !important;
  }
  .mr75 {
    margin-right: 37.5px !important;
  }
  .pr75 {
    padding-right: 37.5px !important;
  }
  .mr80 {
    margin-right: 40px !important;
  }
  .pr80 {
    padding-right: 40px !important;
  }
  .mr85 {
    margin-right: 42.5px !important;
  }
  .pr85 {
    padding-right: 42.5px !important;
  }
  .mr90 {
    margin-right: 45px !important;
  }
  .pr90 {
    padding-right: 45px !important;
  }
  .mr95 {
    margin-right: 47.5px !important;
  }
  .pr95 {
    padding-right: 47.5px !important;
  }
  .mr100 {
    margin-right: 50px !important;
  }
  .pr100 {
    padding-right: 50px !important;
  }
  .mr110 {
    margin-right: 55px !important;
  }
  .pr110 {
    padding-right: 55px !important;
  }
  .mr120 {
    margin-right: 60px !important;
  }
  .pr120 {
    padding-right: 60px !important;
  }
  .mr130 {
    margin-right: 65px !important;
  }
  .pr130 {
    padding-right: 65px !important;
  }
  .mr140 {
    margin-right: 70px !important;
  }
  .pr140 {
    padding-right: 70px !important;
  }
  .mr150 {
    margin-right: 75px !important;
  }
  .pr150 {
    padding-right: 75px !important;
  }
  .mr160 {
    margin-right: 80px !important;
  }
  .pr160 {
    padding-right: 80px !important;
  }
  .mr170 {
    margin-right: 85px !important;
  }
  .pr170 {
    padding-right: 85px !important;
  }
  .mr180 {
    margin-right: 90px !important;
  }
  .pr180 {
    padding-right: 90px !important;
  }
  .mr190 {
    margin-right: 95px !important;
  }
  .pr190 {
    padding-right: 95px !important;
  }
  .mr200 {
    margin-right: 100px !important;
  }
  .pr200 {
    padding-right: 100px !important;
  }
  .mr00_sp {
    margin-right: 0px !important;
  }
  .pr00_sp {
    padding-right: 0px !important;
  }
  .mr05_sp {
    margin-right: 5px !important;
  }
  .pr05_sp {
    padding-right: 5px !important;
  }
  .mr10_sp {
    margin-right: 10px !important;
  }
  .pr10_sp {
    padding-right: 10px !important;
  }
  .mr15_sp {
    margin-right: 15px !important;
  }
  .pr15_sp {
    padding-right: 15px !important;
  }
  .mr20_sp {
    margin-right: 20px !important;
  }
  .pr20_sp {
    padding-right: 20px !important;
  }
  .mr25_sp {
    margin-right: 25px !important;
  }
  .pr25_sp {
    padding-right: 25px !important;
  }
  .mr30_sp {
    margin-right: 30px !important;
  }
  .pr30_sp {
    padding-right: 30px !important;
  }
  .mr35_sp {
    margin-right: 35px !important;
  }
  .pr35_sp {
    padding-right: 35px !important;
  }
  .mr40_sp {
    margin-right: 40px !important;
  }
  .pr40_sp {
    padding-right: 40px !important;
  }
  .mr45_sp {
    margin-right: 45px !important;
  }
  .pr45_sp {
    padding-right: 45px !important;
  }
  .mr50_sp {
    margin-right: 50px !important;
  }
  .pr50_sp {
    padding-right: 50px !important;
  }
  .mr55_sp {
    margin-right: 55px !important;
  }
  .pr55_sp {
    padding-right: 55px !important;
  }
  .mr60_sp {
    margin-right: 60px !important;
  }
  .pr60_sp {
    padding-right: 60px !important;
  }
  .mr65_sp {
    margin-right: 65px !important;
  }
  .pr65_sp {
    padding-right: 65px !important;
  }
  .mr70_sp {
    margin-right: 70px !important;
  }
  .pr70_sp {
    padding-right: 70px !important;
  }
  .mr75_sp {
    margin-right: 75px !important;
  }
  .pr75_sp {
    padding-right: 75px !important;
  }
  .mr80_sp {
    margin-right: 80px !important;
  }
  .pr80_sp {
    padding-right: 80px !important;
  }
  .mr85_sp {
    margin-right: 85px !important;
  }
  .pr85_sp {
    padding-right: 85px !important;
  }
  .mr90_sp {
    margin-right: 90px !important;
  }
  .pr90_sp {
    padding-right: 90px !important;
  }
  .mr95_sp {
    margin-right: 95px !important;
  }
  .pr95_sp {
    padding-right: 95px !important;
  }
  .mr100_sp {
    margin-right: 100px !important;
  }
  .pr100_sp {
    padding-right: 100px !important;
  }
  .mr110_sp {
    margin-right: 110px !important;
  }
  .pr110_sp {
    padding-right: 110px !important;
  }
  .mr120_sp {
    margin-right: 120px !important;
  }
  .pr120_sp {
    padding-right: 120px !important;
  }
  .mr130_sp {
    margin-right: 130px !important;
  }
  .pr130_sp {
    padding-right: 130px !important;
  }
  .mr140_sp {
    margin-right: 140px !important;
  }
  .pr140_sp {
    padding-right: 140px !important;
  }
  .mr150_sp {
    margin-right: 150px !important;
  }
  .pr150_sp {
    padding-right: 150px !important;
  }
  .mr160_sp {
    margin-right: 160px !important;
  }
  .pr160_sp {
    padding-right: 160px !important;
  }
  .mr170_sp {
    margin-right: 170px !important;
  }
  .pr170_sp {
    padding-right: 170px !important;
  }
  .mr180_sp {
    margin-right: 180px !important;
  }
  .pr180_sp {
    padding-right: 180px !important;
  }
  .mr190_sp {
    margin-right: 190px !important;
  }
  .pr190_sp {
    padding-right: 190px !important;
  }
  .mr200_sp {
    margin-right: 200px !important;
  }
  .pr200_sp {
    padding-right: 200px !important;
  }
}

.mb00 {
  margin-bottom: 0px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.pb110 {
  padding-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.pb120 {
  padding-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.pb130 {
  padding-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.pb140 {
  padding-bottom: 140px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.pb150 {
  padding-bottom: 150px !important;
}

.mb160 {
  margin-bottom: 160px !important;
}

.pb160 {
  padding-bottom: 160px !important;
}

.mb170 {
  margin-bottom: 170px !important;
}

.pb170 {
  padding-bottom: 170px !important;
}

.mb180 {
  margin-bottom: 180px !important;
}

.pb180 {
  padding-bottom: 180px !important;
}

.mb190 {
  margin-bottom: 190px !important;
}

.pb190 {
  padding-bottom: 190px !important;
}

.mb200 {
  margin-bottom: 200px !important;
}

.pb200 {
  padding-bottom: 200px !important;
}

@media screen and (max-width: 768px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
  .pb00 {
    padding-bottom: 0px !important;
  }
  .mb05 {
    margin-bottom: 2.5px !important;
  }
  .pb05 {
    padding-bottom: 2.5px !important;
  }
  .mb10 {
    margin-bottom: 5px !important;
  }
  .pb10 {
    padding-bottom: 5px !important;
  }
  .mb15 {
    margin-bottom: 7.5px !important;
  }
  .pb15 {
    padding-bottom: 7.5px !important;
  }
  .mb20 {
    margin-bottom: 10px !important;
  }
  .pb20 {
    padding-bottom: 10px !important;
  }
  .mb25 {
    margin-bottom: 12.5px !important;
  }
  .pb25 {
    padding-bottom: 12.5px !important;
  }
  .mb30 {
    margin-bottom: 15px !important;
  }
  .pb30 {
    padding-bottom: 15px !important;
  }
  .mb35 {
    margin-bottom: 17.5px !important;
  }
  .pb35 {
    padding-bottom: 17.5px !important;
  }
  .mb40 {
    margin-bottom: 20px !important;
  }
  .pb40 {
    padding-bottom: 20px !important;
  }
  .mb45 {
    margin-bottom: 22.5px !important;
  }
  .pb45 {
    padding-bottom: 22.5px !important;
  }
  .mb50 {
    margin-bottom: 25px !important;
  }
  .pb50 {
    padding-bottom: 25px !important;
  }
  .mb55 {
    margin-bottom: 27.5px !important;
  }
  .pb55 {
    padding-bottom: 27.5px !important;
  }
  .mb60 {
    margin-bottom: 30px !important;
  }
  .pb60 {
    padding-bottom: 30px !important;
  }
  .mb65 {
    margin-bottom: 32.5px !important;
  }
  .pb65 {
    padding-bottom: 32.5px !important;
  }
  .mb70 {
    margin-bottom: 35px !important;
  }
  .pb70 {
    padding-bottom: 35px !important;
  }
  .mb75 {
    margin-bottom: 37.5px !important;
  }
  .pb75 {
    padding-bottom: 37.5px !important;
  }
  .mb80 {
    margin-bottom: 40px !important;
  }
  .pb80 {
    padding-bottom: 40px !important;
  }
  .mb85 {
    margin-bottom: 42.5px !important;
  }
  .pb85 {
    padding-bottom: 42.5px !important;
  }
  .mb90 {
    margin-bottom: 45px !important;
  }
  .pb90 {
    padding-bottom: 45px !important;
  }
  .mb95 {
    margin-bottom: 47.5px !important;
  }
  .pb95 {
    padding-bottom: 47.5px !important;
  }
  .mb100 {
    margin-bottom: 50px !important;
  }
  .pb100 {
    padding-bottom: 50px !important;
  }
  .mb110 {
    margin-bottom: 55px !important;
  }
  .pb110 {
    padding-bottom: 55px !important;
  }
  .mb120 {
    margin-bottom: 60px !important;
  }
  .pb120 {
    padding-bottom: 60px !important;
  }
  .mb130 {
    margin-bottom: 65px !important;
  }
  .pb130 {
    padding-bottom: 65px !important;
  }
  .mb140 {
    margin-bottom: 70px !important;
  }
  .pb140 {
    padding-bottom: 70px !important;
  }
  .mb150 {
    margin-bottom: 75px !important;
  }
  .pb150 {
    padding-bottom: 75px !important;
  }
  .mb160 {
    margin-bottom: 80px !important;
  }
  .pb160 {
    padding-bottom: 80px !important;
  }
  .mb170 {
    margin-bottom: 85px !important;
  }
  .pb170 {
    padding-bottom: 85px !important;
  }
  .mb180 {
    margin-bottom: 90px !important;
  }
  .pb180 {
    padding-bottom: 90px !important;
  }
  .mb190 {
    margin-bottom: 95px !important;
  }
  .pb190 {
    padding-bottom: 95px !important;
  }
  .mb200 {
    margin-bottom: 100px !important;
  }
  .pb200 {
    padding-bottom: 100px !important;
  }
  .mb00_sp {
    margin-bottom: 0px !important;
  }
  .pb00_sp {
    padding-bottom: 0px !important;
  }
  .mb05_sp {
    margin-bottom: 5px !important;
  }
  .pb05_sp {
    padding-bottom: 5px !important;
  }
  .mb10_sp {
    margin-bottom: 10px !important;
  }
  .pb10_sp {
    padding-bottom: 10px !important;
  }
  .mb15_sp {
    margin-bottom: 15px !important;
  }
  .pb15_sp {
    padding-bottom: 15px !important;
  }
  .mb20_sp {
    margin-bottom: 20px !important;
  }
  .pb20_sp {
    padding-bottom: 20px !important;
  }
  .mb25_sp {
    margin-bottom: 25px !important;
  }
  .pb25_sp {
    padding-bottom: 25px !important;
  }
  .mb30_sp {
    margin-bottom: 30px !important;
  }
  .pb30_sp {
    padding-bottom: 30px !important;
  }
  .mb35_sp {
    margin-bottom: 35px !important;
  }
  .pb35_sp {
    padding-bottom: 35px !important;
  }
  .mb40_sp {
    margin-bottom: 40px !important;
  }
  .pb40_sp {
    padding-bottom: 40px !important;
  }
  .mb45_sp {
    margin-bottom: 45px !important;
  }
  .pb45_sp {
    padding-bottom: 45px !important;
  }
  .mb50_sp {
    margin-bottom: 50px !important;
  }
  .pb50_sp {
    padding-bottom: 50px !important;
  }
  .mb55_sp {
    margin-bottom: 55px !important;
  }
  .pb55_sp {
    padding-bottom: 55px !important;
  }
  .mb60_sp {
    margin-bottom: 60px !important;
  }
  .pb60_sp {
    padding-bottom: 60px !important;
  }
  .mb65_sp {
    margin-bottom: 65px !important;
  }
  .pb65_sp {
    padding-bottom: 65px !important;
  }
  .mb70_sp {
    margin-bottom: 70px !important;
  }
  .pb70_sp {
    padding-bottom: 70px !important;
  }
  .mb75_sp {
    margin-bottom: 75px !important;
  }
  .pb75_sp {
    padding-bottom: 75px !important;
  }
  .mb80_sp {
    margin-bottom: 80px !important;
  }
  .pb80_sp {
    padding-bottom: 80px !important;
  }
  .mb85_sp {
    margin-bottom: 85px !important;
  }
  .pb85_sp {
    padding-bottom: 85px !important;
  }
  .mb90_sp {
    margin-bottom: 90px !important;
  }
  .pb90_sp {
    padding-bottom: 90px !important;
  }
  .mb95_sp {
    margin-bottom: 95px !important;
  }
  .pb95_sp {
    padding-bottom: 95px !important;
  }
  .mb100_sp {
    margin-bottom: 100px !important;
  }
  .pb100_sp {
    padding-bottom: 100px !important;
  }
  .mb110_sp {
    margin-bottom: 110px !important;
  }
  .pb110_sp {
    padding-bottom: 110px !important;
  }
  .mb120_sp {
    margin-bottom: 120px !important;
  }
  .pb120_sp {
    padding-bottom: 120px !important;
  }
  .mb130_sp {
    margin-bottom: 130px !important;
  }
  .pb130_sp {
    padding-bottom: 130px !important;
  }
  .mb140_sp {
    margin-bottom: 140px !important;
  }
  .pb140_sp {
    padding-bottom: 140px !important;
  }
  .mb150_sp {
    margin-bottom: 150px !important;
  }
  .pb150_sp {
    padding-bottom: 150px !important;
  }
  .mb160_sp {
    margin-bottom: 160px !important;
  }
  .pb160_sp {
    padding-bottom: 160px !important;
  }
  .mb170_sp {
    margin-bottom: 170px !important;
  }
  .pb170_sp {
    padding-bottom: 170px !important;
  }
  .mb180_sp {
    margin-bottom: 180px !important;
  }
  .pb180_sp {
    padding-bottom: 180px !important;
  }
  .mb190_sp {
    margin-bottom: 190px !important;
  }
  .pb190_sp {
    padding-bottom: 190px !important;
  }
  .mb200_sp {
    margin-bottom: 200px !important;
  }
  .pb200_sp {
    padding-bottom: 200px !important;
  }
}

.ml00 {
  margin-left: 0px !important;
}

.pl00 {
  padding-left: 0px !important;
}

.ml05 {
  margin-left: 5px !important;
}

.pl05 {
  padding-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.ml110 {
  margin-left: 110px !important;
}

.pl110 {
  padding-left: 110px !important;
}

.ml120 {
  margin-left: 120px !important;
}

.pl120 {
  padding-left: 120px !important;
}

.ml130 {
  margin-left: 130px !important;
}

.pl130 {
  padding-left: 130px !important;
}

.ml140 {
  margin-left: 140px !important;
}

.pl140 {
  padding-left: 140px !important;
}

.ml150 {
  margin-left: 150px !important;
}

.pl150 {
  padding-left: 150px !important;
}

.ml160 {
  margin-left: 160px !important;
}

.pl160 {
  padding-left: 160px !important;
}

.ml170 {
  margin-left: 170px !important;
}

.pl170 {
  padding-left: 170px !important;
}

.ml180 {
  margin-left: 180px !important;
}

.pl180 {
  padding-left: 180px !important;
}

.ml190 {
  margin-left: 190px !important;
}

.pl190 {
  padding-left: 190px !important;
}

.ml200 {
  margin-left: 200px !important;
}

.pl200 {
  padding-left: 200px !important;
}

@media screen and (max-width: 768px) {
  .ml00 {
    margin-left: 0px !important;
  }
  .pl00 {
    padding-left: 0px !important;
  }
  .ml05 {
    margin-left: 2.5px !important;
  }
  .pl05 {
    padding-left: 2.5px !important;
  }
  .ml10 {
    margin-left: 5px !important;
  }
  .pl10 {
    padding-left: 5px !important;
  }
  .ml15 {
    margin-left: 7.5px !important;
  }
  .pl15 {
    padding-left: 7.5px !important;
  }
  .ml20 {
    margin-left: 10px !important;
  }
  .pl20 {
    padding-left: 10px !important;
  }
  .ml25 {
    margin-left: 12.5px !important;
  }
  .pl25 {
    padding-left: 12.5px !important;
  }
  .ml30 {
    margin-left: 15px !important;
  }
  .pl30 {
    padding-left: 15px !important;
  }
  .ml35 {
    margin-left: 17.5px !important;
  }
  .pl35 {
    padding-left: 17.5px !important;
  }
  .ml40 {
    margin-left: 20px !important;
  }
  .pl40 {
    padding-left: 20px !important;
  }
  .ml45 {
    margin-left: 22.5px !important;
  }
  .pl45 {
    padding-left: 22.5px !important;
  }
  .ml50 {
    margin-left: 25px !important;
  }
  .pl50 {
    padding-left: 25px !important;
  }
  .ml55 {
    margin-left: 27.5px !important;
  }
  .pl55 {
    padding-left: 27.5px !important;
  }
  .ml60 {
    margin-left: 30px !important;
  }
  .pl60 {
    padding-left: 30px !important;
  }
  .ml65 {
    margin-left: 32.5px !important;
  }
  .pl65 {
    padding-left: 32.5px !important;
  }
  .ml70 {
    margin-left: 35px !important;
  }
  .pl70 {
    padding-left: 35px !important;
  }
  .ml75 {
    margin-left: 37.5px !important;
  }
  .pl75 {
    padding-left: 37.5px !important;
  }
  .ml80 {
    margin-left: 40px !important;
  }
  .pl80 {
    padding-left: 40px !important;
  }
  .ml85 {
    margin-left: 42.5px !important;
  }
  .pl85 {
    padding-left: 42.5px !important;
  }
  .ml90 {
    margin-left: 45px !important;
  }
  .pl90 {
    padding-left: 45px !important;
  }
  .ml95 {
    margin-left: 47.5px !important;
  }
  .pl95 {
    padding-left: 47.5px !important;
  }
  .ml100 {
    margin-left: 50px !important;
  }
  .pl100 {
    padding-left: 50px !important;
  }
  .ml110 {
    margin-left: 55px !important;
  }
  .pl110 {
    padding-left: 55px !important;
  }
  .ml120 {
    margin-left: 60px !important;
  }
  .pl120 {
    padding-left: 60px !important;
  }
  .ml130 {
    margin-left: 65px !important;
  }
  .pl130 {
    padding-left: 65px !important;
  }
  .ml140 {
    margin-left: 70px !important;
  }
  .pl140 {
    padding-left: 70px !important;
  }
  .ml150 {
    margin-left: 75px !important;
  }
  .pl150 {
    padding-left: 75px !important;
  }
  .ml160 {
    margin-left: 80px !important;
  }
  .pl160 {
    padding-left: 80px !important;
  }
  .ml170 {
    margin-left: 85px !important;
  }
  .pl170 {
    padding-left: 85px !important;
  }
  .ml180 {
    margin-left: 90px !important;
  }
  .pl180 {
    padding-left: 90px !important;
  }
  .ml190 {
    margin-left: 95px !important;
  }
  .pl190 {
    padding-left: 95px !important;
  }
  .ml200 {
    margin-left: 100px !important;
  }
  .pl200 {
    padding-left: 100px !important;
  }
  .ml00_sp {
    margin-left: 0px !important;
  }
  .pl00_sp {
    padding-left: 0px !important;
  }
  .ml05_sp {
    margin-left: 5px !important;
  }
  .pl05_sp {
    padding-left: 5px !important;
  }
  .ml10_sp {
    margin-left: 10px !important;
  }
  .pl10_sp {
    padding-left: 10px !important;
  }
  .ml15_sp {
    margin-left: 15px !important;
  }
  .pl15_sp {
    padding-left: 15px !important;
  }
  .ml20_sp {
    margin-left: 20px !important;
  }
  .pl20_sp {
    padding-left: 20px !important;
  }
  .ml25_sp {
    margin-left: 25px !important;
  }
  .pl25_sp {
    padding-left: 25px !important;
  }
  .ml30_sp {
    margin-left: 30px !important;
  }
  .pl30_sp {
    padding-left: 30px !important;
  }
  .ml35_sp {
    margin-left: 35px !important;
  }
  .pl35_sp {
    padding-left: 35px !important;
  }
  .ml40_sp {
    margin-left: 40px !important;
  }
  .pl40_sp {
    padding-left: 40px !important;
  }
  .ml45_sp {
    margin-left: 45px !important;
  }
  .pl45_sp {
    padding-left: 45px !important;
  }
  .ml50_sp {
    margin-left: 50px !important;
  }
  .pl50_sp {
    padding-left: 50px !important;
  }
  .ml55_sp {
    margin-left: 55px !important;
  }
  .pl55_sp {
    padding-left: 55px !important;
  }
  .ml60_sp {
    margin-left: 60px !important;
  }
  .pl60_sp {
    padding-left: 60px !important;
  }
  .ml65_sp {
    margin-left: 65px !important;
  }
  .pl65_sp {
    padding-left: 65px !important;
  }
  .ml70_sp {
    margin-left: 70px !important;
  }
  .pl70_sp {
    padding-left: 70px !important;
  }
  .ml75_sp {
    margin-left: 75px !important;
  }
  .pl75_sp {
    padding-left: 75px !important;
  }
  .ml80_sp {
    margin-left: 80px !important;
  }
  .pl80_sp {
    padding-left: 80px !important;
  }
  .ml85_sp {
    margin-left: 85px !important;
  }
  .pl85_sp {
    padding-left: 85px !important;
  }
  .ml90_sp {
    margin-left: 90px !important;
  }
  .pl90_sp {
    padding-left: 90px !important;
  }
  .ml95_sp {
    margin-left: 95px !important;
  }
  .pl95_sp {
    padding-left: 95px !important;
  }
  .ml100_sp {
    margin-left: 100px !important;
  }
  .pl100_sp {
    padding-left: 100px !important;
  }
  .ml110_sp {
    margin-left: 110px !important;
  }
  .pl110_sp {
    padding-left: 110px !important;
  }
  .ml120_sp {
    margin-left: 120px !important;
  }
  .pl120_sp {
    padding-left: 120px !important;
  }
  .ml130_sp {
    margin-left: 130px !important;
  }
  .pl130_sp {
    padding-left: 130px !important;
  }
  .ml140_sp {
    margin-left: 140px !important;
  }
  .pl140_sp {
    padding-left: 140px !important;
  }
  .ml150_sp {
    margin-left: 150px !important;
  }
  .pl150_sp {
    padding-left: 150px !important;
  }
  .ml160_sp {
    margin-left: 160px !important;
  }
  .pl160_sp {
    padding-left: 160px !important;
  }
  .ml170_sp {
    margin-left: 170px !important;
  }
  .pl170_sp {
    padding-left: 170px !important;
  }
  .ml180_sp {
    margin-left: 180px !important;
  }
  .pl180_sp {
    padding-left: 180px !important;
  }
  .ml190_sp {
    margin-left: 190px !important;
  }
  .pl190_sp {
    padding-left: 190px !important;
  }
  .ml200_sp {
    margin-left: 200px !important;
  }
  .pl200_sp {
    padding-left: 200px !important;
  }
}

@media screen and (max-width: 768px) {
  .w-80 {
    margin-right: auto;
    margin-left: auto;
    width: 80% !important;
  }
}

@media screen and (max-width: 768px) {
  .w-60 {
    margin-right: auto;
    margin-left: auto;
    width: 60% !important;
  }
}

@media screen and (max-width: 768px) {
  .w-50 {
    margin-right: auto;
    margin-left: auto;
    width: 50% !important;
  }
}

.align_left {
  text-align: left !important;
}

.align_right {
  text-align: right !important;
}

.align_center {
  text-align: center !important;
}

@media screen and (max-width: 768px) {
  .align_left_sp {
    text-align: left !important;
  }
  .align_right_sp {
    text-align: right !important;
  }
  .align_center_sp {
    text-align: center !important;
  }
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.row img {
  width: 100%;
}

.gx-60 {
  --bs-gutter-x: 60px;
}

@media (min-width: 576px) {
  .gx-sm-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 768px) {
  .gx-md-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 992px) {
  .gx-lg-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 1200px) {
  .gx-xl-60 {
    --bs-gutter-x: 60px;
  }
}

@media (min-width: 1400px) {
  .gx-xxl-60 {
    --bs-gutter-x: 60px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex.fw_nw {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex.jc_sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex.jc_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex.jc_fe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex.ai_c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex.ai_fs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex.ai_fe {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex.fd_c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex.fd_rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex .col {
  -webkit-box-flex: inherit;
  -ms-flex: inherit;
  flex: inherit;
}

.flex .col.gridmain {
  max-width: calc(100% - 320px);
  width: 100%;
}

@media screen and (max-width: 1210px) {
  .flex .col.gridmain {
    max-width: calc(100% - 300px);
  }
}

@media screen and (max-width: 992px) {
  .flex .col.gridmain {
    max-width: 100%;
  }
}

.flex .col.gridside {
  max-width: 260px;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .flex .col.gridside {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .flex .col {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .flex.fw_w_sp {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex.jc_fs_sp {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex.jc_sb_sp {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex.jc_c_sp {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex.jc_fe_sp {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex.ai_c_sp {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex.ai_fs_sp {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex.ai_fe_sp {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex.fd_r_sp {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .flex.fd_c_sp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.cmn_table th.width-50 {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .cmn_table th.width-50 {
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table th.width-sp50.no_one_col_sp {
    width: 50%;
  }
}

@media screen and (max-width: 428px) {
  .cmn_table th.width-sp50.no_one_col_sp {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .cmn_table th.width-sp70.no_one_col_sp {
    width: 70%;
  }
}

@media screen and (max-width: 428px) {
  .cmn_table th.width-sp70.no_one_col_sp {
    width: 70%;
  }
}
.pagination .numbers  {
    cursor: pointer;
}
.gmapbody {
	height: 500px;
	width: 100%;
	border: 1px solid #EFEFEF;
	margin-bottom: 10px;
}
    #gmap {
        height: 100%;
        width: 100%;
    }