/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
/* Fonts */ :root {
  --default-font: 'Zen Maru Gothic', 'Yu Gothic', '游ゴシック体', 'Hiragino Maru Gothic Pro', 'ヒラギノ丸ゴ Pro W4', 'メイリオ', sans-serif;
  --heading-font: "Jost", sans-serif;
  --nav-font: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
:root {
  --background-color: #ffffff;
  --background-green: #EAF5F0;
  --default-color: #3B4043;
  --heading-color: #37517e;
  --accent-color: #47b2e4;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --white: #ffffff;
  --sky-blue: #60B9E2;
  --green: #74BD9A;
  --pink: #E58A96;
  --orange: #F8BC7A;
  --navy: #37517e;
  --sub-color: #4cbd9b;
  --gray-333: #333333;
  --gray-999: #999999;
  --gray-eee: #eeeeee;
}
:root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
:root {
  scroll-behavior: smooth;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--default-color);
  font-family: 'Kiwi Maru', serif;
  font-weight: 400;
}
/*--------------------------------------------------------------
# title font
--------------------------------------------------------------*/
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}
/*--------------------------------------------------------------
# background
--------------------------------------------------------------*/
.background-green {
  background: var(--background-green);
  margin-top: -1px;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  position: fixed;
  background-color: var(--white);
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 1030;
  max-width: 1200px;
  margin: 1em auto 0 auto;
  border-radius: 50vh;
  box-shadow: 4px 4px 4px #ddd;
}
.header .logo {
  line-height: 1;
  margin-left: 1em;
  padding-top: 0.1em;
}
.header-logo-img {
  width: 360px;
}
@media (max-width: 767px) {
  .header .logo {
    margin: 0 0.3em;
  }
  .header-logo-img {
    width: 320px;
  }
}
/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}
/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    order: 3;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu a, .navmenu a:focus {
    color: var(--default-color);
    padding: 18px 15px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }
  .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu .dropdown ul li {
    min-width: 200px;
  }
  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }
  .navmenu .dropdown ul a i {
    font-size: 12px;
  }
  .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
  .navmenu .megamenu {
    position: static;
  }
  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .navmenu .megamenu ul li {
    flex: 1;
  }
  .navmenu .megamenu ul li a, .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }
  .navmenu .megamenu ul li a:hover, .navmenu .megamenu ul li .active, .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}
