@charset "UTF-8";
/******* 目次 *******/
/* ===== 独自変数 ===== */
/* ===== Bootstrap Root変数を上書き ===== */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
:root {
  --bs-primary: #008fce;
  --bs-secondary: #b91;
}

/* ===== 独自Sassコンポーネントインポート ===== */
/******* 目次 *******/
/* ===== Bootstrapのcontainerのpadding調整 ===== */
.container-sm {
  padding-right: var(--bs-gutter-x, 1.5rem);
  padding-left: var(--bs-gutter-x, 1.5rem);
}

@media (min-width: 576px) and (max-width: 767px) {
  .container-sm {
    max-width: calc(100vw - 60px);
  }
}
@media (min-width: 768px) {
  .container-sm {
    max-width: 1000px;
  }
}
@media (max-width: 767px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ===== wrapperのレイアウト ===== */
@media (min-width: 992px) {
  .content-wrapper {
    display: flex;
  }
  .content-wrapper .main-wrapper {
    width: calc(100% - 360px);
  }
  .content-wrapper .contact-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    min-width: 280px;
    max-width: 360px;
    padding-top: 0px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .content-wrapper .contact {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 100px 0 0;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.contact-wrapper {
  background-color: #f0f3f6;
}

.contact-form-wrapper {
  /*    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.2);*/
  border-radius: 8px;
}
.contact-form-wrapper iframe {
  border-radius: 8px;
}

.contact-info-wrapper {
  line-height: 1.2;
}
.contact-info-wrapper .card-title {
  font-size: 0.9em;
}
.contact-info-wrapper .card-text {
  font-size: 0.8em;
  line-height: 1.4;
}

/* ===== padding ===== */
.py-6 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.mb-6 {
  margin-bottom: 60px;
}

.pyx_6 {
  padding: 60px;
}
@media (max-width: 767px) {
  .pyx_6 {
    padding: 40px 30px;
  }
}

.bg_primary {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.bg_secondary {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.bg_gradient {
  background: linear-gradient(180deg, #004898 0%, var(--bs-primary) 100%);
  color: var(--bs-white);
}

.bg_white {
  background: var(--bs-white);
  color: var(--bs-dark);
}

.bg_light {
  background: #ecf6ff;
}

/* ===== Button Style ===== */
.btn {
  padding-top: 0.5em;
  padding-bottom: 0.7em;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.white-btn,
.black-btn,
.blue-btn {
  padding: 0.5em 0.8em 0.6em;
  background: var(--bs-white);
  border: 1px solid var(--bs-dark);
  border-radius: 0;
  color: var(--bs-dark);
  font-weight: 700;
}
.white-btn:hover,
.black-btn:hover,
.blue-btn:hover {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  background: var(--bs-primary);
  color: var(--bs-dark);
  border-color: var(--bs-dark);
}
.white-btn i,
.black-btn i,
.blue-btn i {
  line-height: 1;
  vertical-align: top;
  font-size: 1.2em;
}
.white-btn span,
.black-btn span,
.blue-btn span {
  display: block;
  font-size: 0.6em;
  font-weight: normal;
}

.black-btn {
  background: var(--bs-dark);
  color: var(--bs-white);
}
.black-btn:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
  opacity: 1;
}

.blue-btn {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  color: var(--bs-white);
}
.blue-btn:hover {
  background: var(--bs-white);
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
  opacity: 1;
}

.main-btn {
  margin-left: auto;
  margin-right: auto;
  padding-top: 0.6em;
  padding-bottom: 0.7em;
  font-size: 1.4em;
}

.link-btn:hover {
  color: var(--bs-white);
  background: var(--bs-white);
  opacity: 0.8;
}

.back-to-top {
  width: 40px;
  height: 40px;
  background: var(--bs-primary);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--bs-white);
}
.back-to-top:hover {
  color: var(--bs-white);
  background: var(--bs-dark);
}
.back-to-top i::before {
  line-height: 0.9;
  font-size: 1.2em;
}

/* ===== Header CSS ===== */
.sticky-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}
.navbar-brand img {
  width: auto;
  max-width: 160px;
  padding: 10px 0 4px;
}

.service_category {
  padding: 0;
  margin-bottom: 0.8em;
  font-size: 0.8em;
  color: var(--bs-white);
}
.service_category a {
  color: var(--bs-w);
}

.navbar-toggler {
  padding: 0;
}
.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--bs-white);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--bs-white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px 40px;
  }
}
.navbar-nav .nav-item {
  position: relative;
  padding: 0px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}
.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--bs-white);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 25px 8px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--bs-dark);
  }
}
.navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
  color: var(--bs-white);
  opacity: 0.6;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--bs-primary);
    opacity: 1;
  }
}
.navbar-nav .nav-item .submenu {
  position: absolute;
  width: 250px;
  background: var(--bs-white);
  top: 110%;
  padding: 20px 30px;
  box-shadow: 0 15px 44px rgba(140, 140, 140, 0.18);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .submenu {
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 0px;
    opacity: 1;
    visibility: visible;
    display: none;
  }
}
.navbar-nav .nav-item .submenu.show {
  display: block;
}
.navbar-nav .nav-item .submenu .submenu-link {
  padding: 7px 0;
  color: var(--bs-dark);
  font-size: 14px;
}
.navbar-nav .nav-item .submenu .submenu-link:hover {
  color: var(--bs-primary);
}
.navbar-nav .nav-item:hover > a {
  color: var(--bs-white);
  opacity: 0.5;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--bs-primary);
    opacity: 1;
  }
}
.navbar-nav .nav-item:hover > .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.navbar-nav .nav-item.nav-item-has-children > a {
  position: relative;
}
.navbar-nav .nav-item.nav-item-has-children > a::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg) translateY(-50%);
  right: -15px;
  top: 50%;
  margin-top: -2px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item.nav-item-has-children > a::after {
    right: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: relative;
    bottom: 10px;
    left: 30px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.sticky .service_category {
  color: var(--bs-dark);
}
.sticky .service_category a {
  color: var(--bs-dark);
}
.sticky .service_category a.active, .sticky .service_category a:hover {
  color: var(--bs-primary);
  opacity: 1;
}
.sticky .navbar-toggler .toggler-icon {
  background-color: var(--bs-dark);
}
.sticky .navbar-nav .nav-item:hover > a {
  color: var(--bs-primary);
  opacity: 1;
}
.sticky .navbar-nav .nav-item a {
  color: var(--bs-dark);
}
.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--bs-primary);
  opacity: 1;
}
.sticky .navbar-btn .main-btn.login-btn {
  color: var(--bs-dark);
}
.sticky .navbar-btn .main-btn.login-btn:hover {
  color: var(--bs-primary);
  opacity: 1;
}
.sticky .navbar-btn .white-btn {
  background: var(--bs-dark);
  color: var(--bs-white);
}
.sticky .navbar-btn .white-btn:hover {
  background: var(--bs-primary);
}

