@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 {
  --txt-primary: #333;
  --color-white: #fff;
  --color-navy: #005493;
  --color-blue: #BAEAFF;
  --color-yellow: #FABF00;
  --color-main: #C60009;
  --color-sub: #C94F2A;
  --bg-gray: #F3F3F3;
  --border-gray: #c7cbce;
  --color-danger: #DB0000;
}

/*
* ダークモードに対応する場合は以下のメディアクエリを
*/
/*
* Font
*/
/*
* Font Size
*/
/* PC Tablet */
/* Mobile */
/*
* Media Query
*/
/*
* メディアクエリ
*/
/*
* ドロップシャドウ
*/
/*
* vwの計算
*/
html {
  font-size: 62.5%;
}

* {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "BIZ UDPGothic", Meiryo, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
  color: var(--txt-primary);
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

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: #333;
  color: var(--txt-primary);
}

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

.bl_main_breadcrumb {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 0 0;
}

.bl_main_bre_ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bl_main_bre_ol li {
  display: inline;
  list-style: none;
  font-size: 1.4rem;
}

.bl_main_bre_ol li::after {
  font-family: "Font Awesome 6 Pro";
  content: "";
  padding: 0 8px;
  color: silver;
}

.bl_main_bre_ol li:last-child::after {
  content: "";
}

.bl_main_bre_ol li a {
  text-decoration: underline;
  color: #707070;
}

.bl_main_bre_ol li a:hover {
  text-decoration: none;
}

.bl_main_bre_ol li .bl_main_bre_span {
  color: #707070;
}

.bl_main_flex {
  display: flex;
  justify-content: space-between;
  gap: 64px 40px;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .bl_main_flex {
    flex-direction: column;
  }
}

.bl_main_contents {
  width: 100%;
}

.bl_main_sidebar {
  width: 100%;
  max-width: 250px;
  border: 1px solid #ccc;
  flex-shrink: 0;
}

@media screen and (max-width: 500px) {
  .bl_main_sidebar {
    max-width: 100%;
  }
}

.bl_main_side_ul li {
  border-top: 1px solid #ccc;
}

.bl_main_side_ul li:first-child {
  border-top: 5px solid #C60009;
  border-top: 5px solid var(--color-main);
}

.bl_main_side_ul li a {
  padding: 16px;
  display: block;
  position: relative;
  color: inherit;
}

.bl_main_side_ul li a::after {
  font-family: "Font Awesome 6 Pro";
  content: "";
  color: #C60009;
  color: var(--color-main);
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.bl_main_side_ul li a[aria-current=page] {
  background: #C94F2A;
  background: var(--color-sub);
  color: #fff;
}

.bl_main_side_ul li a[aria-current=page]::after {
  color: #fff;
}

header {
  background-color: #fff;
  padding: 8px 0 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  z-index: 99;
}

@media (max-width: 1200px) {
  header {
    padding: 0;
  }
}

.bl_header_pc {
  width: 96%;
  max-width: 1792px;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 1200px) {
  .bl_header_pc {
    display: none;
  }
}

.bl_hea_bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.bl_hea_box {
  display: flex;
  gap: 40px;
  align-items: center;
}

.bl_hea_util ul {
  display: flex;
  gap: 40px;
}

.bl_hea_util ul li {
  font-size: 1.6rem;
}

.bl_hea_util ul li i {
  margin-right: 8px;
  font-size: 1.4rem;
}

.bl_hea_cta .btn_contact {
  background-color: #C94F2A;
  background-color: var(--color-sub);
  border: 2px solid #C94F2A;
  border: 2px solid var(--color-sub);
  transition: all ease 0.3s;
}

.bl_hea_cta .btn_contact:hover {
  background-color: #fff;
  color: #C94F2A;
  color: var(--color-sub);
}

.bl_hea_cta .btn_login {
  background-color: #fff;
  border: 2px solid #C60009;
  border: 2px solid var(--color-main);
  color: #C60009;
  color: var(--color-main);
  transition: all ease 0.3s;
}

.bl_hea_cta .btn_login:hover {
  background-color: #C60009;
  background-color: var(--color-main);
  color: #fff;
}

.bl_hea_global {
  position: relative;
}

.bl_hea_global ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.bl_hea_global ul .bl_hea_dro_menu,
.bl_hea_global ul .bl_hea_dro_no {
  position: relative;
  display: inline-block;
  width: 20%;
}

.bl_hea_global ul .bl_hea_dro_menu .bl_hea_dro_a,
.bl_hea_global ul .bl_hea_dro_no .bl_hea_dro_a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 8px 24px;
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 1200px) / (1440 - 1200))), 18px);
  transition: all 0.3s ease;
  outline: none;
}

