@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: 80px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #191919;
  -webkit-font-smoothing: antialiased;
  min-width: 1280px;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    min-width: auto;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.container.is-medium {
  max-width: 1140px;
}
.container.is-narrow {
  max-width: 1040px;
}

.site-main section {
  overflow: hidden; /*英語タイトルはみださせるため*/
}
@media (max-width: 768px) {
  .site-main {
    padding-top: 60px;
  }
}

@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .site-header {
    display: none;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 40px;
}

.header-logo {
  flex-shrink: 0;
  margin-right: auto;
}
.header-logo a {
  display: block;
}
.header-logo img {
  width: 240px;
  height: auto;
}

.global-nav {
  flex-shrink: 0;
  margin-right: 20px;
}

.gnav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gnav-item {
  position: relative;
}

.gnav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #191919;
  font-weight: 500;
  padding: 10px 10px;
  cursor: pointer;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.gnav-link i {
  font-size: 10px;
  color: #264C96;
  transition: transform 0.3s ease;
}

a.gnav-link:hover,
.gnav-item:hover > .gnav-link {
  color: #264C96;
}

.gnav-item:hover .gnav-link i {
  transform: rotate(180deg);
}

.gnav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 140px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.3s ease;
  z-index: 100;
}
.gnav-item:hover .gnav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gnav-dropdown li {
  border-bottom: 1px solid #E5E5E5;
}
.gnav-dropdown li:last-child {
  border-bottom: none;
}
.gnav-dropdown li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #191919;
  transition: all 0.3s ease;
}
.gnav-dropdown li a:hover {
  background: #EFF2F4;
  color: #264C96;
}

.header-info {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-tel {
  line-height: 1.3;
}

.header-tel-top {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-tel-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

.header-tel-number {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.header-tel-hours {
  display: block;
  font-size: 13px;
  color: #191919;
  text-align: center;
}

.header-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 170px;
  height: 55px;
  padding: 0;
  background: #264C96;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.header-contact-btn:hover {
  opacity: 0.7;
}

.sp-header {
  display: none;
}
@media (max-width: 768px) {
  .sp-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}

.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}

.sp-header-logo img {
  width: 196px;
  height: auto;
}

.hamburger {
  width: 27px;
  height: 21px;
  position: relative;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: #264C96;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.is-active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  bottom: 9px;
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  z-index: 900;
  pointer-events: none;
}
.drawer.is-open {
  pointer-events: auto;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer.is-open .drawer-overlay {
  opacity: 1;
}

.drawer-body {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 280px;
  width: 85%;
  height: 100%;
  background: rgba(38, 76, 150, 0.95);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.drawer.is-open .drawer-body {
  transform: translateX(0);
}

.drawer-nav {
  flex: none;
}

.drawer-list {
  border-top: none;
}

.drawer-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: transparent;
  text-align: left;
}

a.drawer-link {
  transition: opacity 0.3s ease;
}
a.drawer-link:hover {
  opacity: 0.7;
}

.drawer-accordion-toggle i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.drawer-accordion-toggle.is-open i {
  transform: rotate(180deg);
}

.drawer-sub {
  display: none;
  background: rgba(63, 102, 178, 0.95);
}
.drawer-sub li a {
  display: block;
  padding: 12px 20px 12px 36px;
  font-size: 16px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s ease;
}
.drawer-sub li a:hover {
  opacity: 0.7;
}

.drawer-footer {
  padding: 25px 20px;
  text-align: center;
}

.drawer-tel {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.drawer-tel-label {
  font-size: 16px;
}

.drawer-tel-note {
  font-size: 14px;
  color: #fff;
  margin-top: 2px;
}

.drawer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 210px;
  margin: 20px auto 0;
  padding: 14px 20px;
  background: #fff;
  color: #264C96;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}
.drawer-contact-btn:hover {
  opacity: 0.7;
}

.page-header {
  position: relative;
  height: 220px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-header {
    height: 140px;
  }
}

.page-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.2);
  pointer-events: none;
}

.page-header-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 0 40px rgba(25, 25, 25, 0.4);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .page-header-title {
    font-size: 25px;
  }
}

