@charset "utf-8";
/* CSS Document */ :root {
  --navy: #1d3f94;
  --navy-deep: #040c48;
  --orange: #f3821e;
  --orange-deep: #e06f0f;
  --text: #000;
  --sub: #000;
  --line: #e3e6ee;
  --bg-soft: #f5f7fb;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Hiragino maru Gothic ProN W4", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "arial", "Meiryo", "MS PGothic", sans-serif !important;
  color: var(--text);
  line-height: 1.7;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.6;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
}
.section-title {
  text-align: center;
  font-size: 29px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 24px;
}
.section-title .deco {
  color: var(--orange);
  margin: 0 8px;
}
section {
  padding: 26px 0;
}
@media(max-width:880px) {
  section {
    padding: 40px 0;
  }
}
/* ---------- HEADER ---------- */
header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  max-width: 160px;
}
.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
.logo-text {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 11px;
  color: var(--sub);
  display: block;
}
.header-tagline {
  font-size: 13px;
  color: var(--sub);
  margin-left: 18px;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tel-block {
  text-align: right;
}
.tel-block .num {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: flex-end;
  white-space: nowrap;
}
.tel-block .hours {
  font-size: 12px;
  color: var(--sub);
  margin-top: 4px;
}
.hours .badge {
  background: var(--navy);
  color: #fff;
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 11px;
  margin-right: 6px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange);
  color: #fff;
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn small {
  display: block;
  font-size: 11px;
  font-weight: 400;
}
.header-cta {
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 10px 18px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.header-cta small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  margin-top: 2px;
}
.mobile-only {
  display: none;
}
.desktop-only {
  display: flex;
}
/* ---------- HERO ---------- */
.hero {
  padding: 15px 0;
  background-image: url(img/top/01.jpg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  text-shadow: 2px 2px 10px #fff, -2px 2px 10px #fff, 2px -2px 10px #fff, -2px -2px 10px #fff;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 800;
  color: var(--navy);
  margin: 6px 0 8px;
  text-shadow: 2px 2px 10px #fff, -2px 2px 10px #fff, 2px -2px 10px #fff, -2px -2px 10px #fff;
}
.hero h1 .accent {
  color: var(--orange);
}
.hero-desc {
  color: #000;
  font-size: 14px;
  margin: 18px 0 26px;
  text-shadow: 2px 2px 10px #fff, -2px 2px 10px #fff, 2px -2px 10px #fff, -2px -2px 10px #fff;
}
.hero-img {
  border-radius: 10px;
  overflow: hidden;
}
.hero-img .ph {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* ---------- SERVICES ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
}
.service-card .icon-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 12px;
}
.service-card .icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.service-card .ph {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  background: linear-gradient(135deg, #eef1f8, #dde3f0);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  font-size: 12px;
}
.service-card p {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 10px;
}
.service-card .more {
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
}
/* ---------- PRICING ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-note {
  text-align: center;
  color: var(--sub);
  font-size: 12px;
  margin-top: 18px;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  text-align: left;
  position: relative;
}
.price-card .name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 16px;
}
.price-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: 22px;
}
.price-card .desc {
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 0px;
}
.price-card .price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}
.price-card .price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
}
.price-card .extra {
  font-size: 11px;
  color: var(--sub);
  margin-top: 0px;
}
/* ---------- corporation ---------- */
.corporation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.corporation-note {
  text-align: center;
  color: var(--sub);
  font-size: 12px;
  margin-top: 18px;
}
.corporation-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  text-align: left;
  position: relative;
}
.corporation-card .name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 16px;
}
.corporation-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--navy);
  font-size: 22px;
}
.corporation-card .desc {
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 0px;
}
.corporation-card .price {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}
.corporation-card .price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--sub);
}
.corporation-card .extra {
  font-size: 11px;
  color: var(--sub);
  margin-top: 0px;
}
/* ---------- REASONS ---------- */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.reason-card {
  text-align: center;
  padding: 18px;
}
.reason-card .icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}
.reason-card .name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 15px;
}
.reason-card p {
  font-size: 12px;
  color: var(--sub);
}
/* ---------- FLOW ---------- */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
}
.flow-step {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  position: relative;
  text-align: center;
  background: #fff;
  margin: 0 8px;
}
.flow-step .num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
.flow-step .icon {
  font-size: 24px;
  color: var(--navy);
  margin: 10px 0;
}
.flow-step .name {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 14px;
}
.flow-step p {
  font-size: 12px;
  color: var(--sub);
}
.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 20px;
}
/* ---------- VOICE / NEWS ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}
.voice-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 16px;
}
.voice-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.avatar {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  min-width: 60px;
}
.avatar2 {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  min-width: 50px;
}
.avatar3 {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  max-width: 140px;
	min-width: 100px;
}
.voice-head .quote {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}
.voice-card p {
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 8px;
}
.voice-card .person {
  font-size: 12px;
  color: var(--sub);
  text-align: right;
}
.news-list {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.news-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.news-item a {
  display: flex;
  width: 100%;
}
.news-item a:hover {
  opacity: 0.5;
}
.news-item:last-child {
  border-bottom: none;
}
.news-item .date {
  color: var(--sub);
  min-width: 84px;
}
.news-item .title {
  flex: 1;
  color: var(--text);
}
.news-item .arrow {
  color: var(--navy);
}
.news-more {
  text-align: right;
  margin-top: 12px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
}
/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.faq-item .q {
  color: var(--navy);
  font-weight: 600;
}
.faq-item .q b {
  color: var(--orange);
  margin-right: 6px;
}
.faq-item .plus {
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
}
/* ---------- BOTTOM CTA ---------- */
.bottom-cta {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.bottom-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.bottom-cta .lead {
  font-size: 14px;
	display: flex;
  align-items: center;
  justify-content: space-between;
	gap: 20px;
}
.bottom-cta .lead .tel {
  font-size: 26px;
  font-weight: 800;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.bottom-cta .hours {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}
.free-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.free-badge .big {
  font-size: 23px;
  color: var(--orange);
  line-height: 23px;
}
.bottom-cta .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
/* ---------- FOOTER ---------- */
footer {
  background: #fff;
  color: #000;
  padding: 48px 0 24px;
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr 1fr;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-icon {
  background: #fff;
  color: var(--navy);
}
.footer-logo .logo-text {
  color: #fff;
}
footer .col-title {
  font-weight: 700;
  margin-bottom: 10px;
}
footer .col a, footer .col p {
  display: block;
  color: #000;
  margin-bottom: 8px;
}
.copyright {
  text-align: center;
  color: #000;
  font-size: 12px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.flow-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-right: 8px;
}
/* Voices + News */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media(min-width:1000px) {
  .two-col {
    grid-template-columns: 1.3fr 1fr;
  }
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media(min-width:700px) {
  .voice-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.voice-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.voice-top {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  flex-shrink: 0;
}
.voice-card p.body {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.voice-name {
  font-size: 11.5px;
  color: var(--muted);
}
.case-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}
.breadcumb-wrapper {
    background-color: var(--title-color);
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
    background-color: #D9D9D9;
}
.breadcumb-title {
    color: #fff;
    margin: -0.18em 0;
    line-height: 1.1;
    font-size: 40px;
    font-weight: bold;
}
.breadcumb-menu {
    max-width: 100%;
    padding: 0;
    margin: 19px 0 -0.5em 0;
    list-style-type: none;
    position: relative;
}
.breadcumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcumb-menu li {
    display: inline-block;
    margin-right: 3px;
    padding-right: 5px;
    list-style: none;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}
.background-image, [data-bg-src] {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.box01 {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0px;
}
.box02 {
  position: absolute;
  right: -16px;
  top: 50px;
}
.box03 {
      font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 16px;
	text-align: center;
}
.box04{
	font-size: 12px;
    color: var(--sub);
    margin-bottom: 0px;
	text-align: center;
}
.box05{
	font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 24px;
	text-align: center;
}
.box06{
	background: var(--navy);
    color: #fff;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    margin-right: 6px;
}
.box07{
	font-size: 12px;
    color: var(--sub);
    margin-bottom: 0px;
	text-align: center;
}
.box08{
	font-size: 15px;
	margin: 0 0 1.5em;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid var(--border-color);
}
@media(max-width:767px){
    .box08{
	font-size: 14px;
}
}
.box08 ul {
    padding-left: 20px;
	margin-bottom: 0px;
	
}
.box08 li {
    padding-bottom: 5px;
}
.box08 th {
    text-align: center;
    background-color: #063a93;
    color: white;
    padding: 10px 20px;
	font-size: 20px;
	border: 1px solid #ccc;
}
.box08 td {
    padding: 10px 20px;
	background-color: white;
	    border: 1px solid #ccc;
}
@media(max-width:767px){
    .box08 td {
    padding: 10px 10px;
	background-color: white;
}
}
.box09{
	text-align: center;
}
.box09 img{
	width: 100%;
	max-width: 232px;
	padding-bottom: 30px;
}
.box10{
	font-weight: bold;
	white-space: nowrap;
}
/* ===================== RESPONSIVE ===================== */
@media(max-width:880px) {
  .header-tagline, .tel-block, .header-cta {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  header.site {
    padding: 14px 0;
  }
  .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
  .logo-text {
    font-size: 20px;
  }
  .menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--navy);
    padding: 14px;
  }
  .menu-btn .bars {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .menu-btn .bars span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    display: block;
  }
  .call-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--navy);
  }
  .call-btn .circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }
  .hero {
    padding: 24px 0 0px 0px;
    background-size: 70%;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-eyebrow {
    font-size: 16px;
  }
  .hero h1 {
    font-size: 20px;
  }
  .hero-desc {
    font-size: 13px;
    margin: 35px 0 18px;
  }
  .hero-img .ph {
    display: none;
  }
  .cta-row {
    flex-direction: column;
  }
  .cta-row .btn {
    width: 100%;
  }
  .pill-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-top: 16px;
    padding-bottom: 4px;
  }
  .pill {
    flex: 1;
    min-width: 120px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
  }
  .pill .icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    color: var(--orange);
    font-size: 15px;
  }
  .pill .name {
    font-size: 11px;
    font-weight: 700;
    color: var(--navy);
  }
  .pill p {
    font-size: 10px;
    color: var(--sub);
    margin-top: 4px;
  }
  .section-title {
    font-size: 19px;
    margin-bottom: 20px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .price-grid, .reason-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
	.corporation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card, .price-card {
    padding: 14px;
  }
  .service-card .icon-row {
    font-size: 18px;
  }
  .reason-card {
    padding: 10px;
  }
  .reason-card .icon-circle {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .flow-step {
    margin: 0;
  }
  .flow-arrow {
    display: none;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .news-item {
    flex-wrap: wrap;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .bottom-cta .wrap {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .bottom-cta .actions {
    flex-direction: column;
    width: 100%;
  }
  .bottom-cta .actions .btn {
    width: 100%;
  }
  .free-badge {
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .avatar {
    min-width: 30px;
    margin: auto;
    max-width: 40px;
    margin-bottom: 15px;
  }
  .avatar img {
    display: inline-block;
    margin: auto;
  }
  .avatar2 {
    min-width: 40px;
    max-width: 44px;
  }
  .avatar2 img {
    display: inline-block;
    margin: auto;
  }
	.avatar3 {
    width: 100%;
    margin: auto;
    margin-bottom: 15px;
  }
  .avatar3 img {
    display: inline-block;
    margin: auto;
  }
	.case-tag {
    position: initial;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
}
  .box01 {
    display: inline-block;
    width: 100%;
  }
  .box02 {
    display: none;
  }
}
@media(max-width:520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media(min-width:700px) {
  .sp {
    display: none !important;
  }
}
@media(max-width:699px) {
  .pc {
    display: none !important;
  }
}


/* 必須 */
.faq-content {
  display: none;
	font-size: 14px;
}

/* 装飾用 */


.faq-item {
  background-color: #FFF;
  padding: 12px 20px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}


.faq-item::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.faq-item.active::after{transform:rotate(0deg);}

.faq-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
}

.faq-item span,
.faq-content span{
  
  position: relative;
}


/* hover */
.faq-item:hover {
  background-color: #F2F2F2;
}





/* ハンバーガーボタン */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
	z-index: 10000;
}

/* 三本線 */
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ナビゲーションメニュー */
.menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  padding-top: 80px;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
	z-index: 10;
}

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

.menu li {
  border-bottom: 1px solid #eee;
}

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

.menu a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
}

.menu a:hover {
  background-color: #f5f5f5;
}

/* メニュー表示時 */
.menu.is-active {
  right: 0;
}
/* アニメーション設定 */
.hamburger-menu span {
  transition: all 0.3s ease;
}

/* 1本目の線 */
.hamburger-menu.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

/* 2本目の線 */
.hamburger-menu.is-active span:nth-child(2) {
  opacity: 0;
}

/* 3本目の線 */
.hamburger-menu.is-active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.btn-orange2 {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 0px;
    border-radius: 8px;
	text-align: center;
	width: 100%;
	display:inline-block;
	margin-top: 5px;
}











/* 旧から */

.gmap {
height: 0;
overflow: hidden;
padding-bottom: 35%;
position: relative;
	margin-bottom: 40px;
}
@media (max-width: 768px) {
  .gmap {
height: 0;
overflow: hidden;
padding-bottom: 58%;
position: relative;
	
}
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
	
}
.header-logo h1{
	line-height: 1;
	margin-bottom: 0;
}
.txt01 {color: #063A93;}
.txt01:hover {color: #000;}
.txt02 {
    text-align: center;
    color: #063a93;
    font-size: 28px;
    font-weight: bold;
    padding-bottom: 25px;
}
.txt03 {
    text-align: center;
    color: #063a93;
    font-size: 17px;
    line-height: 28px;
    font-weight: bold;
    padding-bottom: 15px;
    padding-top: 15px;
}
.box001{
	text-align: center;
	padding-bottom: 34px;
}
.box001 img{
	width: 100%;
	max-width: 1920px;
}
.box002{
	margin-bottom: 30px;
}
.box002 .col-md-4{
	padding-bottom: 20px;
}
.box002 img{
	padding-bottom: 10px;
}
.box003{
	color: #FF9700;
}
.box004{
	background-color: #EEF5FF;
	padding-top: 50px;
	padding-bottom: 30px;
	margin-bottom: 50px;
}
.box005{
	font-size: 15px;
}
@media(max-width:767px){
    .box005{
	font-size: 14px;
}
}
.box005 ul {
    padding-left: 20px;
	margin-bottom: 0px;
	
}
.box005 li {
    padding-bottom: 5px;
}
.box005 th {
    text-align: center;
    background-color: #063a93;
    color: white;
    padding: 10px 20px;
	font-size: 20px;
}
.box005 td {
    padding: 10px 20px;
	background-color: white;
}
@media(max-width:767px){
    .box005 td {
    padding: 10px 10px;
	background-color: white;
}
}
.box006{
	text-align: center;
}
.box006 img{
	width: 100%;
	max-width: 232px;
	padding-bottom: 30px;
}
.box007{
	font-weight: bold;
	white-space: nowrap;
}
.box008{
    background-image: url(../img/007.jpg);
    text-align: center;
    font-size: 31px;
	line-height: 53px;
    font-weight: bold;
    color: white;
    padding: 100px 12px;
    background-size: cover;
	background-position: bottom;
	margin-bottom: 30px;
}
@media(max-width:767px){
    .box008{
    background-image: url(../img/007.jpg);
    text-align: center;
    font-size: 16px;
	line-height: 25px;
    font-weight: bold;
    color: white;
    padding: 80px 12px;
    background-size: cover;
	background-position: bottom;
}
}
.box009{
	color: #FFD00D;
}
.box010{
	background-color: #DB882D;
	margin-bottom: 30px;
}
@media(max-width:767px){
    .box010{
	padding: 40px 0px;
}
}
.box011{
	width: 100%;
	max-width: 301px !important;
}
.box012{
	text-align: center;
	font-size: 14px;
}
.box012 img{
	width: 100%;
	max-width: 318px;
padding-bottom: 20px;}
.box013{
	text-align: center;
	background-color: #063A93;
	color: white;
	margin-top: 30px;
	font-size: 13px;
	padding: 15px 0px;
}
.box014{
	width: 100%;
	max-width: 160px !important;}
.box015{
	background-color: #EEF5FF;
	padding-top: 50px;
	padding-bottom: 50px;
}
.box016{
	text-align: center;
}
.box016 img{
	width: 100%;
	max-width: 266px;
	padding-bottom: 30px;
}
.box017 ul{
  width:100%;
	padding-left: 0;
	padding-bottom: 25px;
}
.box017 li{
  border-bottom:1px solid #ccc;
  list-style:none;
}
.box017 a{
  text-decoration:none;
  display: block;
  padding: 10px 0;
}
.box017 a:hover{
  background-color:#BBC1FC;
}
.box017 span{
    color: #737373;
    vertical-align: middle;
    display: inline-block;
    margin-right: 10px;
}
.box017 p{
    color: #131313;
    display: inline-block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
.box18 {
    font-size: 21px;
    line-height: 38px;
    padding-bottom: 20px;
}
@media (max-width: 768px) {
	.box18{
	font-size: 16px;
	line-height: 25px;
}
}
.box19 {
    background-color: #f0f5fc;
    padding: 40px 0px;
    margin-bottom: 40px;
}
.box20 {text-align:center;
background-color: white;
}
.box20 th {text-align:center;
background-color: #063a93;
	color: white;
	padding: 10px 20px;
}
.box20 td {text-align:center;
	padding: 10px 30px;
}
@media (max-width: 768px) {
	.box20 td {text-align:center;
	padding: 10px 15px;
}
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}

.widget_nav_menu .menu,
.widget_nav_menu > ul,
.widget_meta .menu,
.widget_meta > ul,
.widget_pages .menu,
.widget_pages > ul,
.widget_archive .menu,
.widget_archive > ul,
.widget_categories .menu,
.widget_categories > ul {
  margin: -17px 0 0px 0;
}

.widget_nav_menu .menu > li:last-child a,
.widget_nav_menu > ul > li:last-child a,
.widget_meta .menu > li:last-child a,
.widget_meta > ul > li:last-child a,
.widget_pages .menu > li:last-child a,
.widget_pages > ul > li:last-child a,
.widget_archive .menu > li:last-child a,
.widget_archive > ul > li:last-child a,
.widget_categories .menu > li:last-child a,
.widget_categories > ul > li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  display: block;
  border: none;
  margin: 0;
  padding: 15px 25px 15px 0px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.313;
  color: var(--body-color);
  position: relative;
  border-bottom: 1px solid var(--border-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.widget_nav_menu a:before,
.widget_meta a:before,
.widget_pages a:before,
.widget_archive a:before,
.widget_categories a:before {
  content: '\f324';
  font-family: var(--icon-font);
  color: var(--body-color);
  font-weight: 400;
  position: absolute;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  left: 0;
}

.widget_nav_menu a:hover,
.widget_meta a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  color: var(--theme-color);
  padding-left: 25px;
}

.widget_nav_menu a:hover:before,
.widget_meta a:hover:before,
.widget_pages a:hover:before,
.widget_archive a:hover:before,
.widget_categories a:hover:before {
  color: var(--theme-color);
  opacity: 1;
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}

.widget_nav_menu li > span,
.widget_meta li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_categories li > span {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 13px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.widget_nav_menu li:hover > span,
.widget_meta li:hover > span,
.widget_pages li:hover > span,
.widget_archive li:hover > span,
.widget_categories li:hover > span {
  color: var(--theme-color);
}

.widget_nav_menu .children,
.widget_meta .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.wp-block-archives a:not(:hover) {
  color: inherit;
}

.th-blog ul.wp-block-archives li {
  margin: 5px 0;
}

.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: #F3F3F3;
  margin-bottom: 40px;
  position: relative;
}

.widget[data-overlay]:before {
  z-index: -1;
}

.widget .th-social a {
  box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}

.widget.no-banner-widget {
  padding: 0;
  background: transparent;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}

.widget .search-form {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: var(--white-color);
}

.widget .search-form input {
  background: var(--white-color);
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.widget .search-form button {
  position: absolute;
  right: 20px;
  top: 18px;
  border: none;
  font-size: 16px;
  background-color: transparent;
  color: var(--theme-color);
  display: inline-block;
  padding: 0;
  border-left: 1px solid var(--border-color);
  padding-left: 15px;
}

.widget .search-form button:hover {
  color: var(--title-color);
}

.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  border: 1px solid #CDCDCD;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body-font);
  text-transform: capitalize;
  line-height: 1;
  padding: 12px 17px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--body-color);
  background-color: transparent;
  border-radius: 2px;
}

.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
  border-color: var(--theme-color);
}

.wp-block-tag-cloud,
.tagcloud {
  margin-right: -10px;
  margin-bottom: -10px;
}

.recent-post {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 30px;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}

.recent-post .media-img {
  margin-right: 15px;
  width: 80px;
  overflow: hidden;
  border-radius: 0;
}

.recent-post .media-img img {
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.recent-post .post-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  font-family: var(--title-font);
  text-transform: capitalize;
}

.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  color: var(--body-color);
}

.recent-post .recent-post-meta a i {
  margin-right: 6px;
  color: var(--theme-color);
}

.recent-post .recent-post-meta a:hover {
  color: var(--theme-color);
}

.recent-post:hover .media-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.sidebar-area {
  margin-bottom: -10px;
}

.sidebar-area ul.wp-block-latest-posts {
  margin-bottom: 0;
}

.sidebar-area ul.wp-block-latest-posts li:last-child {
  margin-bottom: 0;
}

.sidebar-area select,
.sidebar-area input {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
}

.sidebar-area .widget .wp-block-search {
  margin-bottom: 0;
}

.sidebar-area .wp-block-group__inner-container h2 {
  font-size: 20px;
  line-height: 1em;
  margin-bottom: 20px;
  margin-top: -0.07em;
}

.sidebar-area ol.wp-block-latest-comments {
  padding: 0;
  margin: 0;
}

.sidebar-area ol.wp-block-latest-comments li {
  line-height: 1.5;
  margin: 0 0 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.sidebar-area ol.wp-block-latest-comments li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.author-widget-wrap {
  text-align: center;
}

.author-widget-wrap .avater {
  margin-bottom: 20px;
}

.author-widget-wrap .avater img {
  border-radius: 50%;
}

.author-widget-wrap .name {
  font-size: 24px;
  margin-bottom: 15px;
}

.author-widget-wrap .name a {
  color: inherit;
}

.author-widget-wrap .name a:hover {
  color: var(--theme-color);
}

.author-widget-wrap .author-bio {
  margin-bottom: 23px;
}

.author-widget-wrap .author-social {
  display: block;
}

.author-widget-wrap .author-social a {
  font-size: 16px;
  color: var(--body-color);
  position: relative;
  border-right: 1px solid var(--gray-color);
  padding: 6px 15px 6px 0;
  margin-right: 12px;
}

.author-widget-wrap .author-social a:last-child {
  padding: 6px 0 6px 0;
  margin-right: 0;
  border-right: none;
}

.author-widget-wrap .author-social a:hover {
  color: var(--theme-color);
}

.download-widget-wrap .th-btn {
  width: 100%;
  text-align: start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--title-font);
}

.download-widget-wrap .th-btn i {
  margin-left: auto;
  border-left: 1px solid rgba(18, 18, 18, 0.3);
  padding-left: 30px;
}

.download-widget-wrap .th-btn:hover i {
  border-color: rgba(255, 255, 255, 0.3);
}

.download-widget-wrap .th-btn:first-child {
  margin-bottom: 10px;
}

.download-widget-wrap .th-btn:first-child i {
  border-color: rgba(255, 255, 255, 0.3);
}

.widget_banner {
  background-color: var(--title-color);
  position: relative;
  padding: 50px 80px;
}

.widget_banner .widget_title {
  color: var(--white-color);
  line-height: 34px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_banner:has(.widget-map) {
  padding: 0;
  line-height: 0px;
}

.widget-map iframe {
  min-height: 280px;
}

.widget-banner .banner-text {
  margin-bottom: 23px;
  color: var(--light-color);
  margin-bottom: 5px;
}

.widget-banner .banner-link {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--white-color);
}

.widget-banner .banner-link i {
  color: var(--white-color);
  margin-right: 4px;
}

.widget-banner .banner-link:hover {
  color: var(--theme-color);
}

.widget-banner .banner-link:last-child {
  margin-bottom: -0.4em;
}

.widget-banner .th-btn {
  margin-top: 30px;
}

.widget_info .widget_title {
  margin: 29px 0 10px 0;
}

.widget_info .th-btn {
  width: 100%;
  margin-bottom: 10px;
  display: block;
}

.widget_info .th-video {
  margin-bottom: 20px;
}

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

.info-list i {
  color: var(--theme-color);
  width: 16px;
  margin-right: 2px;
  font-size: 16px;
}

.info-list strong {
  font-weight: 500;
  color: var(--title-color);
}

.info-list li {
  border-bottom: 1px dashed #D3DBEB;
  padding: 12px 0;
}

.info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: -0.45em;
}

.price_slider_wrapper {
  margin-top: -0.5em;
}

.price_slider_wrapper .price_label span {
  display: inline-block;
  color: var(--body-color);
}

.price_slider_wrapper .ui-slider {
  height: 6px;
  position: relative;
  width: 100%;
  background-color: var(--theme-color);
  border: none;
  margin-top: 15px;
  margin-bottom: 25px;
  cursor: pointer;
  border-radius: 0;
}

.price_slider_wrapper .ui-slider-range {
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  display: block;
  background-color: var(--title-color);
}

.price_slider_wrapper .ui-slider-handle {
  width: 16px;
  height: 16px;
  line-height: 16px;
  border-radius: 50%;
  text-align: center;
  padding: 0;
  cursor: pointer;
  position: absolute;
  margin-top: -5px;
  z-index: 2;
  background-color: var(--white-color);
  border: 3px solid var(--title-color);
  -webkit-transform: translateX(-1px);
      -ms-transform: translateX(-1px);
          transform: translateX(-1px);
}

.price_slider_wrapper .ui-slider-handle:focus {
  outline: none;
  box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15);
}

.price_slider_wrapper .ui-slider-handle:last-child {
  -webkit-transform: translateX(-9px);
      -ms-transform: translateX(-9px);
          transform: translateX(-9px);
}

.price_slider_wrapper button,
.price_slider_wrapper .button {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.6;
  text-transform: capitalize;
  text-align: center;
  border: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 6px 20px;
  min-width: 100px;
  font-size: 14px;
  -webkit-transition: 0.4s ease-in;
  transition: 0.4s ease-in;
}

.price_slider_wrapper button:hover,
.price_slider_wrapper .button:hover {
  background-color: var(--title-color);
}

.widget_shopping_cart .widget_title {
  margin-bottom: 30px;
  border-bottom: none;
}

.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}

.widget_shopping_cart ul li {
  list-style-type: none;
}

.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 30px 30px 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  text-align: left;
}