.bl_hea_global ul .bl_hea_dro_menu .bl_hea_dro_a:hover,
.bl_hea_global ul .bl_hea_dro_menu .bl_hea_dro_a:focus,
.bl_hea_global ul .bl_hea_dro_no .bl_hea_dro_a:hover,
.bl_hea_global ul .bl_hea_dro_no .bl_hea_dro_a:focus {
  color: #C60009;
  color: var(--color-main);
}

.bl_hea_global ul .bl_hea_dro_menu::after,
.bl_hea_global ul .bl_hea_dro_no::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  background-color: #ccc;
  position: absolute;
  top: 0px;
  right: 0;
}

.bl_hea_global ul .bl_hea_dro_menu:first-child::before,
.bl_hea_global ul .bl_hea_dro_no:first-child::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 42px;
  background-color: #ccc;
  position: absolute;
  top: 0;
  left: 0;
}

.bl_hea_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.bl_hea_dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bl_hea_dropdown ul {
  display: block;
}

.bl_hea_dropdown ul li {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.bl_hea_dropdown ul li:last-child {
  border-bottom: none;
}

.bl_hea_dropdown ul li a {
  display: block;
  padding: 16px 24px;
  font-size: clamp(14px, calc(14px + (16 - 14) * ((100vw - 1200px) / (1440 - 1200))), 16px);
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.bl_hea_dropdown ul li a::after {
  font-family: "Font Awesome 6 Pro";
  content: "";
  color: #C60009;
  color: var(--color-main);
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.bl_hea_dropdown ul li a:hover,
.bl_hea_dropdown ul li a:focus {
  background-color: #f5f5f5;
  color: #C60009;
  color: var(--color-main);
}

/*スマホ*/
.bl_header_sp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .bl_header_sp {
    position: relative;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 16px;
    background: #ffffff;
  }
}

.bl_header_sp.is-open::after {
  opacity: 1;
  pointer-events: auto;
}

.bl_header_sp.is-open .bl_hea_bar_sp {
  transform: translateX(0);
  box-shadow: -12px 0 24px rgba(0, 0, 0, 0.18);
}

.bl_header_sp.is-open .bl_header_sp_btn {
  position: fixed;
  top: 10px;
  right: 16px;
  z-index: 999;
}

.bl_header_sp.is-open .bl_header_hamburger span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.bl_header_sp.is-open .bl_header_hamburger span:nth-child(2) {
  opacity: 0;
}

.bl_header_sp.is-open .bl_header_hamburger span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.bl_header_sp::after {
  content: "";
  position: fixed;
  z-index: 99;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.bl_header_sp:not(.is-open) .bl_header_sp_btn {
  position: static;
  z-index: auto;
}

@media (max-width: 1200px) {
  .bl_hea_logo {
    margin: 0;
    line-height: 0;
  }

  .bl_hea_logo img {
    display: block;
    height: 56px;
    width: auto;
  }

  .btn_contact {
    background: #C60009;
    background: var(--color-main);
    color: #fff;
  }

  .btn_login {
    background: #fff;
    color: #C60009 !important;
    color: var(--color-main) !important;
    border: 2px solid #C60009;
    border: 2px solid var(--color-main);
  }
}

.bl_header_sp_btn {
  position: static;
}

.bl_header_hamburger {
  position: relative;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  outline: none;
}

.bl_header_hamburger span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #111;
  display: block;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}

.bl_header_hamburger span:nth-child(1) {
  top: 14px;
}

.bl_header_hamburger span:nth-child(2) {
  top: 21px;
}

.bl_header_hamburger span:nth-child(3) {
  top: 28px;
}

.bl_hea_bar_sp {
  position: fixed;
  z-index: 990;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: none;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 24px 40px;
}

.bl_hea_global_sp ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bl_hea_global_sp ul li {
  border-bottom: 1px solid #e5e8ee;
}

.bl_hea_global_sp ul li:last-child {
  border-bottom: none;
}

.bl_hea_global_sp ul li a {
  display: block;
  text-decoration: none;
  padding: 8px;
}

.bl_hea_util_sp {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  border-top: 1px solid #e5e8ee;
}

.bl_hea_util_sp li {
  border-bottom: 1px solid #e5e8ee;
}

.bl_hea_util_sp li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 12px 8px;
}

@media screen and (max-width: 1200px) {
  .bl_hea_util_sp li a i {
    display: none;
  }
}

.bl_hea_cta_sp {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.sp-accordion {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px;
  background: #fff;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.sp-accordion i {
  transition: transform 0.3s ease;
}

.sp-accordion[aria-expanded=true] i {
  transform: rotate(180deg);
}

.sp-sub {
  padding: 0 0 8px;
  margin: 0;
  list-style: none;
}

.sp-sub li {
  border-bottom: none !important;
}

.sp-sub li a {
  display: block;
  padding: 8px 24px !important;
}

/* メニューオープン時のスクロール固定（bodyに付与） */
body.menu-open {
  overflow: hidden;
  touch-action: none;
}

footer {
  background-color: #C60009;
  background-color: var(--color-main);
  padding: 16px 0 8px;
}

footer .footer_box {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 16px;
}

footer .address {
  text-align: left;
  color: #fff;
  font-size: 1.4rem;
}

footer .address span {
  font-size: 2rem;
}

footer .copyright {
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  border-top: 1px solid #fff;
  padding-top: 8px;
}

.bl_cover_box {
  position: relative;
}

.bl_cover {
  background-image: url(../images/cover.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 612px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 200px;
  position: relative;
  text-align: center;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .bl_cover {
    height: 480px;
    padding-top: 0;
    justify-content: center;
  }
}

.bl_cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.29);
}

.bl_cover h1 {
  font-size: 8rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 7px #333;
}

@media screen and (max-width: 1200px) {
  .bl_cover h1 {
    font-size: 6.4rem;
  }
}

@media screen and (max-width: 500px) {
  .bl_cover h1 {
    font-size: 4rem;
  }
}

.bl_cover p {
  font-size: 4rem;
  color: #fff;
  text-shadow: 0 2px 7px #333;
}

@media screen and (max-width: 1200px) {
  .bl_cover p {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 500px) {
  .bl_cover p {
    font-size: 2.4rem;
  }
}

.bl_cover>* {
  position: relative;
  margin: 0;
}

.bl_cover_banner {
  position: absolute;
  bottom: -80px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 72px;
  width: 100%;
  max-width: 1556px;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 1200px) {
  .bl_cover_banner {
    bottom: -40px;
    padding: 24px;
  }
}

@media screen and (max-width: 768px) {
  .bl_cover_banner {
    position: static;
  }
}

@media screen and (max-width: 500px) {
  .bl_cover_banner {
    padding: 24px 8px;
  }
}

.bl_cover_ban_flex {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

@media screen and (max-width: 768px) {
  .bl_cover_ban_flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.bl_cover_ban_flex li a img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .bl_cover_ban_flex li {
    width: 31%;
  }
}

@media screen and (max-width: 500px) {
  .bl_cover_ban_flex li {
    width: 47%;
  }
}

.bl_cover_low {
  background-image: url(../images/cover.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.bl_cover_low::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.29);
}

.bl_cover_low h2 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 7px #333;
}

@media screen and (max-width: 500px) {
  .bl_cover_low h2 {
    font-size: 2.4rem;
  }
}

.bl_cover_low>* {
  position: relative;
  margin: 0;
}

.bl_top_news_flex {
  display: flex;
  gap: 40px 120px;
}

@media screen and (max-width: 768px) {
  .bl_top_news_flex {
    flex-direction: column;
  }
}

.bl_top_news_box {
  flex-shrink: 0;
}

.bl_top_news_ttl {
  font-size: 3.2rem;
  font-weight: bold;
}

.bl_top_news_btn {
  color: #fff;
  margin-top: 40px;
}

.bl_top_news_btn a {
  padding: 8px 40px;
  background-color: #C60009;
  background-color: var(--color-main);
  border: 1px solid #C60009;
  border: 1px solid var(--color-main);
  transition: all ease 0.3s;
}

.bl_top_news_btn a:hover {
  background-color: #fff;
  color: #C60009;
  color: var(--color-main);
}

.bl_top_news_btn a i {
  font-size: 1.6rem;
  margin-left: 16px;
}

.bl_top_news_ul {
  width: 100%;
}

.bl_top_news_ul li {
  display: flex;
  gap: 0 48px;
  border-bottom: 1px solid #ccc;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  .bl_top_news_ul li {
    flex-direction: column;
  }
}

.bl_top_news_ul li:last-child {
  border-bottom: 0;
}

.bl_top_other {
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .bl_top_other {
    flex-direction: column;
  }
}

.bl_top_other_link {
  width: 48%;
  border: 1px solid #C60009;
  border: 1px solid var(--color-main);
  padding: 24px 16px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .bl_top_other_link {
    width: 100%;
  }
}

.bl_top_other_ul {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 8px 24px;
  list-style-type: disc;
  margin-left: 24px;
  margin-top: 16px;
}

.bl_top_other_ul li {
  margin: 0;
}

.bl_top_other_more {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 24px;
  background-color: #c00;
  color: #fff;
  font-size: 1.4rem;
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  width: 48%;
}

@media screen and (max-width: 768px) {
  .card-link {
    width: 100%;
  }
}

.bl_top_other_card {
  position: relative;
  border: 1px solid #C60009;
  border: 1px solid var(--color-main);
  padding: 24px 16px;
  background: #fff;
}

.bl_top_other_arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #c00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 24px;
  font-size: 1.4rem;
}