.site-footer {
  background: #fff;
  color: #191919;
  padding: 100px 0;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-info {
  flex-shrink: 0;
}

.footer-logo {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .footer-logo {
    margin-bottom: 16px;
  }
}
.footer-logo img {
  width: 320px;
  height: auto;
}
@media (max-width: 768px) {
  .footer-logo img {
    width: 268px;
  }
}

.footer-address {
  font-size: 14px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .footer-address-building {
    display: inline-block;
  }
}

.footer-tel {
  font-size: 14px;
}
.footer-tel a {
  color: #191919;
}

.footer-nav {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer-nav {
    display: none;
  }
}

.footer-nav-col {
  min-width: 200px;
}
.footer-nav-col ul {
  margin-top: 8px;
}
.footer-nav-col li {
  margin-top: 8px;
}
.footer-nav-col a {
  display: block;
  font-size: 14px;
  color: #191919;
  transition: color 0.3s ease;
}
.footer-nav-col a:hover {
  color: #264C96;
}

.footer-nav-heading {
  font-size: 14px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid #E5E5E5;
}

.footer-nav-col--arrow ul {
  margin-top: 0;
}
.footer-nav-col--arrow li {
  margin-top: 0;
  border-bottom: 1px solid #E5E5E5;
}
.footer-nav-col--arrow a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-weight: 700;
}
.footer-nav-col--arrow a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/arrow_b.svg") no-repeat center/contain;
  flex-shrink: 0;
}

.footer-bottom {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer-bottom {
    margin-top: 0;
    padding-top: 50px;
  }
}

.copyright {
  text-align: right;
}
@media (max-width: 768px) {
  .copyright {
    text-align: center;
  }
}
.copyright {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: #888;
}

.mv {
  position: relative;
  overflow: hidden;
}

.mv-inner {
  position: relative;
}
.mv-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.15);
  pointer-events: none;
}

.mv-img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .mv-img {
    height: 600px;
  }
}

.mv-text {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  color: #fff;
  text-align: right;
  z-index: 1;
}
@media (max-width: 768px) {
  .mv-text {
    right: auto;
    text-align: center;
    transform: none;
    top: 60px;
    width: 100%;
  }
}

.mv-catch {
  position: relative;
  right: -0.5em;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 0 0 40px rgba(25, 25, 25, 0.4);
}
@media (max-width: 768px) {
  .mv-catch {
    font-size: 28px;
    width: calc(100% - 0.5em);
  }
}
.mv-catch-sm {
  font-size: 40px;
}
@media (max-width: 768px) {
  .mv-catch-sm {
    font-size: 24px;
  }
}

.mv-sub {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 0 40px rgba(25, 25, 25, 0.4);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .mv-sub {
    font-size: 14px;
    margin-top: 16px;
  }
}

.sec-intro {
  padding: 110px 0;
}
@media (max-width: 768px) {
  .sec-intro {
    padding: 50px 0 60px;
  }
}

.intro-wrap {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 768px) {
  .intro-wrap {
    flex-direction: column;
    gap: 30px;
  }
}

.intro-text {
  flex: 1;
}

.intro-heading {
  font-size: 30px;
  font-weight: 700;
  color: #264C96;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .intro-heading {
    font-size: 25px;
    margin-bottom: 30px;
    line-height: 1.8;
  }
}

.intro-body {
  line-height: 2;
}
.intro-body + .intro-body {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .intro-body + .intro-body {
    margin-top: 30px;
  }
}

.intro-img {
  flex-shrink: 0;
  width: 480px;
}
@media (max-width: 768px) {
  .intro-img {
    width: 100%;
  }
}
.intro-img img {
  width: 100%;
  height: auto;
}

