@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap);
@charset "UTF-8";
/**
* Base - サイトのベースになるcss
*/
/*
* Color
*/
:root {
  --primary-blue: #2A6FDB;
  --primary-green: #2E863D;
  --accent-color: #004D40;
  --text-color: #333333;
  --light-bg: #F4F8FA;
  --white: #ffffff;
  --font-base: "Noto Sans JP", sans-serif;
}

/*
* ダークモードに対応する場合は以下のメディアクエリを
*/
/*
* Font
*/
/*
* Font Size
*/
/* PC Tablet */
/* Mobile */
/*
* Media Query
*/
/*
* メディアクエリ
*/
/*
* ドロップシャドウ
*/
/*
* vwの計算
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "BIZ UDPGothic", Meiryo, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 1024px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  color: #333333;
  color: var(--text-color);
  line-height: 1.8;
  background-color: #ffffff;
  background-color: var(--white);
  font-feature-settings: "palt";
  font-size: 1.125rem;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6,
main p,
main li,
main a {
  line-height: 1.6;
}

a:hover {
  text-decoration: none;
}

address {
  font-style: normal;
}

strong {
  font-weight: bold;
}

input[type=radio] {
  margin: 0 7px 0 0;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
select:focus,
textarea {
  font-size: 16px;
}

p {
  color: var(--txt-primary);
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 92%;
}

.section {
  padding: 80px 0;
}

.bg-light {
  background-color: #F4F8FA;
  background-color: var(--light-bg);
}

.bg-blue {
  background: #2A6FDB;
  background: var(--primary-blue);
  color: white;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header.left-align {
  text-align: left;
  margin-bottom: 30px;
}

.section-en {
  display: block;
  font-size: 0.9rem;
  color: #2E863D;
  color: var(--primary-green);
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  font-weight: bold;
}

.section-jp {
  font-size: 2rem;
  color: #333333;
  color: var(--text-color, #333);
  font-weight: bold;
  line-height: 1.4;
}

.section-lead {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: white;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
  border-top: 4px solid #2A6FDB;
  border-top: 4px solid var(--primary-blue);
  border-bottom: 1px solid #f7f7f7;
  border-left: 1px solid #f7f7f7;
  border-right: 1px solid #f7f7f7;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2A6FDB;
  color: var(--primary-blue);
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.service-card p {
  color: #666;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .service-card {
    padding: 32px 24px;
  }
}

.card-number {
  position: absolute;
  top: -10px;
  right: -2px;
  font-size: 4rem;
  font-weight: bold;
  color: #e7e7e7;
  z-index: 0;
}

/* Pricing */
.price-table-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto 30px;
}
@media (max-width: 768px) {
  .price-table-wrapper {
    padding: 16px;
    overflow-x: auto;
  }
}

.price-table-title {
  font-weight: bold;
  border-bottom: 2px solid #2A6FDB;
  border-bottom: 2px solid var(--primary-blue);
  padding-bottom: 8px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th,
.price-table td {
  padding: 16px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
@media (max-width: 768px) {
  .price-table th,
.price-table td {
    padding: 8px;
  }
}
.price-table th {
  background-color: #f9f9f9;
  color: #2A6FDB;
  color: var(--primary-blue);
  font-weight: bold;
  width: 40%;
}
.price-table td:last-child {
  font-weight: bold;
  color: #333;
}

.price-note {
  text-align: right;
  padding-top: 16px;
  border-bottom: none;
  font-weight: normal !important;
}

.price-extra {
  text-align: center;
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #2A6FDB;
  border: 1px solid var(--primary-blue);
  color: #2A6FDB;
  color: var(--primary-blue);
  font-weight: bold;
}

.price-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: #666;
}

/* news */
.news-ul {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.news-ul li {
  margin-top: 8px;
}
.news-ul li:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .news-ul li {
    margin-top: 16px;
  }
}

.news-div {
  display: flex;
  gap: 0 40px;
}
.news-div p {
  width: 92px;
  flex-shrink: 0;
}
.news-div .date {
  color: #2A6FDB;
  color: var(--primary-blue);
}
@media (max-width: 768px) {
  .news-div {
    flex-direction: column;
  }
}

.news-btn {
  text-align: right !important;
  width: 100% !important;
  margin: 24px auto 0 !important;
  max-width: 800px !important;
}
.news-btn a {
  color: #2A6FDB;
  color: var(--primary-blue);
  text-decoration: underline;
}
.news-btn a:hover {
  text-decoration: none;
}
.news-btn a i {
  margin-right: 8px;
}

/* Representative & Company - Two columns */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 40px;
  }
}

