/* =============== BASE CSS ================= */
:root {
  font-size: 62.5%;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  display: inline-block;
}

th,
td {
  border: 1px solid #ddd;
  padding: 3px 5px;
}

th {
  text-align: center;
}

form,
table {
  color: #333;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  font-family: Meiryo, 'Segoe UI', 'Trebuchet MS', Gulim, Tahoma, AppleGothic, sans-serif;
  word-break: break-all;
  word-wrap: break-word;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
}

html {
  scroll-behavior: smooth;
}

/* utility class  */
.space-top {
  margin-top: 3rem !important;
}

.space-tb {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.inline-link {
  color: #ef2a5d;
  font-weight: 700;
}

.p-wrap > p {
  margin-bottom: 15px;
}

.p-wrap > p:last-child {
  margin-bottom: 0;
}

p > strong {
  display: block;
}

.box-wrap > * {
  margin-bottom: 15px;
}

.box-wrap > :last-child {
  margin-bottom: 0px;
}

.sc-bg {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#efefef), to(transparent));
  background-image: linear-gradient(to top, #efefef, transparent);
  border: 1px solid #ddd;
  background-color: #fbfbfa;
  padding: 15px;
}

.sc-bg2 {
  border: 1px solid #ddd;
  background-color: #fff;
  padding: 15px;
}

.text-highlight {
  color: #ef2a5d;
}

@media (max-width: 1199px) {
  :root {
    font-size: 9px;
  }
}

@media (max-width: 991px) {
  :root {
    font-size: 8px;
  }
}

.vertical-bar, .vb-right::after {
  background-color: #fff;
  display: inline-block;
  margin-bottom: -2px;
  margin-left: 5px;
  margin-right: 5px;
  height: 16px;
  width: 2px;
}

.vb-right {
  position: relative;
}

.vb-right::after {
  position: absolute;
  content: '';
  margin: 0;
  right: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333;
}

.sqr-symbol {
  position: relative;
  padding-left: 15px;
}

.sqr-symbol::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  background-color: #000;
  left: 0;
  top: 8px;
}

.top-bar-area {
  background-image: url("/assets/img/top-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5px 0;
}

.top-bar-area .top-bar-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991px) {
  .top-bar-area .top-bar-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    text-align: center;
  }
}

.top-bar-area .top-bar-wrap .top-right a {
  color: #fff;
}

.top-bar-area .top-bar-wrap .top-right a:hover {
  color: #ffff00;
}

.main-menu-area {
  background-color: #000;
}

.main-menu-wrap .menu-wrap {
  position: relative;
  /* Toggler X Design */
}

.main-menu-wrap .menu-wrap .menu-toggler {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 2px solid #fff;
  background-color: #000;
  display: block;
  margin-left: auto;
  cursor: pointer;
}

.main-menu-wrap .menu-wrap .menu-toggler:focus {
  outline-color: #fff;
}

.main-menu-wrap .menu-wrap .menu-toggler span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  margin-top: 5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.main-menu-wrap .menu-wrap .menu-toggler span:first-of-type {
  margin-top: 0;
}

.main-menu-wrap .menu-wrap .menu-toggler.on span:nth-child(2) {
  display: none;
}

.main-menu-wrap .menu-wrap .menu-toggler.on span:first-child {
  -webkit-transform: rotate(45deg) translate(2px, 50%);
          transform: rotate(45deg) translate(2px, 50%);
}

.main-menu-wrap .menu-wrap .menu-toggler.on span:last-child {
  -webkit-transform: rotate(-45deg) translate(4px, -100%);
          transform: rotate(-45deg) translate(4px, -100%);
}

.main-menu-wrap .menu-wrap .main-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.main-menu-wrap .menu-wrap .main-menu__item {
  position: relative;
}

.main-menu-wrap .menu-wrap .main-menu__item::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ddd;
}

.main-menu-wrap .menu-wrap .main-menu__item:first-of-type::before {
  display: none;
}

.main-menu-wrap .menu-wrap .main-menu__item a {
  padding: 1.2rem 1.8rem;
  color: #fff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 1399px) {
  .main-menu-wrap .menu-wrap .main-menu__item a {
    padding: 1rem 1.2rem;
  }
}