.sec-about {
  position: relative;
  background: url("../img/top_about_bg.jpg") no-repeat center/cover;
  padding: 60px 0 80px;
  text-align: center;
}
.sec-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 25, 25, 0.2);
}
.sec-about .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-about {
    padding: 40px 0;
  }
}
.sec-about-en {
  font-family: "Poppins", sans-serif;
  font-size: 150px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .sec-about-en {
    font-size: 70px;
  }
}
.sec-about-label {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sec-about-label {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.about-cards {
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .about-cards {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-height: 200px;
  justify-content: center;
  padding: 24px 16px;
  background: #fff;
  border: 4px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.about-card:hover {
  border-color: #264C96;
  background: #EFF2F4;
}
@media (max-width: 768px) {
  .about-card {
    flex: none;
    width: calc(33.333% - 8px);
    min-height: auto;
    padding: 16px 8px;
    gap: 8px;
  }
}
.about-card-icon {
  width: 70px;
  height: 70px;
}
@media (max-width: 768px) {
  .about-card-icon {
    width: 50px;
    height: 50px;
  }
}
.about-card-icon img {
  width: 100%;
  height: 100%;
}
.about-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #191919;
}
@media (max-width: 768px) {
  .about-card-title {
    font-size: 13px;
  }
}

.sec-network {
  padding: 60px 0 80px;
  background: #EFF2F4;
  text-align: center;
}
@media (max-width: 768px) {
  .sec-network {
    padding: 40px 0;
  }
}

.sec-heading {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .sec-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.network-inner {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  padding: 50px 70px;
}
@media (max-width: 768px) {
  .network-inner {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
  }
}

.network-number {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .network-number {
    justify-content: center;
  }
}

.network-label {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .network-label {
    font-size: 26px;
  }
}

.network-note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  text-align: right;
  margin: 0 0 5px;
}
@media (max-width: 768px) {
  .network-note {
    font-size: 11px;
  }
}

.network-count {
  font-size: 44px;
  font-weight: 700;
  color: #264C96;
  line-height: 1;
}
@media (max-width: 768px) {
  .network-count {
    font-size: 32px;
  }
}
.network-count-num {
  font-family: "Poppins", sans-serif;
  font-size: 98px;
  font-weight: 700;
  margin: 0 0.05em 0 0;
}
@media (max-width: 768px) {
  .network-count-num {
    font-size: 80px;
  }
}

.network-btns {
  display: flex;
  gap: 30px;
  margin-left: auto;
}
@media (max-width: 768px) {
  .network-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-left: 0;
  }
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 320px;
  min-height: 80px;
  padding: 0 24px;
  background: #EFF2F4;
  color: #191919;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .btn-outline {
    min-width: 0;
    width: 100%;
    min-height: 56px;
  }
}
.btn-outline-arrow {
  font-size: 18px;
  color: #264C96;
  font-weight: 700;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  padding: 0;
  background: #264C96;
  color: #fff;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.3s ease;
  font-size: 16px;
}
.btn-primary:hover {
  opacity: 0.7;
}
.btn-primary-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: auto;
  margin-left: 0;
}

.sec-report {
  padding: 100px 0 110px;
  background: #fff;
}
@media (max-width: 768px) {
  .sec-report {
    padding: 50px 0 60px;
  }
}

.report-tabs {
  display: flex;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .report-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    flex-wrap: nowrap;
  }
}