@media (min-width: 1400px) {
  .navmenu {
    margin: 0 20px 0 0;
  }
}
/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .navmenu {
    padding: 0;
    z-index: 9997;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
  .navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }
  .navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }
  .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }
  .navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }
  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  border-top: 1px solid #f1f2f2;
  font-size: 14px;
  position: relative;
}
.footer .footer-top {
  padding-top: 50px;
}
.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
}
.footer-logo {
  max-width: 300px;
}
.footer-table {
  border-collapse: collapse;
  width: 100%;
}
.footer-table th {
  text-align: justify;
  text-align-last: justify;
  width: 43px;
  display: table-cell;
  min-width: 43px;
}
.footer-table td {
  padding: 0 0 0 0.2em;
}
@media (min-width: 1201px) {
  .tel-link {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
    cursor: default;
  }
}
@media (max-width: 1200px) {
  .tel-link {
    color: inherit;
    text-decoration: underline;
  }
}
@media (max-width: 768px) {
  .tel-link {
    text-decoration: none !important;
  }
}
.mail-link-area {
  display: inline;
}
.mail-link-area a {
  color: var(--default-color);
  font-family: var(--default-font);
}
.mail-link-area a:hover {
  text-decoration: underline;
}
.footer .footer-links {
  margin: 2.2em 0 30px 0;
}
.footer-nav-list-01, .footer-nav-list-02 {
  list-style: none;
}
.footer-nav-list-01 li, .footer-nav-list-02 li {
  position: relative;
  padding: 0.1em 0 0.1em 1.5em;
}
.footer-nav-list-01 li::before, .footer-nav-list-02 li::before {
  content: '';
  position: absolute;
  top: 44%;
  left: 0;
  border-top: 2px solid var(--default-color);
  margin-left: 5px;
  width: 10px;
}
.footer-nav-list-01 li a, .footer-nav-list-02 li a {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 400;
}
.footer-nav-list-01 li a:hover, .footer-nav-list-02 li a:hover {
  color: var(--accent-color);
}
.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #f1f2f2;
}
.footer .copyright p {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .footer-top .row.gy-4 {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-about {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer .footer-links {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 20px 0 0 0;
  }
  .footer-links ul {
    padding-left: 0;
    list-style: none;
  }
  .footer-links ul li {
    margin-bottom: 10px;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  background: var(--sub-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-green);
  padding: 20px 0;
  position: relative;
}
.page-title h1 {
  font-family: "Kiwi Maru", serif;
  font-size: clamp(22px, 1.5vw + 17px, 28px);
  -webkit-font-smoothing: antialiased; /* Mac/Chrome/Safari用 */
  -moz-osx-font-smoothing: grayscale; /* Firefox用 */
}
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}
.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}
.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  padding: 30px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    padding: 20px 0;
    scroll-margin-top: 66px;
  }
}
.position-relative .container {
  position: relative;
  z-index: 2;
}
/*--------------------------------------------------------------
# btn
--------------------------------------------------------------*/
.btn-sky-blue a {
  color: var(--sky-blue);
  font-weight: 500;
  padding: 10px 50px;
  background: var(--background-color);
  border: 2px solid var(--sky-blue);
  border-radius: 50px;
  transition: all 0.5s;
}
.btn-sky-blue a:hover {
  color: var(--white);
  border: 2px solid var(--sky-blue);
  background: var(--sky-blue);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.btn-green a {
  color: var(--green);
  font-weight: 500;
  padding: 10px 50px;
  background: var(--background-color);
  border: 2px solid var(--green);
  border-radius: 50px;
  transition: all 0.5s;
}
.btn-green a:hover {
  color: var(--white);
  border: 2px solid var(--green);
  background: var(--green);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.btn-orange a {
  color: var(--orange);
  font-weight: 500;
  padding: 10px 50px;
  background: var(--background-color);
  border: 2px solid var(--orange);
  border-radius: 50px;
  transition: all 0.5s;
}
.btn-orange a:hover {
  color: var(--white);
  border: 2px solid var(--orange);
  background: var(--orange);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
.btn-pink a {
  color: var(--pink);
  font-weight: 500;
  padding: 10px 50px;
  background: var(--background-color);
  border: 2px solid var(--pink);
  border-radius: 50px;
  transition: all 0.5s;
}
.btn-pink a:hover {
  color: var(--white);
  border: 2px solid var(--pink);
  background: var(--pink);
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 20px 0 30px 0;
  position: relative;
}
.section-title h2 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  font-family: "Kiwi Maru", serif;
  font-size: clamp(24px, 2.5vw + 14px, 32px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 104px;
  height: 12px;
  background: linear-gradient(to right, #fcdbb2 0px 10px, transparent 10px 13px, #9fd5be 13px 23px, transparent 23px 26px, #9ad4ec 26px 36px, transparent 36px 39px, #f7b4be 39px 49px, transparent 49px 52px);
  background-size: 52px 12px;
  background-repeat: repeat-x;
}
.section-title p {
  margin-bottom: 0;
  padding: 0 0.5em;
  font-size: clamp(16px, 0.31vw + 14.8px, 18px);
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}
.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}
.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}
.about .read-more {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 8px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-color);
}
.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}
.about .read-more:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.about .read-more:hover i {
  transform: translate(5px, 0);
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}
.services .service-item .icon {
  margin-bottom: 10px;
}
.services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: 0.3s;
}
.services .service-item h4 {
  margin-bottom: 15px;
  font-size: 20px;
}
.services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}
.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .service-item:hover {
  transform: translateY(-10px);
}
.services .service-item:hover h4 a {
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# our-works Section
--------------------------------------------------------------*/
.our-works .steps-item {
  background: var(--surface-color);
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}
.our-works .steps-item .steps-image {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
/*.our-works .steps-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.our-works .steps-item:hover .steps-number {
  background: var(--sub-color);
  color: var(--contrast-color);
}
.our-works .steps-item:hover .steps-image img {
  transform: scale(1.1);
}*/
.our-works .steps-image {
  position: relative;
  /*height: 280px;*/
}
.our-works .steps-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  transition: transform 0.6s ease;
  margin: 5% auto 0 auto;
  display: block;
  border-radius: 20px;
}
.our-works .steps-content {
  position: relative;
  padding: 40px 30px 30px;
}
.our-works .steps-content .steps-number {
  position: absolute;
  left: 30px;
  top: -30px;
  width: 60px;
  height: 60px;
  border: 3px var(--sky-blue) solid;
  background: var(--background-color);
  color: var(--sky-blue);
  border-radius: 50%;
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.our-works .steps-content .steps-content-h3 {
  margin-bottom: 15px;
  font-size: 24px;
}
.steps-content-p {
  line-height: 1.6;
}
.our-works .steps-content p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  color: var(--default-color);
  margin-bottom: 25px;
}
.our-works .steps-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.our-works .steps-features .feature-item:last-child {
  margin-bottom: 0;
}
.our-works .steps-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 10px;
}
.our-works .steps-features .feature-item span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}
@media (max-width: 1199px) {
  .our-works .steps-content {
    padding: 35px 25px 25px;
  }
  .our-works .steps-content h3 {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .our-works .steps-item {
    margin-bottom: 30px;
  }
  .our-works .steps-content {
    padding: 30px 20px 20px;
  }
  .our-works .steps-content .steps-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    left: 25px;
    top: -25px;
  }
  .our-works .steps-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .our-works .steps-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
/*--------------------------------------------------------------
# news Section
--------------------------------------------------------------*/
.news_container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.news_list {
  margin: 20px 0;
}
.news_list li {
  padding: 15px 5px;
  border-bottom: 1px dashed var(--accent-color);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.date {
  font-size: 16px;
  margin-right: 10px;
}
.category {
  display: inline-block;
  color: var(--white);
  width: 120px;
  font-size: 14px;
  text-align: center;
  margin-right: 10px;
  padding: 2px 10px;
  border-radius: 4px;
}
.cat-01 {
  border: 2px var(--sky-blue, #60B9E2) solid;
  color: var(--sky-blue);
}
.cat-02 {
  border: 2px var(--green, #74BD9A) solid;
  color: var(--green);
}
.cat-03 {
  border: 2px var(--pink, #E58A96) solid;
  color: var(--pink);
}
.cat-04 {
  border: 2px var(--orange, #F8BC7A) solid;
  color: var(--orange);
}
.news_text a {
  color: var(--gray-333);
}
@media screen and (max-width: 559px) {
  .news_container {
    width: 100%;
    padding: 0 20px;
  }
  .news_text a {
    display: block;
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.text-right {
  text-align: right;
}
/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  background-color: #EAF5F0;
  padding: 60px 0 80px 0;
  overflow: hidden;
  border-radius: 100% 100% 0 0 / 200px 200px 0 0;
  clip-path: none;
}
.call-to-action img {
  display: none;
}
.call-to-action:before {
  display: none;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}
.call-to-action p {
  color: #333333 !important;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  padding: 30px 20px 10px 20px;
  height: 100%;
}
@media (max-width: 575px) {
  .info-wrap {
    padding: 20px;
  }
}
.info-item {
  margin-bottom: 40px;
}
.info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}
.info-item h3 {
  padding: 0;
  font-size: 18px;
  margin-bottom: 5px;
}
.info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}
.info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  border-top: 3px solid var(--accent-color);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}
.contact .php-email-form input[type=text], .contact .php-email-form input[type=email], .contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
.contact .php-email-form input[type=text]:focus, .contact .php-email-form input[type=email]:focus, .contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}
.contact .php-email-form input[type=text]::placeholder, .contact .php-email-form input[type=email]::placeholder, .contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}
/*--------------------------------------------------------------
# work-life Details Section
--------------------------------------------------------------*/
.work-life-details .work-life-details-slider img {
  width: 100%;
}
.work-life-details .work-life-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.work-life-details .work-life-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}
.work-life-details .work-life-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.work-life-details .work-life-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}
.work-life-details .work-life-info h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}
.work-life-details .work-life-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.work-life-details .work-life-info ul li + li {
  margin-top: 10px;
}
.work-life-details .work-life-description {
  padding-top: 30px;
}
.work-life-details .work-life-description h2 {
  font-size: 26px;
  margin-bottom: 20px;
}
.work-life-details .work-life-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid #f1f2f2;
  margin-bottom: 20px;
}
@supports (color: color-mix(in srgb, red, blue)) {
  .service-details .services-list {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}
.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 5px solid #c4c6c7;
  margin: 20px 0;
  color: #626669;
  transition: 0.3s;
}
@supports (color: color-mix(in srgb, red, blue)) {
  .service-details .services-list a {
    border-left: 5px solid color-mix(in srgb, var(--default-color), transparent 70%);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
}
.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}
.service-details .services-list a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.service-details .services-list a.sub {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 5px solid #c4c6c7;
  margin: 10px 0 10px 10px;
  color: #626669;
  transition: 0.3s;
  font-size: 14px;
}
@supports (color: color-mix(in srgb, red, blue)) {
  .service-details .services-list a.sub {
    border-left: 5px solid color-mix(in srgb, var(--default-color), transparent 70%);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }
}
.service-details .services-list a.sub:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}
.service-details .services-img {
  margin-bottom: 20px;
}
.service-details h3 {
  font-size: 26px;
}
.service-details h4 {
  font-size: 20px;
}
.service-details p {
  font-size: 15px;
}
.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}
/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
/*.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}
.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}
.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}
.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}
.blog-posts .title a:hover {
  color: var(--accent-color);
}
.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}
.blog-posts .meta-top ul li + li {
  padding-left: 20px;
}
.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}
.blog-posts .content {
  margin-top: 20px;
}
.blog-posts .content .read-more {
  text-align: right;
}
.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}
.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}*/
/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
/*.pagination-2 {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.pagination-2 ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.pagination-2 li {
  margin: 0 5px;
  transition: 0.3s;
}
.pagination-2 li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-2 li a.active, .pagination-2 li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.pagination-2 li a.active a, .pagination-2 li a:hover a {
  color: var(--contrast-color);
}*/
/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
/*.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}
.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: 0 auto 3rem;
  border-radius: 16px;
  overflow: hidden;
}
.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}
.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}
.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}
.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}
@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}
.blog-details .article-content {
  padding: 0 1rem;
}
.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}
.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}
@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}
.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}
.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}
.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}
.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}
.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}
.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}
.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}
.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}
@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}
.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}
.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}
.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}
.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}
.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}
.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}
.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}
.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}
.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}
.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}
.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}
.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}
.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}
.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}
.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}*/
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  margin: 60px 0 30px 0;
}
.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  padding: 0 0 0 10px;
  margin: 0 0 20px 0;
  border-left: 4px solid var(--accent-color);
}
.widget-item {
  margin-bottom: 30px;
  background-color: #fcfcfc;
  border: 1px solid #eaeaea;
  padding: 30px;
  border-radius: 5px;
}
@supports (color: color-mix(in srgb, red, blue)) {
  .widget-item {
    background-color: color-mix(in srgb, var(--default-color), transparent 98%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}
.widget-item:last-child {
  margin-bottom: 0;
}
.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
  transition: 0.3s;
}
.search-widget form input[type=text] {
  border: 0;
  padding: 4px 10px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}
.search-widget form input[type=text]:focus {
  outline: none;
}
.search-widget form button {
  background: none;
  color: var(--default-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 16px;
  transition: 0.3s;
  line-height: 0;
}
.search-widget form button i {
  line-height: 0;
}
.search-widget form button:hover {
  color: var(--accent-color);
}
.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}
.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}
.post-item-txt h4 {
  margin: 0;
  font-size: 14px;
  color: #666;
}
.post-item-txt h3 {
  margin: 5px 0 0 0;
  font-size: 18px;
  color: #333;
}
.post-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}
.widget-post-link {
  display: flex;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 5px;
}
.widget-post-link:hover {
  transform: translateY(5px);
}
.widget-post-link:hover .post-item-txt h3, .widget-post-link:hover .post-item-txt h4, .widget-post-link:hover .post-item-txt span {
  color: var(--sky-blue) !important;
}
.widget-post-link:hover img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}
.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-widget ul li {
  padding-bottom: 10px;
}
.categories-widget ul li:last-child {
  padding-bottom: 0;
}
.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}
.categories-widget ul a:hover {
  color: var(--accent-color);
}
.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}
.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tags-widget ul li {
  display: inline-block;
}
.tags-widget ul a {
  background-color: color-mix(in srgb, var(--default-color), transparent 94%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 50px;
  font-size: 14px;
  padding: 5px 15px;
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
}
.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}
.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}
/* テーブル */
.table-type-01 {
  margin: 0 auto;
  width: 100%;
}
.table-type-01 th {
  background: #EAF5F0;
  border: solid 1px #ccc;
  font-weight: 400;
  padding: 10px;
  width: 150px;
  text-align: center;
}
.table-type-01 td {
  border: 1px solid #ccc;
  padding: 10px 20px;
  text-align: left;
}
@media screen and (max-width: 640px) {
  /*.last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }*/
  .table-type-01 {
    width: 80%;
  }
  .table-type-01 th, .table-type-01 td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .table-type-01 tr {
    border-bottom: 1px solid #ccc;
    display: block;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .sidebar.sticky-top {
    z-index: 990 !important;
  }
}
@media (max-width: 991px) {
  .sidebar.sticky-top {
    position: static !important;
  }
}
.small-txt {
  font-size: 14px;
}
/* リスト */
.list-point {
  list-style: none;
}
.list-point li {
  position: relative;
  padding: 0.1em 0 0.1em 1.5em;
}
.list-point li::before {
  content: '・';
  position: absolute;
  top: 28%;
  left: 0;
}
.list-icon-check {
  margin: 0 !important;
}
.list-icon-check li {
  position: relative;
  padding: 0.5em 0 0.5em 1.5em !important;
  line-height: 1.6;
  list-style: none;
  font-family: Arial, "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
}
.list-icon-check li:before {
  position: absolute;
  top: 11px;
  left: 0;
  content: '';
  display: block;
  background: var(--accent-color);
  border-radius: 50vh;
  width: 15px;
  height: 15px;
}
.list-icon-check li:after {
  position: absolute;
  top: 17px;
  transform: translateY(-50%) rotate(45deg);
  left: 5px;
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}
.list-ordered-num {
  margin: 0 !important;
  counter-reset: number-counter;
  padding-left: 0 !important;
}
.list-ordered-num li {
  position: relative;
  padding: 0.2em 0 0.2em 1em !important;
  line-height: 1.6;
  list-style: none;
  font-family: Arial, "Hiragino Sans", "Yu Gothic Medium", "Meiryo", sans-serif;
}
.list-ordered-num li:before {
  position: absolute;
  top: 4px;
  left: -7px;
  counter-increment: number-counter;
  content: counter(number-counter)".";
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}
/* swiper */
.swiper-pagination-bullet-active {
  background: var(--accent-color);
}
.mt-n1 {
  margin-top: -1px;
}
.pc-br {
  display: none;
}
@media screen and (min-width: 991px) {
  .pc-br {
    display: inline;
  }
}
/* 404 */
.error-section {
  padding: 100px 0;
  background-color: #EAF5F0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
.error-code {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: #e9a1a1;
  line-height: 1;
  margin-bottom: 20px;
}
.error-title {
  font-family: 'Kiwi Maru', sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  color: #333;
}
.error-text {
  margin-bottom: 40px;
  color: #666;
}