@media (max-width: 1199px) {
  .main-menu-wrap .menu-wrap .main-menu__item a {
    font-size: 1.4rem;
  }
}

.main-menu-wrap .menu-wrap .main-menu__item a:hover {
  color: #ffff00;
}

.main-menu-wrap .menu-wrap .main-menu__item.active a {
  color: #ffff00;
}

@media (max-width: 991px) {
  .main-menu-wrap .menu-wrap .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 300px;
    padding: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.16);
    /* display: none; */
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0;
    top: 130%;
    z-index: 100;
    background-color: #000;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}

.main-menu-wrap .menu-wrap .main-menu.res-menu {
  top: 100%;
  /* display: block; */
  visibility: visible;
  opacity: 1;
}

.main-menu-wrap .menu-wrap .main-menu.res-menu .main-menu__link {
  display: block;
  padding: 5px 11px;
}

.main-menu-wrap .menu-wrap .main-menu.res-menu .main-menu__link::before {
  display: none;
}

.main-menu-wrap .menu-wrap .main-menu.res-menu .main-menu__link::after {
  background-color: #ddd;
  width: 100%;
  top: 100%;
}

.hero-area {
  background: #ddd url("/assets/img/hero-bg.jpg");
  background-position: center;
  background-size: cover;
  height: 275px;
}

@media (max-width: 1399px) {
  .hero-area {
    background-position: center;
  }
}

.hero-area .hero-wrap {
  height: 275px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 991px) {
  .hero-area .hero-wrap {
    -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;
  }
}