.report-tab {
  flex: 1;
  padding: 12px 8px;
  font-weight: 700;
  color: #191919;
  background: transparent;
  border: none;
  border-bottom: 6px solid #14A0DF;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .report-tab {
    flex: none;
    padding: 10px 5px;
    font-size: 14px;
    border-bottom: 3px solid #E5E5E5;
    border-radius: 0;
  }
}
.report-tab.is-active {
  background: #EFF2F4;
  border-bottom-color: transparent;
  color: #14A0DF;
}
@media (max-width: 768px) {
  .report-tab.is-active {
    background: transparent;
    border-bottom-color: #14A0DF;
    color: #14A0DF;
  }
}
.report-tab:hover {
  color: #14A0DF;
}
.report-tab[style] {
  border-bottom-color: var(--tab-color, #E5E5E5);
}
@media (max-width: 768px) {
  .report-tab[style] {
    border-bottom-color: #E5E5E5;
  }
}
.report-tab[style].is-active {
  background: #EFF2F4;
  border-bottom-color: transparent;
  color: var(--tab-color, #E5E5E5);
}
@media (max-width: 768px) {
  .report-tab[style].is-active {
    background: transparent;
    border-bottom-color: var(--tab-color, #E5E5E5);
  }
}
.report-tab[style]:hover {
  color: var(--tab-color, #E5E5E5);
}

.report-list {
  background: #EFF2F4;
  padding: 30px 40px 40px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .report-list {
    background: transparent;
    padding: 0;
  }
}

.report-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #fff;
  transition: opacity 0.3s ease;
}
.report-item:last-of-type {
  border-bottom: none;
}
.report-item:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .report-item {
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #E5E5E5;
  }
  .report-item:first-of-type {
    border-top: 1px solid #E5E5E5;
  }
  .report-item:last-of-type {
    border-bottom: 1px solid #E5E5E5;
  }
}

.report-icon {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 5px;
}
@media (max-width: 768px) {
  .report-icon {
    width: 70px;
    height: 58px;
    background: rgba(239, 242, 244, 0.4);
  }
}
.report-icon img {
  width: auto;
  height: 100%;
}
.report-icon--thumb {
  overflow: hidden;
}
.report-icon--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.report-meta {
  flex-shrink: 0;
  width: 80px;
}

.report-date {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #191919;
  line-height: 1.2;
  display: block;
  margin-bottom: 6px;
}

.report-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.report-cat-tag {
  display: block;
  width: 6.7em;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border-radius: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .report-cat-tag {
    font-size: 11px;
  }
}

.report-sp-info {
  display: none;
}
@media (max-width: 768px) {
  .report-sp-info {
    display: block;
    flex: 1;
    min-width: 0;
  }
}

.report-title {
  font-size: 14px;
  color: #191919;
}
@media (max-width: 768px) {
  .report-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 5px;
    line-height: 1.4;
    font-size: 13px;
  }
}

.report-more {
  text-align: center;
  padding-top: 20px;
}

.sec-title {
  position: relative;
  text-align: center;
  z-index: 0;
  margin: 0 0 60px;
}
@media (max-width: 768px) {
  .sec-title {
    margin: 0 0 25px;
  }
}

.sec-title + * {
  position: relative;
  z-index: 1;
}

.sec-title-en {
  font-family: "Poppins", sans-serif;
  font-size: 170px;
  font-weight: 700;
  color: #EFF2F4;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  display: block;
  width: fit-content;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .sec-title-en {
    font-size: 70px;
  }
}

.sec-title-en--white {
  color: rgba(255, 255, 255, 0.8);
}

.sec-title .sec-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sec-title .sec-heading {
    font-size: 20px;
  }
}

.sec-philosophy {
  padding: 60px 0 110px;
}
@media (max-width: 768px) {
  .sec-philosophy {
    padding: 40px 0 60px;
  }
}

.philosophy-content {
  text-align: center;
}

.philosophy-heading {
  font-size: 35px;
  font-weight: 700;
  color: #264C96;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .philosophy-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.philosophy-body {
  margin-bottom: 40px;
}
.philosophy-body:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .philosophy-body {
    text-align: left;
    margin: 0 0 30px;
  }
}

.philosophy-subheading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .philosophy-subheading {
    font-size: 16px;
    text-align: left;
    margin-bottom: 20px;
  }
}

.sec-message {
  background: #EFF2F4 url("../img/about_message_bg.png") no-repeat center bottom/100% auto;
  padding: 70px 0 380px;
}
@media (max-width: 768px) {
  .sec-message {
    padding: 40px 0 200px;
    background-size: 120%;
  }
}

.message-box {
  background: #fff;
  padding: 60px 70px 30px;
}
@media (max-width: 768px) {
  .message-box {
    padding: 30px 20px 20px;
  }
}

.message-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .message-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.message-body {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .message-body {
    margin-bottom: 20px;
  }
}
.message-body + .message-heading {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .message-body + .message-heading {
    margin-top: 30px;
  }
}

.message-sign {
  text-align: right;
  margin-top: 30px;
}
.message-sign-org {
  font-size: 13px;
}
.message-sign-name {
  font-size: 18px;
  font-weight: 700;
}

.sec-overview {
  padding: 60px 0 110px;
}
@media (max-width: 768px) {
  .sec-overview {
    padding: 40px 0 60px;
  }
}

.overview-wrap {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .overview-wrap {
    flex-direction: column;
    gap: 40px;
  }
}

.overview-info {
  flex: 1;
}

.overview-business {
  flex-shrink: 0;
  width: 340px;
}
@media (max-width: 768px) {
  .overview-business {
    width: 100%;
  }
}