.widget_shopping_cart .mini_cart_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
}

.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--body-color);
}

.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme-color);
}

.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 18px;
}

.widget_shopping_cart .quantity {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
}

.widget_shopping_cart .total {
  margin-top: 20px;
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--body-font);
}

.widget_shopping_cart .total strong {
  font-family: var(--title-font);
}

.widget_shopping_cart .amount {
  padding-left: 5px;
}

.widget_shopping_cart .th-btn {
  margin-right: 15px;
}

.widget_shopping_cart .th-btn:last-child {
  margin-right: 0;
}

.sidebar-area .widget_shopping_cart .th-btn {
  margin-right: 10px;
  padding: 8px 22px;
  font-size: 14px;
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  padding: 10px;
}

.wp-block-calendar,
.calendar_wrap {
  position: relative;
  background-color: #fff;
  padding-bottom: 0;
  border: none;
}

.wp-block-calendar span[class*="wp-calendar-nav"],
.calendar_wrap span[class*="wp-calendar-nav"] {
  position: absolute;
  top: 9px;
  left: 20px;
  font-size: 14px;
  color: var(--white-color);
  font-weight: 400;
  z-index: 1;
  line-height: 1.7;
}

.wp-block-calendar span[class*="wp-calendar-nav"] a,
.calendar_wrap span[class*="wp-calendar-nav"] a {
  color: inherit;
}