.bl_about_mission {
  color: #C60009;
  color: var(--color-main);
  font-size: 2.4rem;
}

.bl_about_misson_main {
  margin: 24px 0;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}

.bl_about_misson_img {
  text-align: center;
}

.bl_about_ul_disc li {
  list-style-type: disc;
  margin-left: 24px;
}

.bl_about_officer_table {
  width: 100%;
  border: 1px solid #ccc;
}

.bl_about_officer_table th {
  background-color: #ffe6e8;
  padding: 8px 16px;
  border-bottom: 1px solid #ccc;
  width: 186px;
  vertical-align: middle;
  text-align: center;
  font-weight: normal;
}

@media screen and (max-width: 500px) {
  .bl_about_officer_table th {
    width: 120px;
  }
}

.bl_about_officer_table td {
  padding: 8px 16px;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.bl_about_bylaws {
  padding-bottom: 40px;
}

.bl_about_bylaws h4 {
  font-size: 2rem;
  font-weight: bold;
  color: #C60009;
  color: var(--color-main);
}

.bl_about_bylaws_ul .bl_about_bylaws_li {
  margin-bottom: 16px;
}

.bl_about_bylaws_ul .bl_about_bylaws_li .bl_about_bold {
  margin: 8px 0;
  font-weight: bold;
}

.bl_about_article_box {
  display: flex;
}

.bl_about_article_box .bl_about_article {
  flex-shrink: 0;
}

.bl_about_article_box ol {
  list-style-type: decimal;
}

.bl_form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.bl_form_row {
  margin-bottom: 24px;
}

.bl_form_label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.bl_form_input,
.bl_form_textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.bl_form_required {
  margin-left: 16px;
  font-size: 1.4rem;
  color: #C60009;
  color: var(--color-main);
}

.bl_form_actions {
  margin: 40px 0;
  text-align: center;
}

.bl_form_submit {
  border: 3px solid #C60009;
  border: 3px solid var(--color-main);
  background-color: #C60009;
  background-color: var(--color-main);
  color: #fff;
  font-weight: bold;
  padding: 8px 24px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.el_ttl_h2_top {
  position: relative;
  display: inline-block;
  padding: 0 128px 0 0;
  font-size: 3.2rem;
}

@media screen and (max-width: 500px) {
  .el_ttl_h2_top {
    font-size: 2.4rem;
    padding: 0 96px 0 0;
  }
}

.el_ttl_h2_top::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 104px;
  height: 1px;
  background-color: #C60009;
  background-color: var(--color-main);
  right: 0;
}

@media screen and (max-width: 500px) {
  .el_ttl_h2_top::after {
    width: 80px;
  }
}

.el_ttl_h3 {
  font-size: 2.4rem;
  position: relative;
  margin-bottom: 24px;
  line-height: 2;
}

.el_ttl_h3::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(to right, #C60009, transparent);
}

.el_btn_header {
  padding: 12px 24px;
  color: #fff;
  font-weight: 500;
  display: inline-block;
}

@media screen and (max-width: 1200px) {
  .el_btn_header {
    text-align: center;
    padding: 12px 14px;
    text-decoration: none;
    font-weight: 600;
  }
}

.el_btn_top {
  margin-top: 64px;
  text-align: center;
}

.el_btn_top a {
  padding: 8px 24px;
  color: #fff;
  font-weight: bold;
  background-color: #C60009;
  background-color: var(--color-main);
  border: 1px solid #C60009;
  border: 1px solid var(--color-main);
}

.el_btn_top a:hover {
  background-color: #fff;
  color: #C60009;
  color: var(--color-main);
}

.el_link {
  color: #1A0DAB;
  text-decoration: underline;
}

.el_link:hover {
  text-decoration: none;
}

.el_br375 {
  display: none;
}

@media screen and (max-width: 375px) {
  .el_br375 {
    display: block;
  }
}

.el_br425 {
  display: none;
}

@media screen and (max-width: 425px) {
  .el_br425 {
    display: block;
  }
}

.el_br768 {
  display: none;
}

@media screen and (max-width: 768px) {
  .el_br768 {
    display: block;
  }
}

.ly_sec_main {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 0;
}

.ly_sec_bg {
  background-color: #F3F3F3;
}

.ly_sec_low {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 64px;
}

/*
* 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_pt16p {
  padding-top: 16px !important;
}

.hp_pt20p {
  padding-top: 20px !important;
}

.hp_pt24p {
  padding-top: 24px !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_pt64p {
  padding-top: 64px !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_pt128p {
  padding-top: 128px !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_pl18p {
  padding-left: 18px !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_fs12px {
  font-size: 1.2rem !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: #DB0000 !important;
  color: var(--color-danger) !important;
}

.hp_colorBl {
  color: #264CC4;
}

.hp_colorRed {
  color: red;
}