.overview-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .overview-heading {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.overview-dl {
  width: 100%;
}
.overview-dl-row {
  display: flex;
}
.overview-dl-row dt {
  flex-shrink: 0;
  width: 7em;
  font-weight: 700;
  padding: 15px 30px 15px 0;
}
@media (max-width: 768px) {
  .overview-dl-row dt {
    padding: 12px 20px 12px 0;
  }
}
.overview-dl-row dd {
  padding: 15px 0 15px 30px;
  border-left: 1px solid #E5E5E5;
}
@media (max-width: 768px) {
  .overview-dl-row dd {
    padding: 12px 0 12px 20px;
  }
}

.overview-business-lead {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .overview-business-lead {
    margin-bottom: 16px;
  }
}

.overview-business-list {
  line-height: 2;
}
.overview-business-list li {
  padding-left: 1em;
  position: relative;
}
.overview-business-list li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.sec-history {
  background: #EFF2F4;
  padding: 70px 0 110px;
}
@media (max-width: 768px) {
  .sec-history {
    padding: 40px 0 60px;
  }
}

.history-intro {
  margin-bottom: 60px;
}
.history-intro p + p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .history-intro {
    margin-bottom: 40px;
  }
  .history-intro p + p {
    margin-top: 20px;
  }
}

.history-subheading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .history-subheading {
    font-size: 18px;
  }
}

.history-timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding: 0 0 30px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 125px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #264C96;
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 120px;
  top: 8px;
  width: 11px;
  height: 11px;
  background: #264C96;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .timeline-item {
    padding-bottom: 24px;
  }
  .timeline-item::before {
    left: 105px;
  }
  .timeline-item::after {
    left: 100px;
  }
}

.timeline-date {
  flex-shrink: 0;
  width: 7em;
  font-weight: 700;
  color: #264C96;
}
@media (max-width: 768px) {
  .timeline-date {
    font-size: 14px;
  }
}

.timeline-content {
  margin-left: 50px;
}
@media (max-width: 768px) {
  .timeline-content {
    margin-left: 30px;
    font-size: 14px;
  }
}

.sec-org-intro {
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .sec-org-intro {
    padding: 40px 0 50px;
  }
}

.org-intro-text {
  font-size: 16px;
  text-align: center;
}
@media (max-width: 768px) {
  .org-intro-text {
    font-size: 14px;
    text-align: left;
  }
}

.sec-org-chart {
  background: #EFF2F4;
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .sec-org-chart {
    padding: 40px 0 50px;
  }
}

.org-chart-heading {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .org-chart-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.org-chart-img {
  background: #fff;
  padding: 40px;
  text-align: center;
}
.org-chart-img img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .org-chart-img {
    padding: 16px;
  }
}

.sec-board-members {
  padding: 70px 0 110px;
}
@media (max-width: 768px) {
  .sec-board-members {
    padding: 40px 0 60px;
  }
  .sec-board-members .sec-title {
    margin-bottom: 40px;
  }
}

.board-table {
  width: 600px;
  margin: 0 auto;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .board-table {
    width: 100%;
    font-size: 13px;
  }
}
.board-table th, .board-table td {
  padding: 16px 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .board-table th, .board-table td {
    padding: 12px 10px;
  }
}
.board-table thead tr {
  background: #5079A3;
  border-radius: 5px 5px 0 0;
}
.board-table thead tr th {
  color: #fff;
  font-weight: 700;
}
.board-table thead tr th:first-child {
  border-radius: 5px 0 0 0;
}
.board-table thead tr th:last-child {
  border-radius: 0 5px 0 0;
}
.board-table tbody tr:nth-child(even) {
  background: #EFF2F4;
}

.sec-member {
  padding: 60px 0 110px;
}
@media (max-width: 768px) {
  .sec-member {
    padding: 40px 0 60px;
  }
}

.sec-heading-note {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  margin: -0.5em 0 0;
}

.member-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 0;
}
@media (max-width: 768px) {
  .member-list {
    grid-template-columns: 1fr;
    border-left: none;
  }
}

.member-card {
  padding: 20px 30px;
  border-right: 1px solid #E5E5E5;
}
.member-card:nth-child(3n) {
  border-right: none;
}
.member-card:nth-child(3n+1) {
  padding-left: 0;
}
.member-card:nth-child(3n) {
  padding-right: 0;
}
@media (max-width: 768px) {
  .member-card {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
  }
  .member-card:nth-child(3n) {
    padding-right: 0;
  }
  .member-card:nth-child(3n+1) {
    padding-left: 0;
  }
  .member-card:last-child {
    border-bottom: none;
  }
}