.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
  left: auto;
  right: 20px;
}

.wp-block-calendar caption,
.calendar_wrap caption {
  caption-side: top;
  text-align: center;
  color: var(--white-color);
  background-color: var(--theme-color);
}

.wp-block-calendar th,
.calendar_wrap th {
  font-size: 14px;
  padding: 5px 5px;
  border: none;
  text-align: center;
  border-right: 1px solid #eee;
  color: var(--title-color);
  font-weight: 500;
}

.wp-block-calendar th:first-child,
.calendar_wrap th:first-child {
  border-left: 1px solid #eee;
}

.wp-block-calendar th:last-child,
.calendar_wrap th:last-child {
  border-right: 1px solid #eee;
}

.wp-block-calendar table th,
.calendar_wrap table th {
  font-weight: 500;
}

.wp-block-calendar td,
.calendar_wrap td {
  font-size: 14px;
  padding: 5px 5px;
  color: #01133c;
  border: 1px solid #eee;
  text-align: center;
  background-color: transparent;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.wp-block-calendar #today,
.calendar_wrap #today {
  color: var(--theme-color);
  background-color: var(--white-color);
  border-color: #ededed;
}

.wp-block-calendar thead,
.calendar_wrap thead {
  background-color: #fff;
}

.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}

.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
  display: none;
}