.col {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
}

.profile-box {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .profile-box {
    padding: 16px;
  }
}
.profile-box h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: inline-block;
  padding-bottom: 5px;
  font-weight: bold;
}

.history-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}
.history-list li::before {
  content: "●";
  color: #2E863D;
  color: var(--primary-green);
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 0.6rem;
}

.company-outline-box {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .company-outline-box {
    padding: 16px;
  }
}

.outline-row {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}
.outline-row:last-child {
  padding-bottom: 0;
}
.outline-row:first-child {
  padding-top: 0;
}
@media (max-width: 768px) {
  .outline-row {
    flex-direction: column;
    padding: 12px 0;
  }
}

.outline-row:last-child {
  border-bottom: none;
}

.outline-row dt {
  width: 25%;
  font-weight: bold;
  color: #2A6FDB;
  color: var(--primary-blue);
  min-width: 120px;
}
@media (max-width: 768px) {
  .outline-row dt {
    width: 100%;
    margin-bottom: 8px;
    font-size: 0.9rem;
  }
}
.outline-row dd {
  width: 75%;
}
@media (max-width: 768px) {
  .outline-row dd {
    width: 100%;
  }
}

.access-map {
  width: 100%;
  height: 240px;
  border: 0;
}

/* Contact */
.contact-container {
  text-align: center;
}

.contact-title {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.contact-info {
  margin-top: 32px;
  display: inline-block;
}
.contact-info p {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
}
@media (max-width: 768px) {
  .contact-info p {
    font-size: 1.2rem;
  }
}
.contact-info .fax {
  font-size: 1.2rem;
  font-weight: normal;
}
.contact-info a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-info {
    padding: 20px;
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
@media (max-width: 375px) {
  .sp-only-375 {
    display: block;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1792px;
  margin: 0 auto;
  padding: 14px 0px;
  width: 94%;
}

.logo {
  font-size: 1.25rem;
  line-height: 1.2;
  color: #2A6FDB;
  color: var(--primary-blue);
  font-weight: bold;
}

.logo-sub {
  font-size: 0.875rem;
  color: #333;
  font-weight: normal;
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-list a {
  font-weight: 500;
}
.nav-list a:hover {
  color: #2A6FDB;
  color: var(--primary-blue);
}
@media (max-width: 1024px) {
  .nav-list {
    gap: 24px;
  }
}

.btn-nav {
  background-color: #2A6FDB;
  background-color: var(--primary-blue);
  color: white !important;
  padding: 12px 24px;
  border-radius: 50px;
}
.btn-nav:hover {
  background-color: #2E863D;
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

/* Hamburger (Mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  border: none;
  background: none;
}

@media (max-width: 768px) {
  .header-container {
    padding: 8px 0;
  }

  .hamburger {
    display: block;
    width: 30px;
    height: 25px;
    position: relative;
    z-index: 1001;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    transition: 0.3s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 11px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    bottom: 12px;
    transform: rotate(-45deg);
  }

  .nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: calc(100vh - 60px);
    background: white;
    transition: 0.3s;
    padding: 40px 24px 0;
  }
  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    display: block;
  }
  .nav-list li {
    border-bottom: 1px dashed #ccc;
    padding: 16px 0;
  }
  .nav-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .btn-nav {
    width: 100%;
    background-color: #2A6FDB;
    background-color: var(--primary-blue);
    color: white !important;
    padding: 12px 24px;
    border-radius: 0px;
    display: block;
    text-align: center;
  }
}
.footer {
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
}

/* Animations */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.breadcrumb {
  background-color: white;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  font-size: 0.8rem;
  color: #ccc;
}

.breadcrumb a:hover {
  color: #2A6FDB;
  /* var(--primary-blue) */
  text-decoration: underline;
}

.hero {
  height: 98vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)), -webkit-image-set(url("../images/hero.webp") type("image/webp") 1x);
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)), image-set(url("../images/hero.webp") type("image/webp") 1x);
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .hero {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)), -webkit-image-set(url("../images/hero_sp.webp") type("image/webp") 1x);
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)), image-set(url("../images/hero_sp.webp") type("image/webp") 1x);
  }
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  -webkit-animation: fadeIn 1.5s ease-out;
          animation: fadeIn 1.5s ease-out;
}