.member-name {
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .member-name {
    font-size: 14px;
  }
}
.member-name a {
  color: #264C96;
}
.member-name a:hover {
  opacity: 0.7;
}
.member-name a i {
  font-size: 12px;
  margin-left: 4px;
}

.member-tel {
  font-family: "Poppins", sans-serif;
}

.sec-member-map {
  background: #EFF2F4;
  padding: 70px 0 110px;
}
@media (max-width: 768px) {
  .sec-member-map {
    padding: 40px 0 60px;
  }
}

.member-map-heading {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .member-map-heading {
    font-size: 20px;
  }
}

.member-map-legend {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .member-map-legend {
    flex-wrap: wrap;
  }
}
.member-map-legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.member-map-legend-item img {
  width: 20px;
  height: auto;
}

#map-canvas {
  width: 100%;
  border-radius: 0;
}
@media (max-width: 768px) {
  #map-canvas {
    height: 350px;
  }
}

.sec-efforts {
  padding: 90px 0 110px;
}
@media (max-width: 768px) {
  .sec-efforts {
    padding: 40px 0 50px;
  }
}

.efforts-item {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-bottom: 70px;
}
.efforts-item--reverse {
  flex-direction: row-reverse;
}
.efforts-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .efforts-item {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
  .efforts-item--reverse {
    flex-direction: column;
  }
}

.efforts-text {
  flex: 1;
}
.efforts-text p + p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .efforts-text p + p {
    margin-top: 20px;
  }
}

.efforts-heading {
  font-size: 25px;
  font-weight: 700;
  color: #264C96;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .efforts-heading {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
}

.efforts-num {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .efforts-num {
    font-size: 24px;
  }
}

.efforts-img {
  flex-shrink: 0;
  width: 550px;
}
.efforts-img img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .efforts-img {
    width: 100%;
  }
}

.sec-efforts-message {
  padding: 0 0 100px;
}
@media (max-width: 768px) {
  .sec-efforts-message {
    padding: 0 0 60px;
  }
}

.efforts-message-box {
  position: relative;
  background: #EFF2F4;
  padding: 60px 40px 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .efforts-message-box {
    padding: 40px 20px 50px;
  }
}
.efforts-message-box::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid #264C96;
  pointer-events: none;
}
@media (max-width: 768px) {
  .efforts-message-box::after {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

.efforts-message-heading {
  font-size: 35px;
  font-weight: 700;
  color: #264C96;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .efforts-message-heading {
    font-size: 22px;
  }
}

.efforts-message-body {
  font-size: 16px;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .efforts-message-body {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
}

.sec-archive-report {
  padding: 60px 0 110px;
}
@media (max-width: 768px) {
  .sec-archive-report {
    padding: 40px 0 60px;
  }
}

.archive-report-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .archive-report-heading {
    font-size: 18px;
  }
}

.archive-report-current {
  margin-bottom: 20px;
  font-weight: 700;
}

.archive-report-list .report-item {
  border-top: 1px solid #E5E5E5;
  transition: background 0.3s ease;
}
.archive-report-list .report-item:last-child {
  border-bottom: 1px solid #E5E5E5;
}
.archive-report-list .report-item {
  padding-left: 12px;
  padding-right: 12px;
}
.archive-report-list .report-item:hover {
  background: #EFF2F4;
  opacity: 1;
}
.archive-report-list .report-item .report-icon {
  background: rgba(239, 242, 244, 0.4);
  transition: background 0.3s ease;
}
.archive-report-list .report-item:hover .report-icon {
  background: rgba(255, 255, 255, 0.7);
}

.archive-report-empty {
  padding: 40px 0;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .pagination {
    gap: 6px;
    margin-top: 40px;
  }
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.pagination a {
  color: #191919;
  background: #EFF2F4;
}
.pagination a:hover {
  opacity: 0.7;
}
.pagination .current {
  background: #264C96;
  color: #fff;
}
.pagination .dots {
  background: none;
  min-width: auto;
}
.pagination .prev, .pagination .next {
  font-size: 12px;
}

.sec-single-report {
  padding: 60px 0 110px;
}
@media (max-width: 768px) {
  .sec-single-report {
    padding: 30px 0 60px;
  }
}

.single-report-wrap {
  display: flex;
  gap: 90px;
}
@media (max-width: 768px) {
  .single-report-wrap {
    flex-direction: column;
    gap: 40px;
  }
}

.report-sidebar {
  flex-shrink: 0;
  width: 250px;
  order: -1;
}
@media (max-width: 768px) {
  .report-sidebar {
    width: 100%;
    order: 1;
  }
}

.sidebar-section {
  margin-bottom: 40px;
}

.sidebar-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .sidebar-heading {
    font-size: 16px;
  }
}

.sidebar-post {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 8px;
  border-bottom: 1px solid #E5E5E5;
  transition: background 0.3s ease;
}
.sidebar-post:first-of-type {
  border-top: 1px solid #E5E5E5;
}
.sidebar-post:hover {
  background: #EFF2F4;
}

.sidebar-post-icon {
  flex-shrink: 0;
  width: 70px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 242, 244, 0.4);
  border-radius: 5px;
  overflow: hidden;
  transition: background 0.3s ease;
}
.sidebar-post-icon img {
  width: auto;
  height: 100%;
}
.sidebar-post-icon--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post:hover .sidebar-post-icon {
  background: rgba(255, 255, 255, 0.7);
}