.wp-block-calendar a,
.calendar_wrap a {
  color: inherit;
  text-decoration: none;
}

.wp-block-calendar a:hover,
.calendar_wrap a:hover {
  color: var(--title-color);
}

/***wp-calender***/
.wp-block-calendar {
  margin-bottom: 30px;
  border: none;
  padding-bottom: 0;
}

.wp-block-calendar table caption {
  color: var(--white-color);
}

/********widget_recent_comments********/
.widget_recent_comments ul,
.wp-block-latest-comments ul {
  list-style-type: none;
  padding-left: 0;
}

ul.widget_recent_comments,
ol.widget_recent_comments,
.wp-block-latest-comments {
  margin-top: -0.11em;
  padding-left: 0;
}

.widget_recent_comments ol,
.widget_recent_comments ul,
.wp-block-latest-comments ol,
.wp-block-latest-comments ul {
  margin-bottom: 0;
}

.widget_recent_comments li,
.wp-block-latest-comments li {
  margin-bottom: 0;
  color: var(--body-color);
  padding-left: 30px;
  position: relative;
}

.widget_recent_comments li:before,
.wp-block-latest-comments li:before {
  content: "\f086";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--theme-color);
  font-family: var(--icon-font);
}

.widget_recent_comments.has-avatars li,
.wp-block-latest-comments.has-avatars li {
  padding-left: 0;
  padding-bottom: 0 !important;
}