/* ===== Hero CSS ===== */
.heroes {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  /*  z-index: -2; */
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heroes {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .heroes {
    padding-top: 100px;
  }
}

.heroes-content {
  z-index: 20;
}
.heroes-content::after {
  content: "";
  display: block;
  width: 100%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 40%) no-repeat bottom left/100% 100%;
  z-index: 1;
}
.heroes-content * {
  z-index: 2;
}
.heroes-content .heroes-title {
  margin-bottom: 30px;
}
.heroes-content .heroes-desc {
  font-size: 20px;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .heroes-content .heroes-desc {
    font-size: 16px;
  }
}

.heroes-image {
  max-width: 600px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.heroes-image .shape {
  position: absolute;
  z-index: -1;
}
.heroes-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}
.heroes-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}

/* ===== Features CSS ===== */
.single-feature {
  margin-bottom: 40px;
}
.single-feature:hover .feature-icon::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ===== FAQ CSS ===== */
.faq {
  position: relative;
  z-index: 1;
}
.faq .shape {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 60%;
}

.single-faq {
  background: var(--bs-white);
  border: 1px solid var(--bs-dark);
  margin-bottom: 30px;
}
.single-faq .faq-btn {
  text-align: left;
  display: flex;
  width: 100%;
  align-items: center;
  border: none;
  background: transparent;
  font-size: 18px;
  padding: 15px;
}
.single-faq .faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.single-faq .faq-btn span.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bs-dark);
  color: var(--bs-white);
  margin-right: 24px;
}
.single-faq .faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: all 0.3s;
  font-size: 20px;
  font-weight: 700;
}
.single-faq .faq-body {
  padding: 0px 16px 20px 82px;
}