.sidebar-post-info {
  flex: 1;
  min-width: 0;
}
.sidebar-post-info .report-cat-tag {
  font-size: 11px;
}

.sidebar-post-title {
  font-size: 13px;
  margin-top: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-cat-list li {
  border-bottom: 1px solid #E5E5E5;
}
.sidebar-cat-list li:first-child {
  border-top: 1px solid #E5E5E5;
}
.sidebar-cat-list a {
  display: block;
  padding: 14px 8px;
  color: #191919;
  transition: background 0.3s ease;
}
.sidebar-cat-list a:hover {
  background: #EFF2F4;
}

.report-main {
  flex: 1;
  min-width: 0;
}

.report-main-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.report-main-header .report-date {
  margin: 0;
}
@media (max-width: 768px) {
  .report-main-header .report-date {
    font-size: 14px;
  }
}
.report-main-header .report-cats {
  flex-direction: row;
}

.report-main-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .report-main-title {
    font-size: 18px;
  }
}

.report-main-thumb {
  margin-bottom: 40px;
}
.report-main-thumb img {
  width: 100%;
  height: auto;
}

.report-main-content {
  margin-bottom: 60px;
}
.report-main-content h2, .report-main-content h3, .report-main-content h4 {
  font-weight: 700;
  margin: 2.5em 0 1.5em;
}
@media (max-width: 768px) {
  .report-main-content h2, .report-main-content h3, .report-main-content h4 {
    margin: 2em 0 1em;
  }
}
.report-main-content h2 {
  font-size: 20px;
  background: #EFF2F4;
  border-left: 4px solid #264C96;
  padding: 12px 16px;
}
@media (max-width: 768px) {
  .report-main-content h2 {
    font-size: 18px;
    padding: 10px 14px;
  }
}
.report-main-content h3 {
  font-size: 18px;
}
.report-main-content p {
  margin-bottom: 1.5em;
}
.report-main-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .report-main-content p {
    margin-bottom: 1em;
  }
}
.report-main-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
.report-main-content ul, .report-main-content ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}
.report-main-content ul {
  list-style: disc;
}
.report-main-content ol {
  list-style: decimal;
}
.report-main-content li {
  margin-bottom: 0.5em;
}
.report-main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.report-main-content table th, .report-main-content table td {
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  text-align: left;
}
@media (max-width: 768px) {
  .report-main-content table th, .report-main-content table td {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.report-main-content table th {
  background: #EFF2F4;
  font-weight: 700;
}
.report-main-content blockquote {
  margin: 1.5em 0;
  padding: 20px 24px;
  background: rgba(239, 242, 244, 0.5);
  font-style: italic;
}
@media (max-width: 768px) {
  .report-main-content blockquote {
    padding: 16px 20px;
  }
}
.report-main-content blockquote p {
  margin-bottom: 0;
}

.report-main-content a {
  color: #264C96;
  text-decoration: underline;
}
.report-main-content a:hover {
  opacity: 0.7;
}

.report-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 768px) {
  .report-nav {
    padding-top: 30px;
  }
}

.report-nav-prev,
.report-nav-next {
  min-width: 20px;
  display: flex;
  align-items: center;
}
.report-nav-prev a,
.report-nav-next a {
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.report-nav-prev a:hover,
.report-nav-next a:hover {
  opacity: 0.7;
}

.report-nav-arrow {
  width: 20px;
  height: auto;
}

.report-nav-list {
  color: #264C96;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.report-nav-list:hover {
  opacity: 0.7;
}

.sec-access {
  padding: 60px 0 110px;
}
@media (max-width: 768px) {
  .sec-access {
    padding: 40px 0 60px;
  }
}

.access-intro {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .access-intro {
    font-size: 14px;
    text-align: left;
    margin-bottom: 20px;
  }
}

.access-map {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .access-map {
    margin-bottom: 30px;
  }
}
.access-map iframe {
  width: 100%;
  height: 500px;
  display: block;
}
@media (max-width: 768px) {
  .access-map iframe {
    height: 300px;
  }
}

.access-info {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .access-info {
    margin-bottom: 20px;
  }
}
.access-info-row {
  display: flex;
  padding: 10px 0;
}
.access-info-row dt {
  flex-shrink: 0;
  width: 80px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .access-info-row {
    flex-direction: column;
  }
  .access-info-row dt {
    width: auto;
    margin-bottom: 4px;
  }
}

.access-note {
  padding-top: 40px;
  border-top: 1px solid #E5E5E5;
}
@media (max-width: 768px) {
  .access-note {
    padding-top: 20px;
  }
}
.access-note a {
  color: #264C96;
  text-decoration: underline;
}
.access-note a:hover {
  opacity: 0.7;
}
.access-note p + p {
  margin-top: 16px;
}

.sec-contact {
  padding: 70px 0 110px;
}
@media (max-width: 768px) {
  .sec-contact {
    padding: 40px 0 60px;
  }
}

.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}
.contact-intro p + p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .contact-intro {
    text-align: left;
    margin-bottom: 30px;
  }
  .contact-intro p + p {
    margin-top: 20px;
  }
}