.widget_recent_comments.has-avatars li:before,
.wp-block-latest-comments.has-avatars li:before {
  display: none;
}

.widget_recent_comments .avatar,
.wp-block-latest-comments .avatar {
  margin-top: 0.4em;
}

.widget_recent_comments li:not(:last-child),
.wp-block-latest-comments li:not(:last-child) {
  padding-bottom: 12px;
}

.widget_recent_comments article,
.wp-block-latest-comments article {
  line-height: 1.5;
}

.widget_recent_comments a,
.wp-block-latest-comments a {
  color: inherit;
}

.widget_recent_comments a:hover,
.wp-block-latest-comments a:hover {
  color: var(--theme-color);
}

/******widget_recent_entries******/
.widget_recent_entries ul {
  margin: -0.3em 0 0 0;
  padding: 0;
  list-style: none;
}

.widget_recent_entries ul li > a {
  color: var(--body-color);
  font-weight: 500;
  display: inline-block;
}

.widget_recent_entries ul li > a:hover {
  color: var(--theme-color);
}

.widget_recent_entries ul li span.post-date {
  font-size: 14px;
}

.widget_recent_entries ul li:not(:last-child) {
  border-bottom: 1px solid #dadada;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

/*******widget_rss*******/
ul.widget_rss, ul.wp-block-rss,
ol.widget_rss,
ol.wp-block-rss {
  padding-left: 0;
}

.widget_rss,
.wp-block-rss {
  list-style-type: none;
}

.widget_rss ul,
.wp-block-rss ul {
  margin: -0.2em 0 -0.5em 0;
  padding: 0;
  list-style: none;
}

.widget_rss ul .rsswidget,
.wp-block-rss ul .rsswidget {
  color: var(--title-color);
  font-family: var(--theme-font);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}

.widget_rss ul .rssSummary,
.wp-block-rss ul .rssSummary {
  font-size: 14px;
  margin-bottom: 7px;
  line-height: 1.5;
}

.widget_rss ul a,
.wp-block-rss ul a {
  display: block;
  font-weight: 600;
  color: inherit;
}

.widget_rss ul a:hover,
.wp-block-rss ul a:hover {
  color: var(--theme-color);
}

.widget_rss ul .rss-date,
.wp-block-rss ul .rss-date {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 400;
  color: var(--title-color);
}

.widget_rss ul .rss-date:before,
.wp-block-rss ul .rss-date:before {
  content: "\f073";
  font-family: var(--icon-font);
  margin-right: 10px;
  font-weight: 300;
  color: var(--theme-color);
}

.widget_rss ul cite,
.wp-block-rss ul cite {
  font-weight: 500;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
}

.widget_rss ul cite:before,
.wp-block-rss ul cite:before {
  content: "";
  position: relative;
  top: -1px;
  left: 0;
  width: 20px;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background-color: var(--theme-color);
}

.widget_rss li:not(:last-child),
.wp-block-rss li:not(:last-child) {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}

.widget_rss a:hover,
.wp-block-rss a:hover {
  color: var(--theme-color);
}

/*****widget-text*****/
.textwidget {
  margin-top: -0.1em;
}

@media (max-width: 1200px) {
  .widget_banner {
    padding: 50px 40px;
  }
}

@media (min-width: 992px) {
  .sidebar-shop .widget {
    margin-bottom: 24px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_banner {
    padding: 30px 30px 40px;
  }
  .widget_title {
    font-size: 22px;
    margin: -0.12em 0 24px 0;
  }
  .author-widget-wrap .name {
    font-size: 22px;
  }
  .download-widget-wrap .th-btn {
    font-size: 14px;
  }
  .download-widget-wrap .th-btn i {
    border-left: 1px solid rgba(18, 18, 18, 0.3);
    padding-left: 15px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
  .wp-block-tag-cloud a,
  .tagcloud a {
    padding: 10.5px 18px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .widget {
    padding: 35px 20px;
  }
}

@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
}

.footer-widget {
  margin-bottom: 50px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.footer-widget input,
.footer-widget select {
  height: 55px;
  background-color: transparent;
  border: 1px solid #283752;
}

.footer-widget input:focus,
.footer-widget select:focus {
  border-color: var(--theme-color);
  background-color: transparent;
}

.footer-widget .form-group > i {
  color: var(--theme-color);
  top: 18px;
}

.footer-widget .widget_title {
  max-width: 270px;
  font-size: 24px;
  font-weight: 700;
  color: var(--white-color);
  border-bottom: none;
  margin: 0.15em 0 35px 0;
}

.footer-widget.widget_meta, .footer-widget.widget_pages, .footer-widget.widget_archive, .footer-widget.widget_categories, .footer-widget.widget_nav_menu {
  min-width: 126px;
}

.footer-widget.widget_meta ul, .footer-widget.widget_pages ul, .footer-widget.widget_archive ul, .footer-widget.widget_categories ul, .footer-widget.widget_nav_menu ul {
  margin-top: -5px;
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta > ul, .footer-widget.widget_pages .menu,
.footer-widget.widget_pages > ul, .footer-widget.widget_archive .menu,
.footer-widget.widget_archive > ul, .footer-widget.widget_categories .menu,
.footer-widget.widget_categories > ul, .footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -5px;
}

.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  margin-bottom: 21px;
  font-family: var(--body-font);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--light-color);
  padding-right: 0;
  background-color: transparent;
  border-bottom: none;
  position: relative;
}

.footer-widget.widget_meta a:before, .footer-widget.widget_pages a:before, .footer-widget.widget_archive a:before, .footer-widget.widget_categories a:before, .footer-widget.widget_nav_menu a:before {
  content: "\f101";
  font-weight: 600;
  left: 0;
  top: 2px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  font-size: 0.9em;
  background-color: transparent;
  color: var(--theme-color);
  border: none;
  opacity: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
  padding-left: 20px;
}

.footer-widget.widget_meta a:hover:before, .footer-widget.widget_pages a:hover:before, .footer-widget.widget_archive a:hover:before, .footer-widget.widget_categories a:hover:before, .footer-widget.widget_nav_menu a:hover:before {
  opacity: 1;
}

.footer-widget.widget_meta li > span, .footer-widget.widget_pages li > span, .footer-widget.widget_archive li > span, .footer-widget.widget_categories li > span, .footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget .recent-post {
  max-width: 300px;
  margin-top: -0.3em;
  margin-bottom: 28px;
  border: 0;
  padding-bottom: 0;
}

.footer-widget .recent-post .post-title {
  color: var(--white-color);
  font-size: 16px;
  margin-bottom: 0;
}

.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-widget .recent-post .recent-post-meta {
  margin-bottom: 5px;
}

.footer-widget .recent-post .recent-post-meta a {
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1.2;
  color: var(--light-color);
}

.footer-widget .recent-post .recent-post-meta i {
  color: var(--theme-color);
}

.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}

.th-widget-about .about-logo {
  margin-bottom: 24px;
}

.th-widget-about .about-text {
  margin-bottom: 25px;
  margin-top: -0.5em;
  color: #CDCDCD;
}

/*------------------- 4.6. Blog  -------------------*/
blockquote,
.wp-block-quote {
  font-size: 18px;
  line-height: 1.56;
  padding: 40px;
  font-weight: 500;
  display: block;
  position: relative;
  background-color: var(--smoke-color);
  overflow: hidden;
  margin: 35px 0;
  color: var(--title-color);
  font-style: italic;
  border-radius: 0;
}

blockquote p,
.wp-block-quote p {
  font-size: 22px;
  font-family: var(--body-font);
  font-weight: 400;
  font-style: normal;
  margin-top: -0.3em;
  margin-bottom: 30px;
  line-height: 34px;
  color: var(--title-color);
  width: 100%;
  position: relative;
  z-index: 3;
}

blockquote p a,
.wp-block-quote p a {
  color: inherit;
}

blockquote:before,
.wp-block-quote:before {
  content: "\f10e";
  font-family: var(--icon-font);
  position: absolute;
  right: 40px;
  bottom: 30px;
  font-size: 5rem;
  font-weight: 400;
  opacity: 1;
  line-height: 3.8rem;
  color: var(--title-color);
  opacity: 0.1;
  font-style: normal;
}

blockquote cite,
.wp-block-quote cite {
  display: inline-block;
  font-size: 18px;
  position: relative;
  border-color: inherit;
  line-height: 1;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: -0.1em;
  font-style: normal;
  font-family: var(--title-font);
  padding-left: 50px;
  margin-left: 10px;
}

blockquote cite:before,
.wp-block-quote cite:before {
  content: "";
  height: 3px;
  width: 50px;
  background-color: var(--title-color);
  position: absolute;
  bottom: 8px;
  left: -10px;
}

blockquote.style-left-icon, blockquote.is-large, blockquote.is-style-large, blockquote.has-text-align-right,
.wp-block-quote.style-left-icon,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote.has-text-align-right {
  padding: 50px;
}

blockquote.style-left-icon,
.wp-block-quote.style-left-icon {
  font-size: 18px;
  color: var(--body-color);
  font-weight: 400;
  line-height: 1.556;
  background-color: var(--smoke-color);
  padding-left: 160px;
}

blockquote.style-left-icon:before,
.wp-block-quote.style-left-icon:before {
  right: unset;
  left: 56px;
  top: 60px;
  font-size: 6rem;
  font-weight: 400;
  line-height: 4rem;
  color: var(--theme-color);
  text-shadow: none;
}

blockquote.style-left-icon cite,
.wp-block-quote.style-left-icon cite {
  color: var(--title-color);
}

blockquote.style-left-icon cite:before,
.wp-block-quote.style-left-icon cite:before {
  background-color: var(--title-color);
  top: 8px;
}

blockquote.is-large cite:before, blockquote.is-style-large cite:before,
.wp-block-quote.is-large cite:before,
.wp-block-quote.is-style-large cite:before {
  top: unset;
  bottom: 13px;
}

blockquote.has-text-align-right:before,
.wp-block-quote.has-text-align-right:before {
  content: "\f10d";
  right: unset;
  left: 40px;
}

.wp-block-pullquote {
  color: var(--body-color);
  padding: 0;
}

.wp-block-quote.is-large:where(:not(.is-style-plain)) cite, .wp-block-quote.is-large:where(:not(.is-style-plain)) footer, .wp-block-quote.is-style-large:where(:not(.is-style-plain)) cite, .wp-block-quote.is-style-large:where(:not(.is-style-plain)) footer {
  text-align: left;
}

blockquote.has-very-dark-gray-color {
  color: var(--body-color) !important;
}

.wp-block-column blockquote,
.wp-block-column .wp-block-quote {
  padding: 100px 15px 30px 15px;
}

.wp-block-column blockquote:before,
.wp-block-column .wp-block-quote:before {
  width: 100%;
  height: 60px;
  font-size: 30px;
}

.wp-block-column blockquote.style-left-icon, .wp-block-column blockquote.is-large:not(.is-style-plain), .wp-block-column blockquote.is-style-large:not(.is-style-plain), .wp-block-column blockquote.has-text-align-right,
.wp-block-column .wp-block-quote.style-left-icon,
.wp-block-column .wp-block-quote.is-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.is-style-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.has-text-align-right {
  padding: 100px 15px 30px 15px;
}

.blog-meta {
  display: block;
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  font-size: 16px;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--body-color);
  position: relative;
  margin-right: 25px;
}