/* ===== Testimonials CSS ===== */
.single-testimonial {
  position: relative;
  padding: 0 20px 20px;
  background: var(--bs-white);
}
.single-testimonial::before {
  position: absolute;
  content: "“";
  font-size: 5em;
  color: var(--bs-primary);
  top: -20px;
  left: -10px;
  line-height: 1;
}
.single-testimonial::after {
  position: absolute;
  content: "”";
  font-size: 5em;
  color: var(--bs-primary);
  right: -10px;
  bottom: -60px;
  line-height: 1;
}
.single-testimonial .testimonial-ratings {
  margin-bottom: 10px;
}
.single-testimonial .testimonial-ratings i {
  color: #fbb040;
}
.single-testimonial .testimonial-info .testimonial-image {
  margin-right: 20px;
}
.single-testimonial .testimonial-info p {
  font-size: 0.8em;
  color: #969696;
}
.single-testimonial .testimonial-content {
  position: relative;
}

.brands .title {
  margin-bottom: 30px;
}
.brands .title h6 {
  font-weight: normal;
  font-size: 12px;
  color: var(--body-color);
  display: inline-block;
  position: relative;
}
.brands .title h6::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #afb2b5;
  right: -40px;
  top: 50%;
}
.brands .brands-logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -40px;
}
.brands .brands-logo .single-logo {
  margin-right: 40px;
  margin-bottom: 20px;
  max-width: 140px;
}
.brands .brands-logo .single-logo:hover img {
  filter: none;
}
.brands .brands-logo .single-logo img {
  filter: grayscale(1);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== Footer CSS ===== */
.footer {
  background: var(--bs-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 10px;
  font-size: 12px;
  color: var(--bs-white);
}
.footer a {
  color: var(--bs-white);
  text-decoration: none;
}
.footer a:hover {
  color: var(--bs-primary);
}

.widget .footer-logo {
  max-width: 160px;
  display: block;
  margin-bottom: 10px;
}
.widget .footer-logo img {
  width: 100%;
}
.widget .widget-socials {
  display: flex;
  align-items: center;
}
.widget .widget-socials a {
  font-size: 16px;
  color: #ecf6ff;
  margin-right: 20px;
}
.widget .widget-title {
  font-weight: 600;
  margin-bottom: 35px;
  color: var(--bs-white);
}
.widget .widget-links a {
  display: inline-block;
  margin-bottom: 12px;
}
.widget .widget-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.widget .widget-brands a {
  display: block;
  max-width: 120px;
  margin-bottom: 20px;
  margin-right: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget .widget-brands a {
    max-width: 100px;
  }
}

.footer-bottom {
  padding-top: 10px;
  border-top: 1px solid #bcc;
  font-size: 12px;
}
.footer-bottom .footer-bottom-left {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-left {
    justify-content: center;
  }
}
.footer-bottom .footer-bottom-left a {
  font-weight: normal;
  color: var(--bs-white);
  margin-right: 30px;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}
.footer-bottom .footer-bottom-left a:hover {
  color: var(--bs-primary);
}
.footer-bottom .footer-bottom-right {
  text-align: right;
  font-weight: normal;
  color: var(--bs-white);
}
.footer-bottom .footer-bottom-right a {
  color: var(--primary-color);
}
.footer-bottom .footer-bottom-right a:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-bottom .footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/******* 目次 *******/
/* ===== 吹き出し ===== */
.balloon_bottom,
.balloon_white_bottom,
.balloon_white_right,
.balloon_white_left {
  position: relative;
  z-index: 40;
}
.balloon_bottom::before,
.balloon_white_bottom::before,
.balloon_white_right::before,
.balloon_white_left::before {
  content: "";
  position: absolute;
  border: 12px solid transparent;
  border-top-width: 12px;
  border-top-style: solid;
}

.balloon_bottom {
  background-color: var(--bs-primary);
}
.balloon_bottom::before {
  border-top-color: var(--bs-primary);
  top: 100%;
  left: 50%;
}

.balloon_white_bottom {
  background-color: var(--bs-white);
}
.balloon_white_bottom::before {
  border-top-color: var(--bs-white);
  top: 100%;
  left: 50%;
}

.balloon_white_right::before {
  border-left: 12px solid var(--bs-white);
  top: 15px;
  right: -24px;
}

.balloon_white_left::before {
  border-right: 12px solid var(--bs-white);
  top: 15px;
  left: -24px;
}

.balloon_line_bottom,
.balloon_line_right,
.balloon_line_left {
  position: relative;
  background-color: var(--bs-white);
  border: 1px solid var(--bs-dark);
}
.balloon_line_bottom::before, .balloon_line_bottom::after,
.balloon_line_right::before,
.balloon_line_right::after,
.balloon_line_left::before,
.balloon_line_left::after {
  content: "";
  position: absolute;
  border: 12px solid transparent;
}

.balloon_line_bottom::before, .balloon_line_bottom::after {
  top: 100%;
  left: calc(50% - 12px);
}
.balloon_line_bottom::before {
  border-top: 12px solid var(--bs-dark);
}
.balloon_line_bottom::after {
  margin-top: -2px;
  border-top: 12px solid var(--bs-white);
}

.balloon_line_right::before {
  border: 12px solid transparent;
  border-left: 12px solid var(--bs-dark);
  top: 15px;
  right: -24px;
}
.balloon_line_right::after {
  border: 12px solid transparent;
  border-left: 12px solid var(--bs-white);
  top: 15px;
  right: -22px;
}

.balloon_line_left::before {
  border: 12px solid transparent;
  border-right: 12px solid var(--bs-dark);
  top: 15px;
  left: -24px;
}
.balloon_line_left::after {
  border: 12px solid transparent;
  border-right: 12px solid var(--bs-white);
  top: 15px;
  left: -22px;
}

.balloon_line_bottom_bottom {
  position: relative;
  border-bottom: solid 2px var(--bs-dark);
}
.balloon_line_bottom_bottom::before, .balloon_line_bottom_bottom::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.balloon_line_bottom_bottom::before {
  border: solid 12px transparent;
  border-top: solid 12px var(--bs-dark);
}
.balloon_line_bottom_bottom::after {
  border: solid 14px transparent;
  margin-top: -5px;
}

.balloon_large::before {
  border-width: 30px;
  border-top-width: 30px;
  left: calc(50% - 30px);
}

.balloon_in {
  margin: 0;
  padding: 10px;
  text-align: center;
}

.balloon_white_bottom .balloon_in {
  color: var(--bs-dark);
}

/* ===== Arrow Background ===== */
.arrow_full {
  position: relative;
}
.arrow_full::after {
  content: "";
  width: 20px;
  height: 100%;
  right: -20px;
  top: 0;
  position: absolute;
  background: linear-gradient(to bottom left, transparent 50%, var(--bs-white) 50%) top left/100% 50% no-repeat, linear-gradient(to top left, transparent 50%, var(--bs-white) 50%) bottom left/100% 50% no-repeat;
}
@media (max-width: 767px) {
  .arrow_full {
    display: block;
    padding: 40px 20px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .arrow_full {
    padding: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .arrow_full::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 50%;
    transform: translatex(50%);
    box-sizing: border-box;
    border-right: calc(50vw - 80px) solid transparent;
    border-left: calc(50vw - 80px) solid transparent;
    border-top: 40px solid var(--bs-white);
  }
}

/******* 目次 *******/
/* ===== タグ ===== */
.tag {
  font-weight: 500;
  font-size: 14px;
  color: var(--bs-white);
  background: var(--bs-primary);
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 20px;
}

/* ===== 文字にマーカー風 ===== */
.marker {
  background: linear-gradient(transparent 50%, #fe6 50%);
}

.marker_primary {
  background: linear-gradient(transparent 50%, #76d6f6 50%);
  font-weight: normal;
}

/* ===== 主にcardの枠線を黒くする ===== */
.border_dark {
  border-color: var(--bs-dark);
  border-radius: 0;
}

/* ===== bg_primaryの場合のcard ==== */
.bg_primary .card {
  background: none;
  border-radius: 0;
}

/* ===== border-primaryの場合のcard ==== */
.border-primary.card {
  border-color: var(--bs-primary) !important;
  border-radius: 0;
}

/* ===== h2、h3まわり ===== */
.section-title span {
  position: relative;
  z-index: 30;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
  color: var(--bs-primary);
}
.section-title h3 {
  color: var(--bs-primary);
}
.section-title p {
  font-size: 20px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* ===== 文字の背景に半透明の平行四辺形を敷く ===== */
.onion_skin {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: var(--bs-dark);
}
.onion_skin::before, .onion_skin::after {
  content: "";
  position: absolute;
  transform: skew(-5deg, 5deg);
}
.onion_skin::before {
  top: 5px;
  bottom: -10px;
  left: 0px;
  right: -5px;
  z-index: -1;
  background-color: rgba(180, 220, 240, 0.3);
}
.onion_skin::after {
  top: -5px;
  bottom: 0px;
  left: -10px;
  right: 5px;
  z-index: -2;
  background-color: rgba(240, 230, 180, 0.4);
}

.heroes .onion_skin {
  transform: skew(-10deg, -5deg);
  padding: 6px 20px 10px 6px;
  line-height: 1.5;
}
.heroes .onion_skin::before, .heroes .onion_skin::after {
  transform: skew(-15deg, 0deg);
}
.heroes .onion_skin::after {
  background-image: linear-gradient(90deg, rgba(253, 219, 146, 0.7), rgba(209, 253, 254, 0.7));
}

/* ===== 文字の左右にカッコ風 ===== */
.brackets {
  text-align: center;
}
.brackets span {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
}

.brackets_dark span::before {
  position: absolute;
  content: "";
  top: 0;
  right: 5px;
  width: 5px;
  height: 100%;
  border: 1px solid var(--bs-dark);
  border-left: none;
}
.brackets_dark span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 5px;
  width: 5px;
  height: 100%;
  border: 1px solid var(--bs-dark);
  border-right: none;
}

.brackets_primary span::before {
  position: absolute;
  content: "";
  top: 0;
  right: 5px;
  width: 5px;
  height: 100%;
  border: 1px solid var(--bs-primary);
  border-left: none;
}
.brackets_primary span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 5px;
  width: 5px;
  height: 100%;
  border: 1px solid var(--bs-primary);
  border-right: none;
}

.brackets_white span::before {
  position: absolute;
  content: "";
  top: 0;
  right: 5px;
  width: 5px;
  height: 100%;
  border: 1px solid var(--bs-white);
  border-left: none;
}
.brackets_white span::after {
  position: absolute;
  content: "";
  top: 0;
  left: 5px;
  width: 5px;
  height: 100%;
  border: 1px solid var(--bs-white);
  border-right: none;
}

/* ===== 文字の背景に白いエリアと黒い枠線を重ねる ===== */
.layered_white {
  position: relative;
  display: inline-block;
  padding: 0.2rem calc(0.6rem + 8px) calc(0.2rem + 8px) 0.6em;
  background: var(--bs-white);
  color: var(--bs-dark);
}
.layered_white::before {
  position: absolute;
  top: -5px;
  left: -5px;
  width: 100%;
  height: 100%;
  content: "";
  border: 2px solid var(--bs-dark);
}

/* ===== CTAエリア ===== */
.cta {
  position: relative;
  z-index: 30;
  margin-bottom: 3rem;
}

/* ===== 見出しの前につけるアイコン ===== */
.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  background: var(--bs-primary);
  font-size: 32px;
  color: var(--bs-white);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
  line-height: 0.5;
}
.feature-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--bs-primary);
  opacity: 0.2;
  z-index: -1;
  -webkit-transform: rotate(23deg);
  -moz-transform: rotate(23deg);
  -ms-transform: rotate(23deg);
  -o-transform: rotate(23deg);
  transform: rotate(23deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/* ===== 見出しの前につけるリボン ===== */
.ribbon_icon {
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  background: #fff;
}
.ribbon_icon span {
  position: absolute;
  top: -26px;
  left: -20px;
  display: inline-block;
  width: 52px;
  padding: 10px 0 0;
  background-color: var(--bs-primary);
  text-align: center;
  font-size: 0.6em;
  color: var(--bs-white);
}
.ribbon_icon span::before, .ribbon_icon span::after {
  position: absolute;
  content: "";
}
.ribbon_icon span::before {
  right: -10px;
  top: 0;
  width: 0;
  height: 0;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--bs-primary);
}
.ribbon_icon span::after {
  top: 90%;
  left: 0;
  display: block;
  height: 10px;
  border: 1em solid var(--bs-primary);
  border-right-width: 26px;
  border-left-width: 26px;
  border-bottom-width: 8px;
  border-bottom-color: transparent;
}

/* ===== https://copypet.jp/2045/ の2番目 */
.timeline02 {
  position: relative;
  overflow: auto;
}
.timeline02::before {
  position: absolute;
  left: 50%;
  width: 3px;
  height: 100%;
  content: "";
  background: var(--bs-dark);
}
.timeline02 .event,
.timeline02 .event_center {
  position: relative;
  clear: both;
  max-width: calc(100% - 4em);
  width: 42%;
  margin: 0 auto 1em;
  padding: 6px 12px;
  text-align: center;
}
.timeline02 .event.event_right,
.timeline02 .event_center.event_right {
  float: right;
}
.timeline02 .event.event_left,
.timeline02 .event_center.event_left {
  float: left;
}
.timeline02 .event:nth-of-type(2n+1),
.timeline02 .event_center:nth-of-type(2n+1) {
  clear: both;
}
.timeline02 .event .flag,
.timeline02 .event_center .flag {
  padding: 0;
  margin: 0 auto 10px;
  line-height: 1.5em;
  font-weight: bold;
}
.timeline02 .event .desc,
.timeline02 .event_center .desc {
  line-height: 1.5em;
}
.timeline02 .event .time,
.timeline02 .event_center .time {
  color: var(--bs-primary);
  font-weight: bold;
  font-size: 0.8em;
}
.timeline02 .event i,
.timeline02 .event_center i {
  font-size: 2em;
}
.timeline02 .event_center {
  border: 3px double var(--bs-dark);
  background-color: var(--bs-white);
}

/* 上場の主張 */
.company {
  position: relative;
  background-image: url("https://www.kosaido.co.jp/img/civi/main_back.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}
.company .logo_hd {
  width: 200px;
  height: auto;
}

/* ===== Font ===== */
/* ===== General ===== */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

@media (max-width: 991.98px) {
  html, body {
    overflow-x: hidden;
  }
}
body {
  background-color: #fbfcfc;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2;
}
body .fs-5 {
  line-height: 1.7;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

a.card {
  color: var(--bs-dark);
}
a.card:hover {
  text-decoration: underline;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  line-height: 1.5;
  font-weight: 700;
}

h2 {
  margin-bottom: 30px;
  font-size: 2em;
}
@media (max-width: 767px) {
  h2 {
    font-size: h2_size_xs;
  }
}

.text_color_primary {
  color: var(--bs-primary);
}

.text_color_dark {
  color: var(--bs-dark);
}

.bg-dark {
  color: var(--bs-white);
}

.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}

.text_shadow {
  text-shadow: 1px 1px 4px black;
}/*# sourceMappingURL=common.css.map */