.hero-title {
  font-size: 2.8rem;
  color: #2A6FDB;
  color: var(--primary-blue);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.btn-primary {
  display: inline-block !important;
  background-color: #2E863D !important;
  background-color: var(--primary-green) !important;
  color: white !important;
  padding: 15px 40px !important;
  border-radius: 50px !important;
  font-weight: bold !important;
  font-size: 1.1rem !important;
  box-shadow: 0 4px 15px rgba(62, 179, 112, 0.3) !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}
.btn-primary:hover {
  background-color: #004D40;
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.sub-hero {
  background-color: #F4F8FA;
  padding: 116px 0 40px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.sub-hero-title {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 8px;
}

.sub-hero-en {
  color: #2A6FDB;
  /* var(--primary-blue) */
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .sub-hero {
    padding: 100px 0 40px;
  }

  .sub-hero-title {
    font-size: 1.5rem;
  }
}
/* =========================================
   お問い合わせフォーム (Contact Page)
   ========================================= */
.contact-lead {
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.8;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.form-row:first-child {
  border-top: 1px solid #eee;
}

/* ラベルエリア */
.form-label {
  width: 30%;
  padding-right: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  /* 入力欄と高さを合わせる微調整 */
}

.form-label label {
  font-weight: bold;
  color: #333;
}

/* 入力エリア */
.form-input {
  width: 70%;
}

.form-input input[type=text],
.form-input input[type=email],
.form-input input[type=tel],
.form-input textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fafafa;
  transition: 0.3s;
  font-family: inherit;
  /* Noto Sans JPを継承 */
}

.form-input input:focus,
.form-input textarea:focus {
  outline: none;
  border-color: #2A6FDB;
  /* var(--primary-blue) */
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(42, 111, 219, 0.1);
}

/* 必須・任意バッジ */
.badge-required {
  background-color: #E53935;
  /* 赤系 */
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: normal;
}

.badge-optional {
  background-color: #999;
  /* グレー */
  color: white;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: normal;
}

/* 送信ボタンエリア */
.form-submit {
  margin-top: 60px;
  text-align: center;
}

.btn-submit {
  border: none;
  cursor: pointer;
  min-width: 240px;
  font-size: 1.1rem;
}

/* レスポンシブ対応 (スマホ) */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    padding: 20px 0;
  }

  .form-label {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 0;
    padding-top: 0;
  }

  .form-input {
    width: 100%;
  }

  .contact-lead {
    text-align: left;
    font-size: 0.95rem;
  }
}
/*
* margin
*/
.hp {
  /* margin top */
  /* margin right */
  /* margin bottom */
  /* margin left */
}
.hp_mt0p {
  margin-top: 0px !important;
}
.hp_mt5p {
  margin-top: 5px !important;
}
.hp_mt8p {
  margin-top: 8px !important;
}
.hp_mt10p {
  margin-top: 10px !important;
}
.hp_mt15p {
  margin-top: 15px !important;
}
.hp_mt16p {
  margin-top: 16px !important;
}
.hp_mt20p {
  margin-top: 20px !important;
}
.hp_mt24p {
  margin-top: 24px !important;
}
.hp_mt25p {
  margin-top: 25px !important;
}
.hp_mt30p {
  margin-top: 30px !important;
}
.hp_mt32p {
  margin-top: 32px !important;
}
.hp_mt35p {
  margin-top: 35px !important;
}
.hp_mt40p {
  margin-top: 40px !important;
}
.hp_mt45p {
  margin-top: 45px !important;
}
.hp_mt48p {
  margin-top: 48px !important;
}
.hp_mt50p {
  margin-top: 50px !important;
}
.hp_mt55p {
  margin-top: 55px !important;
}
.hp_mt60p {
  margin-top: 60px !important;
}
.hp_mt65p {
  margin-top: 65px !important;
}
.hp_mt70p {
  margin-top: 70px !important;
}
.hp_mt75p {
  margin-top: 75px !important;
}
.hp_mt80p {
  margin-top: 80px !important;
}
.hp_mt85p {
  margin-top: 85px !important;
}
.hp_mt90p {
  margin-top: 90px !important;
}
.hp_mt95p {
  margin-top: 95px !important;
}
.hp_mt100p {
  margin-top: 100px !important;
}
.hp_mt130p {
  margin-top: 130px !important;
}
.hp_mt225p {
  margin-top: 225px !important;
}
.hp_mr0p {
  margin-right: 0px !important;
}
.hp_mr5p {
  margin-right: 5px !important;
}
.hp_mr8p {
  margin-right: 8px !important;
}
.hp_mr10p {
  margin-right: 10px !important;
}
.hp_mr15p {
  margin-right: 15px !important;
}
.hp_mr16p {
  margin-right: 16px !important;
}
.hp_mr20p {
  margin-right: 20px !important;
}
.hp_mr25p {
  margin-right: 25px !important;
}
.hp_mr30p {
  margin-right: 30px !important;
}
.hp_mr35p {
  margin-right: 35px !important;
}
.hp_mr40p {
  margin-right: 40px !important;
}
.hp_mr45p {
  margin-right: 45px !important;
}
.hp_mr50p {
  margin-right: 50px !important;
}
.hp_mr55p {
  margin-right: 55px !important;
}
.hp_mr60p {
  margin-right: 60px !important;
}
.hp_mr65p {
  margin-right: 65px !important;
}
.hp_mr70p {
  margin-right: 70px !important;
}
.hp_mb0p {
  margin-bottom: 0px !important;
}
.hp_mb5p {
  margin-bottom: 5px !important;
}
.hp_mb8p {
  margin-bottom: 8px !important;
}
.hp_mb10p {
  margin-bottom: 10px !important;
}
.hp_mb15p {
  margin-bottom: 15px !important;
}
.hp_mb16p {
  margin-bottom: 16px !important;
}
.hp_mb20p {
  margin-bottom: 20px !important;
}
.hp_mb24p {
  margin-bottom: 24px !important;
}
.hp_mb25p {
  margin-bottom: 25px !important;
}
.hp_mb30p {
  margin-bottom: 30px !important;
}
.hp_mb32p {
  margin-bottom: 32px !important;
}
.hp_mb35p {
  margin-bottom: 35px !important;
}
.hp_mb40p {
  margin-bottom: 40px !important;
}
.hp_mb45p {
  margin-bottom: 45px !important;
}
.hp_mb48p {
  margin-bottom: 48px !important;
}
.hp_mb50p {
  margin-bottom: 50px !important;
}
.hp_mb55p {
  margin-bottom: 55px !important;
}
.hp_mb56p {
  margin-bottom: 56px !important;
}
.hp_mb60p {
  margin-bottom: 60px !important;
}
.hp_mb65p {
  margin-bottom: 65px !important;
}
.hp_mb64p {
  margin-bottom: 64px !important;
}
.hp_mb70p {
  margin-bottom: 70px !important;
}
.hp_mb75p {
  margin-bottom: 75px !important;
}
.hp_mb80p {
  margin-bottom: 80px !important;
}
.hp_mb85p {
  margin-bottom: 85px !important;
}
.hp_mb90p {
  margin-bottom: 90px !important;
}
.hp_mb95p {
  margin-bottom: 95px !important;
}
.hp_mb100p {
  margin-bottom: 100px !important;
}
.hp_mb105p {
  margin-bottom: 105px !important;
}
.hp_ml0p {
  margin-left: 0px !important;
}
.hp_ml5p {
  margin-left: 5px !important;
}
.hp_ml8p {
  margin-left: 8px !important;
}
.hp_ml10p {
  margin-left: 10px !important;
}
.hp_ml15p {
  margin-left: 15px !important;
}
.hp_ml16p {
  margin-left: 16px !important;
}
.hp_ml20p {
  margin-left: 20px !important;
}
.hp_ml25p {
  margin-left: 25px !important;
}
.hp_ml30p {
  margin-left: 30px !important;
}
.hp_ml35p {
  margin-left: 35px !important;
}
.hp_ml40p {
  margin-left: 40px !important;
}
.hp_ml45p {
  margin-left: 45px !important;
}
.hp_ml50p {
  margin-left: 50px !important;
}
.hp_ml55p {
  margin-left: 55px !important;
}
.hp_ml60p {
  margin-left: 60px !important;
}
.hp_ml65p {
  margin-left: 65px !important;
}
.hp_ml70p {
  margin-left: 70px !important;
}

/*
* padding
*/
.hp {
  /* padding top */
  /* padding right */
  /* padding bottom */
  /* padding left */
}
.hp_pt0p {
  padding-top: 0px !important;
}
.hp_pt5p {
  padding-top: 5px !important;
}
.hp_pt10p {
  padding-top: 10px !important;
}
.hp_pt15p {
  padding-top: 15px !important;
}
.hp_pt20p {
  padding-top: 20px !important;
}
.hp_pt25p {
  padding-top: 25px !important;
}
.hp_pt30p {
  padding-top: 30px !important;
}
.hp_pt35p {
  padding-top: 35px !important;
}
.hp_pt40p {
  padding-top: 40px !important;
}
.hp_pt45p {
  padding-top: 45px !important;
}
.hp_pt50p {
  padding-top: 50px !important;
}
.hp_pt55p {
  padding-top: 55px !important;
}
.hp_pt60p {
  padding-top: 60px !important;
}
.hp_pt65p {
  padding-top: 65px !important;
}
.hp_pt70p {
  padding-top: 70px !important;
}
.hp_pt75p {
  padding-top: 75px !important;
}
.hp_pt95p {
  padding-top: 95px !important;
}
.hp_pt100p {
  padding-top: 100px !important;
}
.hp_pt105p {
  padding-top: 105px !important;
}
.hp_pt110p {
  padding-top: 110px !important;
}
.hp_pt115p {
  padding-top: 115px !important;
}
.hp_pt130p {
  padding-top: 130px !important;
}
.hp_pt225p {
  padding-top: 225px !important;
}
.hp_pr0p {
  padding-right: 0px !important;
}
.hp_pr5p {
  padding-right: 5px !important;
}
.hp_pr10p {
  padding-right: 10px !important;
}
.hp_pr15p {
  padding-right: 15px !important;
}
.hp_pr20p {
  padding-right: 20px !important;
}
.hp_pr25p {
  padding-right: 25px !important;
}
.hp_pr30p {
  padding-right: 30px !important;
}
.hp_pr35p {
  padding-right: 35px !important;
}
.hp_pr40p {
  padding-right: 40px !important;
}
.hp_pr45p {
  padding-right: 45px !important;
}
.hp_pr50p {
  padding-right: 50px !important;
}
.hp_pr55p {
  padding-right: 55px !important;
}
.hp_pr60p {
  padding-right: 60px !important;
}
.hp_pr65p {
  padding-right: 65px !important;
}
.hp_pr70p {
  padding-right: 70px !important;
}
.hp_pb0p {
  padding-bottom: 0px !important;
}
.hp_pb5p {
  padding-bottom: 5px !important;
}
.hp_pb10p {
  padding-bottom: 10px !important;
}
.hp_pb15p {
  padding-bottom: 15px !important;
}
.hp_pb20p {
  padding-bottom: 20px !important;
}
.hp_pb25p {
  padding-bottom: 25px !important;
}
.hp_pb30p {
  padding-bottom: 30px !important;
}
.hp_pb35p {
  padding-bottom: 35px !important;
}
.hp_pb40p {
  padding-bottom: 40px !important;
}
.hp_pb45p {
  padding-bottom: 45px !important;
}
.hp_pb50p {
  padding-bottom: 50px !important;
}
.hp_pb55p {
  padding-bottom: 55px !important;
}
.hp_pb60p {
  padding-bottom: 60px !important;
}
.hp_pb65p {
  padding-bottom: 65px !important;
}
.hp_pb70p {
  padding-bottom: 70px !important;
}
.hp_pb75p {
  padding-bottom: 75px !important;
}
.hp_pb105p {
  padding-bottom: 105px !important;
}
.hp_pb110p {
  padding-bottom: 110px !important;
}
.hp_pb115p {
  padding-bottom: 115px !important;
}
.hp_pb120p {
  padding-bottom: 120px !important;
}
.hp_pb125p {
  padding-bottom: 125px !important;
}
.hp_pb130p {
  padding-bottom: 130px !important;
}
.hp_pl0p {
  padding-left: 0px !important;
}
.hp_pl5p {
  padding-left: 5px !important;
}
.hp_pl10p {
  padding-left: 10px !important;
}
.hp_pl15p {
  padding-left: 15px !important;
}
.hp_pl20p {
  padding-left: 20px !important;
}
.hp_pl25p {
  padding-left: 25px !important;
}
.hp_pl30p {
  padding-left: 30px !important;
}
.hp_pl35p {
  padding-left: 35px !important;
}
.hp_pl40p {
  padding-left: 40px !important;
}
.hp_pl45p {
  padding-left: 45px !important;
}
.hp_pl50p {
  padding-left: 50px !important;
}
.hp_pl55p {
  padding-left: 55px !important;
}
.hp_pl60p {
  padding-left: 60px !important;
}
.hp_pl65p {
  padding-left: 65px !important;
}
.hp_pl70p {
  padding-left: 70px !important;
}

/*
* font
*/
.hp_fwBold {
  font-weight: bold !important;
}
.hp_fs80per {
  font-size: 0.8em !important;
}
.hp_fs120per {
  font-size: 1.2em !important;
}
.hp_fs140per {
  font-size: 1.4em !important;
}

.hp_txtCenter {
  text-align: center !important;
}
.hp_txtLeft {
  text-align: left !important;
}
.hp_txtRight {
  text-align: right !important;
}
.hp_txtJust {
  text-align: justify !important;
}
.hp_txtunder a:hover {
  text-decoration: underline;
}

/*
* color
*/
.hp_colorMain {
  color: var(--color-primary) !important;
}
.hp_colorDanger {
  color: var(--color-danger) !important;
}
.hp_colorBl {
  color: #2A6FDB !important;
  color: var(--primary-blue) !important;
}
.hp_colorRed {
  color: red !important;
}