.contact-form-wrap {
  background: #EFF2F4;
  padding: 60px 80px;
}
@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 30px 20px;
  }
}

.contact-form-heading {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact-form-heading {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.wpcf7-form {
  max-width: 700px;
  margin: 0 auto;
}
.wpcf7-form p {
  margin-bottom: 24px;
}

.cf7-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cf7-required {
  display: inline-block;
  background: #C41A2E;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  line-height: 1.4;
}

.cf7-note {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

.wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-family: inherit;
  font-size: inherit;
  background: #fff;
  transition: border-color 0.3s ease;
}
.wpcf7-form-control:focus {
  outline: none;
  border-color: #264C96;
}

.wpcf7-textarea {
  min-height: 200px;
  resize: vertical;
}

.cf7-submit-wrap {
  text-align: center;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cf7-submit-wrap {
    margin-top: 30px;
  }
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 50px;
  padding: 0 30px;
  background: #264C96 url("../img/arrow_w.svg") no-repeat right 16px center/20px auto;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.wpcf7-submit:hover {
  opacity: 0.7;
}

.wpcf7-spinner {
  position: absolute !important;
}

.wpcf7-not-valid-tip {
  color: #C41A2E;
  font-size: 13px;
  margin-top: 6px;
}

.wpcf7-response-output {
  text-align: center;
  padding: 16px;
  margin-top: 20px;
  border-radius: 4px;
}

.sec-thanks {
  padding: 80px 0 110px;
}
@media (max-width: 768px) {
  .sec-thanks {
    padding: 40px 0 60px;
  }
}

.thanks-content {
  text-align: center;
}
.thanks-content p + p {
  margin-top: 24px;
}

.thanks-heading {
  font-size: 24px;
  font-weight: 700;
  color: #264C96;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .thanks-heading {
    font-size: 20px;
  }
}

.thanks-btn {
  margin-top: 50px;
}

.sec-404 {
  padding: 70px 0 110px;
}
.sec-404 .sec-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sec-404 {
    padding: 40px 0 60px;
  }
}

.not-found-content {
  text-align: center;
}
.not-found-content p + p {
  margin-top: 24px;
}

.not-found-btn {
  margin-top: 50px;
}/*# sourceMappingURL=style.css.map */