.blog-meta span i,
.blog-meta a i {
  margin-right: 10px;
  color: var(--theme-color);
}

.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
  padding-right: 0;
}

.blog-meta span:last-child:after,
.blog-meta a:last-child:after {
  display: none;
}

.blog-meta a:hover {
  color: var(--theme-color);
}

.blog-audio img,
.blog-img img,
.blog-video img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.blog-title a {
  color: inherit;
}

.blog-title a:hover {
  color: var(--theme-color);
}

.th-blog {
  margin-bottom: 30px;
}

.blog-inner-title {
  margin-top: -0.25em;
  margin-bottom: 35px;
}

.blog-inner-title i {
  color: var(--theme-color);
  margin-right: 4px;
}

@media (min-width: 1300px) {
  .page-single,
  .blog-single,
  .th-comments-wrap,
  .th-comment-form {
    margin-right: 16px;
  }
}

.blog-single {
  position: relative;
  margin-bottom: var(--blog-space-y, 40px);
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 0;
  overflow: hidden;
}

.blog-single .blog-title {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
}

.blog-single .blog-text {
  margin-bottom: 27px;
}

.blog-single .social-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-block;
}

.blog-single .social-links li {
  display: inline-block;
  margin-right: 3px;
}

.blog-single .social-links li:last-child {
  margin-right: 0;
}