.hero-area .hero-wrap__left {
  -webkit-box-flex: 2.6;
      -ms-flex: 2.6;
          flex: 2.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__left {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 1399px) {
  .hero-area .hero-wrap__left {
    -webkit-box-flex: 2.5;
        -ms-flex: 2.5;
            flex: 2.5;
  }
}

@media (max-width: 1199px) {
  .hero-area .hero-wrap__left {
    -webkit-box-flex: 2.2;
        -ms-flex: 2.2;
            flex: 2.2;
  }
}

.hero-area .hero-wrap__left h2 {
  margin-bottom: 2.8rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#37161f), color-stop(#37161f), color-stop(#37161f), to(transparent));
  background-image: linear-gradient(to right, #37161f, #37161f, #37161f, transparent);
  padding: 14px 30px;
  font-size: 5rem;
  font-weight: 300;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 5px;
}

@media (max-width: 1399px) {
  .hero-area .hero-wrap__left h2 {
    font-size: 3.2rem;
    margin-bottom: 4.2rem;
    padding: 20px 5px;
  }
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__left h2 {
    margin-bottom: 2px;
    padding: 5px;
    font-size: 25px;
    font-weight: 600;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-wrap__left h2 {
    font-size: 18px;
  }
}

.hero-area .hero-wrap__left h2 > span {
  font-size: 2rem;
  background-color: #171515c4;
  padding: 5px 8px;
  border-radius: 8px;
  margin-left: 12px;
}

@media (max-width: 1199px) {
  .hero-area .hero-wrap__left h2 > span {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-wrap__left h2 > span {
    font-size: 1.5rem;
  }
}

.hero-area .hero-wrap__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
  padding: 15px 0;
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__right {
    width: 100%;
    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;
    padding: 0 5px;
    margin-top: 10px;
  }
}

@media (max-width: 1399px) {
  .hero-area .hero-wrap__right .hero-mark-img {
    height: 50px;
  }
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__right .hero-mark-img-lg {
    height: 100px;
  }
}

.hero-area .hero-wrap__right .num-msg-wrap {
  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;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__right .num-msg-wrap {
    width: 45%;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-wrap__right .num-msg-wrap {
    width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-area .hero-wrap__right .num-msg-wrap {
    width: 70%;
  }
}

@media (max-width: 400px) {
  .hero-area .hero-wrap__right .num-msg-wrap {
    width: 100%;
  }
}

.hero-area .hero-wrap__right .arrow-symbol-lg {
  background-color: #2a2b2f;
  color: #fff;
  text-align: center;
  width: 80px;
  position: relative;
  border-radius: 3px;
  border: 1px solid #56617d;
}

.hero-area .hero-wrap__right .arrow-symbol-lg::after {
  position: absolute;
  content: '';
  border-left: 18px solid #2a2b2f;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  top: -8px;
  right: -15px;
  border-radius: 3px;
}

@media (max-width: 1199px) {
  .hero-area .hero-wrap__right .arrow-symbol-lg::after {
    top: -10px;
  }
}

.hero-area .hero-wrap__right .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__right .num {
    background-color: #000000c2;
    padding: 0px 4px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 5px;
  }
}

.hero-area .hero-wrap__right .num span {
  font-size: 30px;
  font-weight: 700;
  margin-left: 5px;
  color: #fff;
}

@media (max-width: 1399px) {
  .hero-area .hero-wrap__right .num span {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .hero-area .hero-wrap__right .num span {
    font-size: 18px;
  }
}

.hero-area .hero-wrap__right .msg-btn {
  padding: 5px 20px;
  font-weight: bold;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#676767), color-stop(#000), to(#676767));
  background-image: linear-gradient(to bottom, #676767, #000, #676767);
  border: 2px solid #000;
  color: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hero-area .hero-wrap__right .msg-btn:hover {
  color: #ffff00;
}

@media (max-width: 575px) {
  .hero-area .hero-wrap__right .msg-btn {
    padding: 5px;
  }
}

.hero-area .hero-wrap__right .time {
  font-weight: bold;
  color: #fff;
}

@media (max-width: 991px) {
  .hero-area .hero-wrap__right .time {
    margin-top: 15px;
    background-color: #000000c2;
    padding: 1px 4px;
    border-radius: 8px;
  }
}

.hero-area .hero-wrap__right .search-input {
  margin-top: 10px;
}

.hero-area .hero-wrap__right .search-input table,
.hero-area .hero-wrap__right .search-input tbody,
.hero-area .hero-wrap__right .search-input tr,
.hero-area .hero-wrap__right .search-input td {
  border: none;
}

@media (max-width: 1399px) {
  .hero-area .hero-wrap__right .search-input input {
    width: 149px;
  }
}

.hero-area-sm {
  background: #ddd url("/assets/img/hero-bg-2.jpg");
  background-position: center;
  background-size: cover;
}

.hero-area-sm,
.hero-area .hero-wrap-sm {
  height: 200px;
}

.breadcrumb-area {
  background-image: url("/assets/img/breadcrumb-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 5px 0;
}

.breadcrumb-area .breadcrumb-wrap {
  margin-left: 240px;
}

@media (max-width: 991px) {
  .breadcrumb-area .breadcrumb-wrap {
    margin-left: 0;
  }
}

.breadcrumb-area .breadcrumb-wrap li {
  display: inline-block;
}

.breadcrumb-area .breadcrumb-wrap a {
  color: #333;
  font-weight: 700;
}

.breadcrumb-area .breadcrumb-wrap a:hover {
  color: #ef2a5d;
}

.breadcrumb-area .breadcrumb-wrap a span {
  margin-left: 8px;
}

.main-service-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .main-service-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.main-service-wrap .left-part {
  width: 210px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("/assets/img/pattern-left.png");
  background-size: contain;
  background-repeat: repeat-y;
  -webkit-box-shadow: -2px 0px 4px black;
          box-shadow: -2px 0px 4px black;
}

.main-service-wrap .left-part__second {
  background-color: #fff;
}

@media (max-width: 991px) {
  .main-service-wrap .left-part__second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 1px;
    border: 1px solid #43928c;
    border-radius: 5px;
    margin-bottom: 0;
  }
}

.main-service-wrap .left-part__second li {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#efefef), to(transparent));
  background-image: linear-gradient(to top, #efefef, transparent);
}

@media (max-width: 991px) {
  .main-service-wrap .left-part__second li {
    margin: 5px;
    border-radius: 5px;
  }
}

.main-service-wrap .left-part__second li a {
  padding: 3px 5px;
  color: #333;
  display: block;
}

.main-service-wrap .left-part__second li a:hover {
  color: #ef2a5d;
}

.main-service-wrap .left-part > * {
  margin-bottom: 2rem;
}

.main-service-wrap .left-part .li-img {
  margin-top: 10px;
  text-align: center;
}

.main-service-wrap .left-part .left-menu-title {
  padding: 5px;
  background-image: -webkit-gradient(linear, left top, right top, from(#8c7b74), to(#452623));
  background-image: linear-gradient(to right, #8c7b74, #452623);
  border: 2px solid #4b2d2d;
  border-radius: 2px;
  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;
  margin-bottom: 15px;
}

.main-service-wrap .left-part .left-menu-title a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-service-wrap .left-part .left-menu-title a img {
  margin-right: 8px;
}

@media (max-width: 991px) {
  .main-service-wrap .left-part .left-menu-title {
    margin-bottom: 0;
    margin-top: 15px;
  }
}

.main-service-wrap .left-part .left-menu__item {
  border-bottom: 1px solid #c7c7c7;
  background-image: -webkit-gradient(linear, left top, right top, from(#f6f6f6), to(#c7c7c7));
  background-image: linear-gradient(to right, #f6f6f6, #c7c7c7);
}

.main-service-wrap .left-part .left-menu__item:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#c7c7c7), to(#909090));
  background-image: linear-gradient(to right, #c7c7c7, #909090);
  border-left: 3px solid #fff !important;
}

.main-service-wrap .left-part .left-menu__item:nth-child(odd) {
  border-left: 3px solid #2a2a5c;
}

.main-service-wrap .left-part .left-menu__item:nth-child(even) {
  border-left: 3px solid #43928c;
}

.main-service-wrap .left-part .left-menu__item a {
  display: block;
  padding: 3px 5px;
  color: #333;
}

@media (max-width: 991px) {
  .main-service-wrap .left-part {
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: no-repeat;
  }
  .main-service-wrap .left-part .left-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-service-wrap .left-part .left-menu__item {
    width: 50%;
  }
  .main-service-wrap .left-part .left-menu__item:nth-child(odd) {
    border-left: 3px solid #43928c;
  }
}

.main-service-wrap .body-part {
  margin-left: 3rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 991px) {
  .main-service-wrap .body-part {
    margin-left: 0;
  }
}

.main-service-wrap .body-part .top-sec-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 400px) {
  .main-service-wrap .body-part .top-sec-title {
    font-size: 1.5rem;
  }
}

.main-service-wrap .body-part .top-sec-title span {
  background-image: linear-gradient(45deg, #6d6d6d, #bcbcbc);
  color: #fff;
  border-radius: 0px 15px 15px 0;
  padding: 2px 15px;
  display: inline-block;
  position: relative;
  margin-left: 2px;
  margin-left: -5px;
}

.main-service-wrap .body-part .top-sec-title img {
  height: 3.6rem;
  border: 5px solid #fff;
  border-radius: 50%;
  margin-right: -5px;
  position: relative;
  z-index: 5;
}

.main-service-wrap .body-part .service-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  gap: 15px;
}

@media (max-width: 767px) {
  .main-service-wrap .body-part .service-wrap {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 400px) {
  .main-service-wrap .body-part .service-wrap {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}

.main-service-wrap .body-part .service {
  border: 5px solid #9b797a;
  border-radius: 8px;
  position: relative;
  text-align: center;
}

.main-service-wrap .body-part .service__title {
  padding: 8px;
  background-color: #5f3537;
  color: #fff;
  font-weight: 700;
  border-radius: 4px 4px 0px 0px;
  position: relative;
}

@media (max-width: 1199px) {
  .main-service-wrap .body-part .service__title {
    font-size: 1.5rem;
  }
}

.main-service-wrap .body-part .service__title::after {
  position: absolute;
  content: '';
  background-image: url("/assets/img/title-bottom-bg.jpg");
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
}

.main-service-wrap .body-part .service__desc {
  margin-bottom: 50px;
  padding: 8px;
}

.main-service-wrap .body-part .service__desc b {
  color: #37161f;
}

.main-service-wrap .body-part .service::before {
  position: absolute;
  content: '';
  width: calc(100% + 13px);
  height: calc(100% + 13px);
  border: 2px solid #653739;
  left: -6px;
  top: -6px;
  border-radius: 9px;
}

.main-service-wrap .body-part .service.bg01 {
  background-image: url("/assets/img/services/01-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-size: contain;
}

.main-service-wrap .body-part .service.bg02 {
  background-image: url("/assets/img/services/02-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-size: contain;
}

.main-service-wrap .body-part .service.bg03 {
  background-image: url("/assets/img/services/03-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-size: contain;
}

.main-service-wrap .body-part .language-color a {
  color: #000;
  padding: 0 3px;
}

.main-service-wrap .body-part .language-color a:hover {
  color: #676767;
}

.circle-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.circle-flow div {
  text-align: center;
  position: relative;
}

.circle-flow-circle {
  height: 12rem;
  width: 12rem;
  padding: 30px 5px 5px 5px;
  background-color: #fdf69b;
  border: 5px solid #f8cd05;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.circle-flow-arrow img {
  margin-top: 40px;
  padding: 0 12px;
}

.circle-flow-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.circle-flow-img_bg {
  height: 12rem;
  width: 12rem;
  padding: 30px 5px 5px 5px;
  background-image: url(/assets/img/flow-circle-bg.png);
  border: 5px solid #f8cd05;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.circle-flow-img_title {
  height: 7rem;
  width: 7rem;
  padding: 15px 5px 5px 5px;
  background-color: #fbcc02;
  margin-left: -20px;
  margin-top: -9px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.circle-flow-text {
  width: 12rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.section-navigation {
  text-align: right;
  margin-top: 8px;
}

.section-navigation ul li {
  display: inline-block;
}

.section-navigation ul li a {
  border: 1px solid #ddd;
  padding: 3px 5px;
  border-radius: 8px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#efefef), to(transparent));
  background-image: linear-gradient(to top, #efefef, transparent);
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section-navigation ul li a img {
  margin-right: 8px;
}

.section-navigation ul li a:hover {
  color: #ef2a5d;
}

.achievement-list li {
  position: relative;
  padding-left: 10px;
  margin-top: 10px;
}

.achievement-list li img {
  margin-right: 10px;
  margin-top: -3px;
}

.footer-menu {
  background-color: #5d5d5d;
  background-image: none;
  color: #fff;
}

.footer-menu a {
  color: #fff;
}

.footer-menu a:hover {
  color: #ffff00;
}

.footer-area {
  background-color: #333;
  color: #fff;
  padding: 15px 0;
}

.footer-area div p a {
  color: #fff;
}

.footer-area div p a:hover {
  color: #ddd;
}

.inner-menu {
  text-align: center;
  margin-top: -8px;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  padding: 8px;
}

.inner-menu a {
  margin: 8px;
  color: #333;
}

.inner-menu a:hover {
  color: #ef2a5d;
}

.content-title {
  padding: 5px 5px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #ab404f), color-stop(50%, #ab404f));
  background-image: linear-gradient(to bottom, #ab404f 50%, #ab404f 50%);
  color: #fff;
  display: inline-block;
  min-width: 500px;
}

@media (max-width: 767px) {
  .content-title {
    min-width: 100%;
  }
}

.content-section {
  border: 1px solid #990033;
  padding: 8px;
  border-radius: 0px 3px 3px 0px;
}

.content-section ol {
  margin-left: 15px;
}

.delivery-flow ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px dashed #333;
  padding-bottom: 5px;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}

.delivery-flow ul li::before, .delivery-flow ul li::after {
  position: absolute;
  content: '';
  z-index: -1;
}

.delivery-flow ul li::before {
  top: 0;
  left: 6px;
  width: 8px;
  height: 90%;
  height: calc(100% - 8px);
  background-color: #e4d09f;
}

.delivery-flow ul li::after {
  border-top: 8px solid #e4d09f;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  bottom: 0;
  left: 2px;
}

.delivery-flow ul li span {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #8fb8e8;
  background-image: radial-gradient(circle, #a3cffe, #8fb8e8);
  border-radius: 50%;
  text-align: center;
  line-height: 1.22;
  color: #fff;
  margin-right: 5px;
}

.desc-wrap {
  padding: 15px;
  background-color: #e9f0fe;
  border-radius: 5px;
}

.desc-wrap > strong {
  margin-bottom: 15px;
  display: block;
}

.reg-buttons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.reg-buttons-wrap .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.reg-buttons-wrap .item > a {
  background-color: #3333cc;
  border-radius: 5px;
  padding: 3px 10px;
  color: #fff;
  font-weight: 700;
  -webkit-box-shadow: 2px 2px 5px black;
          box-shadow: 2px 2px 5px black;
  margin-bottom: 8px;
}

.reg-buttons-wrap .item:last-child > a {
  background-color: #fff;
  color: #3333cc;
}

.qa-wrap > .qa-title {
  font-weight: 700;
  margin-bottom: 15px;
}

.qa-wrap .inner-menu {
  text-align: left;
}

.qa-wrap .inner-menu li a {
  margin: 0;
}

.iframe-height {
  width: 100%;
  height: 1270px;
}

@media (max-width: 575px) {
  .iframe-height {
    height: 1450px;
  }
}

@media (max-width: 400px) {
  .iframe-height {
    height: 1550px;
  }
}

.content-section-wrap--second {
  border: 1px solid #333;
  border-radius: 0px 0px 5px 5px;
  overflow: hidden;
}

.content-section-wrap--second .content-section {
  border: none;
}

.content-section-wrap--second .content-title {
  background-image: linear-gradient(45deg, #e2e2e2, transparent);
  width: 100%;
  color: #333;
  font-weight: 700;
  border-bottom: 1px solid #333;
}

.content-section-wrap--second .content-title > img {
  height: 100%;
  background-color: #cacaca;
  padding: 12px;
  margin: -5px;
  margin-right: 5px;
}

.content-section-wrap--second .section-navigation {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(10%, #e2e2e2), color-stop(35%, transparent));
  background-image: linear-gradient(to left, #e2e2e2 10%, transparent 35%);
  border-top: 1px solid #333;
}

.content-section-wrap--second .section-navigation ul li a {
  position: relative;
}

.content-section-wrap--second .section-navigation ul li a::before {
  content: '';
  position: absolute;
  right: 200px;
  top: -2px;
  height: 100%;
  height: calc(100% + 4px);
  background-color: #333;
  width: 1px;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
}

.price-table {
  table-layout: fixed;
  text-align: center;
  width: 100%;
}

.th-wrap {
  background-image: url("/assets/img/th-bg.png");
}

.content-section-wrap2 {
  padding: 3rem;
  border: 3px solid #ddd;
  border-radius: 5px;
}

.content-section-wrap2 .o-list {
  margin-left: 15px;
}

.content-section-wrap2 .o-list li {
  margin-bottom: 15px;
}

.content-section-wrap2 .o-list li:last-child {
  margin-bottom: 0;
}

.content-section-wrap2 .o-list--mb0 li {
  margin-bottom: 0;
}

.inner-content {
  margin-bottom: 15px;
}

.inner-content h3 img {
  height: 15px;
}

.inner-content-icon {
  margin-bottom: 15px;
}

.inner-content-icon h3 {
  position: relative;
  padding-left: 2rem;
}

.inner-content-icon h3::before, .inner-content-icon h3::after {
  position: absolute;
  content: '';
  left: 0px;
  top: 5px;
  width: 1rem;
  height: 1rem;
  background-color: #5b88b5;
  z-index: 1;
  border: 1px solid #333;
}

.inner-content-icon h3::after {
  left: 2px;
  top: 7px;
  background-color: transparent;
  z-index: 0;
}

.thankyou-wrap {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.thankyou-wrap .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mitumori-banner {
  text-align: center;
}

.tbl-form-wrap {
  overflow-x: auto;
}

.tbl-form-wrap form {
  display: block;
  width: 700px;
  margin: 0 auto;
}

.tbl-form-wrap form table {
  width: 100%;
}

.tbl-form-wrap form table tr td:first-child {
  background-image: url("/assets/img/th-bg.png");
}

.tbl-form-wrap form table tr:last-child td {
  background-image: none;
}

.tbl-form-wrap form table input {
  margin-right: 5px;
}

.with-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  gap: 30px;
}

@media (max-width: 991px) {
  .with-img {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}

@media (max-width: 991px) {
  .with-img > img {
    margin: 0 auto;
  }
}

.with-img .item02 {
  min-width: 300px;
}

@media (max-width: 991px) {
  .with-img .item02 {
    min-width: auto;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.profile-tbl {
  width: 750px;
  table-layout: fixed;
}

.profile-tbl tr.col-img > td:nth-child(1) {
  width: 100px;
  text-align: center;
}

.profile-tbl tr > td:nth-child(1),
.profile-tbl tr.col-img > td:nth-child(2) {
  width: 130px;
  text-align: right;
}
/*# sourceMappingURL=style.css.map */