.blog-single .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--smoke-color);
  font-size: 14px;
  color: var(--body-color);
  text-align: center;
}

.blog-single .social-links a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.blog-single .blog-meta {
  margin: -0.35em 0 10px 0;
}

.blog-single .blog-content {
  margin: 0 0 0 0;
  padding: 40px;
  position: relative;
}

.blog-single .blog-audio {
  line-height: 1;
}

.blog-single .blog-audio,
.blog-single .blog-img,
.blog-single .blog-video {
  position: relative;
  overflow: hidden;
  background-color: var(--smoke-color);
}

.blog-single .blog-img .slick-arrow {
  --pos-x: 30px;
  border: none;
  background-color: var(--white-color);
  color: var(--theme-color);
}

.blog-single .blog-img .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.blog-single .blog-img .play-btn {
  --icon-size: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}

.blog-single .line-btn {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: -1px;
}

.blog-single:hover .blog-img .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.share-links-title {
  font-size: 20px;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 700;
  margin: 0 0 15px 0;
  display: block;
}

.share-links {
  margin: 0 var(--blog-space-x, 40px) var(--blog-space-y, 0px) var(--blog-space-x, 40px);
}

.share-links > .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  --bs-gutter-y: 20px;
}

.share-links .wp-block-tag-cloud,
.share-links .tagcloud {
  display: inline-block;
}

.share-links .project-details-nav {
  margin-top: 40px;
  border-bottom: 0;
}

.share-links .project-details-nav li .thumb img {
  width: 80px;
}

.blog-details .blog-single {
  background-color: transparent;
  margin-bottom: 30px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-single .blog-content {
    padding: 40px 30px;
  }
  .blog-single .blog-title {
    font-size: 28px;
  }
  .share-links {
    --blog-space-x: 30px;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  blockquote,
  .wp-block-quote {
    font-size: 18px;
    padding: 40px 20px 40px 20px;
  }
  blockquote:before,
  .wp-block-quote:before {
    font-size: 4rem;
    line-height: 2.5rem;
  }
  blockquote.style-left-icon, blockquote.is-large:not(.is-style-plain), blockquote.is-style-large:not(.is-style-plain), blockquote.has-text-align-right,
  .wp-block-quote.style-left-icon,
  .wp-block-quote.is-large:not(.is-style-plain),
  .wp-block-quote.is-style-large:not(.is-style-plain),
  .wp-block-quote.has-text-align-right {
    padding: 40px 20px 40px 20px;
  }
  .blog-meta span,
  .blog-meta a {
    margin-right: 6px;
    padding-right: 15px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .share-links {
    --blog-space-x: 20px;
  }
  .wp-block-pullquote.is-style-solid-color blockquote {
    max-width: 90%;
  }
  blockquote cite,
  .wp-block-quote cite {
    font-size: 18px;
  }
  .blog-meta span,
  .blog-meta a {
    margin-right: 6px;
    padding-right: 6px;
  }
  .blog-meta span:after,
  .blog-meta a:after {
    display: none;
  }
  .blog-details .blog-single {
    --blog-space-x: 20px;
    --blog-space-y: 20px;
  }
  .blog-single .blog-content {
    padding: 30px 20px;
  }
  .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .blog-single .blog-text {
    margin-bottom: 22px;
  }
  .blog-single .blog-bottom {
    padding-top: 15px;
  }
  .blog-single .share-links-title {
    font-size: 18px;
    display: block;
    margin: 0 0 10px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .blog-meta span,
  .blog-meta a {
    margin-right: 5px;
    padding-right: 5px;
    margin-bottom: 5px;
  }
  .blog-meta span:after,
  .blog-meta a:after {
    display: none;
  }
  blockquote p,
  .wp-block-quote p {
    font-size: 18px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .share-links .project-details-nav li .project-details-bar-icon {
    display: none;
  }
}

.alignleft {
  display: inline;
  float: left;
  margin-bottom: 10px;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-bottom: 10px;
  margin-left: 1.5em;
  margin-right: 1em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}