@charset "UTF-8";
:root {
  --primary-color: #1e2453;
  --header-height: 90px;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

.sp-br {
  display: none;
}

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

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
#splash.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
#splash img {
  height: 50px;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
#splash img.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #fff;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo img {
  height: 40px;
  display: block;
  position: relative;
  z-index: 102;
}

.drawer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}

.global-nav {
  margin-right: 40px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-nav li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.global-nav a {
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.global-nav a:hover {
  opacity: 0.6;
}

.header-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 40px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-outline {
  border: 1px solid #1e2453;
  color: #1e2453;
  background: #fff;
}
.btn-outline:hover {
  background: #1e2453;
  color: #fff;
}
.btn-solid {
  background: #1e2453;
  color: #fff;
  border: 1px solid #1e2453;
}
.btn-solid:hover {
  opacity: 0.8;
}

.hamburger {
  display: none;
}

.nav-item--dropdown {
  position: static;
}
.nav-item--dropdown:hover > .mega-menu, .nav-item--dropdown.is-open > .mega-menu {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.nav-link--parent {
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nav-link--parent::after {
  content: "▾";
  font-size: 9px;
  opacity: 0.7;
}
.nav-link--parent:hover {
  opacity: 0.6;
}

.mega-menu {
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  z-index: 200;
  opacity: 0;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.mega-menu__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.mega-menu__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: block;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.mega-menu__item:hover {
  opacity: 0.8;
}
.mega-menu__item:hover .mega-menu__img img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.mega-menu__img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 3px;
  background: #e0e0e0;
}
.mega-menu__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.mega-menu__img--placeholder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #bbb;
  font-size: 11px;
}
.mega-menu__en {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: #999;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.mega-menu__ja {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

@media screen and (max-width: 1024px) {
  .global-nav {
    display: block !important;
    -ms-flex-item-align: auto;
        align-self: auto;
    width: 100%;
  }
  .global-nav ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    width: 100%;
  }
  .global-nav li {
    height: auto;
    display: block !important;
    width: 100%;
  }
  .nav-item--dropdown {
    display: block !important;
    width: 100%;
  }
  .nav-link--parent {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    width: 100%;
    gap: 0;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    cursor: pointer;
  }
  .nav-link--parent:hover {
    background: #fafafa;
    opacity: 1;
  }
  .nav-link--parent::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: #bbb;
    line-height: 1;
    display: inline !important;
  }
  .nav-item--dropdown.is-mobile-open > .nav-link--parent::after {
    content: "−";
    color: #1e2453;
  }
  .nav-item--dropdown > .mega-menu {
    position: static;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    pointer-events: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
    background: #fafafa;
    -webkit-transition: none;
    transition: none;
    display: none;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
  .nav-item--dropdown.is-mobile-open > .mega-menu {
    display: block;
  }
  .mega-menu__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 0;
    max-width: none;
    width: 100%;
  }
  .mega-menu__img {
    display: none;
  }
  .mega-menu__en {
    display: none;
  }
  .mega-menu__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100% !important;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 24px 15px 44px !important;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #efefef;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-decoration: none;
  }
  .mega-menu__item:last-child {
    border-bottom: none;
  }
  .mega-menu__item:hover {
    background: #f0f0f0;
    opacity: 1;
  }
  .mega-menu__item::after {
    content: "›";
    font-size: 18px;
    color: #bbb;
    font-weight: 300;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto;
  }
  .mega-menu__ja {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: left;
  }
}
.footer {
  background: #333;
  color: #fff;
  padding: 60px 40px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 30px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-info p {
  font-size: 12px;
  line-height: 1.8;
  color: #aaa;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.footer-nav a {
  font-size: 13px;
  color: #ccc;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #fff;
}

.copyright {
  text-align: center;
  font-size: 10px;
  color: #777;
  border-top: 1px solid #444;
  padding-top: 20px;
}

.fv {
  position: relative;
  margin-top: 90px;
  height: calc(100vh - 90px);
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
}

.video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.fv-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.fv-title {
  font-size: 96px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: 50px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.fv-subtitle {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.en-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.05em;
  letter-spacing: 0.05em;
  margin-left: 0.2em;
}

.section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 60px;
}
.section-header.text-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 70px;
  font-weight: 100;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #292929;
}

.section-subtitle {
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.btn-view-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 0 40px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
}
.btn-view-more:hover {
  background: #1e2453;
  color: #fff;
  border-color: #1e2453;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service {
  padding-top: 120px;
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.service-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.service-img {
  width: 50%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-text {
  width: 50%;
  padding: 0 60px;
}

.service-cat {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.service-h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.service-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.service-link {
  font-size: 13px;
  font-weight: 700;
  color: #1e2453;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
}

.works {
  background: #fafafa;
  max-width: 100%;
}

.works-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.works-card {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.works-card:hover {
  opacity: 0.8;
}

.works-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 20px;
}

.works-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.works-label {
  font-size: 11px;
  border: 1px solid #ccc;
  padding: 4px 12px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.works-title {
  font-size: 16px;
  font-weight: 700;
}

.works-cat {
  font-size: 12px;
  color: #888;
}

.media-card img {
  width: 100%;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.media-card p {
  font-size: 13px;
  font-weight: 700;
  margin-top: 15px;
  text-align: center;
}

.event-card {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.event-card:hover {
  opacity: 0.8;
}

.event-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 15px;
}

.event-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.event-date {
  font-size: 12px;
  color: #888;
}

.group-card {
  display: block;
  border: 1px solid #eee;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.group-card:hover {
  opacity: 0.8;
}

.group-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.group-info {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.group-name {
  font-size: 16px;
  font-weight: 700;
}

.news-list {
  border-top: 1px solid #eee;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.news-item:hover {
  background: #fdfdfd;
}

.news-date {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #666;
  width: 120px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-cat {
  font-size: 11px;
  padding: 4px 12px;
  background: #eee;
  border-radius: 2px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-title {
  font-size: 15px;
  font-weight: 500;
}

.banner-area {
  max-width: 1000px;
  margin: 60px auto 100px;
  padding: 0 40px;
}
.banner-area img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact {
  position: relative;
  padding: 120px 40px;
  margin-top: 80px;
  background: url("../image/top/footer-back.webp") no-repeat center center/cover;
  text-align: center;
}
.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 70px;
  font-weight: 100;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 10px;
}

.contact-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.82);
  padding: 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.contact-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.contact-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-catalog-img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  margin: 15px 0;
}

.contact-btn {
  background: #e69d24;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  width: 80%;
  display: block;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.contact-btn:hover {
  opacity: 0.85;
}

.contact-card--consult {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 40px 35px;
}

.consult-badge {
  display: inline-block;
  background: #1e2453;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.consult-title {
  font-size: 22px;
  font-weight: 700;
  color: #292929;
  line-height: 1.4;
  margin-bottom: 12px;
}

.consult-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.consult-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.consult-tel__icon {
  font-size: 22px;
  color: #1e2453;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.consult-tel__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.consult-tel__number {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1e2453;
  letter-spacing: 0.05em;
}
.consult-tel__time {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}

.consult-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}

.consult-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.consult-btn:hover {
  opacity: 0.85;
  -webkit-transform: none;
          transform: none;
}
.consult-btn__label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.consult-btn__arrow {
  font-size: 16px;
  opacity: 0.8;
}
.consult-btn--line {
  background: #06c755;
}
.consult-btn--web {
  background: #555;
}

.consult-btn-line-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: #06c755;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.5px;
}

.consult-btn-web-icon {
  font-size: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.9;
}

@media screen and (max-width: 1024px) {
  #splash img {
    height: 35px;
  }
  .sp-br {
    display: block;
  }
  .header-inner {
    padding: 0 16px;
  }
  .logo img {
    height: 28px;
    max-width: calc(100vw - 80px);
  }
  .drawer-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 101;
    overflow-y: auto;
  }
  .header.open .drawer-menu {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .global-nav {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
    border-top: 1px solid #ebebeb;
  }
  .global-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    text-align: left;
  }
  .global-nav li:not(.nav-item--dropdown) {
    border-bottom: 1px solid #ebebeb;
  }
  .global-nav li:not(.nav-item--dropdown) a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    width: 100%;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
  }
  .global-nav li:not(.nav-item--dropdown) a:hover {
    background: #fafafa;
    opacity: 1;
  }
  .global-nav li:not(.nav-item--dropdown) a::after {
    content: "›";
    font-size: 20px;
    color: #bbb;
    font-weight: 300;
    line-height: 1;
  }
  .global-nav li.nav-item--dropdown {
    border-bottom: 1px solid #ebebeb;
  }
  .header-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding: 24px 20px;
    margin-top: auto;
    border-top: 1px solid #ebebeb;
  }
  .header-btns .btn {
    width: 100%;
    max-width: 360px;
    -ms-flex-item-align: center;
        align-self: center;
    height: 50px;
    font-size: 14px;
  }
  .hamburger {
    display: block;
    margin-left: auto;
    width: 30px;
    height: 22px;
    position: relative;
    z-index: 102;
    background: none;
    border: none;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #1e2453;
    position: absolute;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 10px;
  }
  .hamburger span:nth-child(3) {
    bottom: 0;
  }
  .header.open .hamburger span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
            transform: translateY(10px) rotate(45deg);
  }
  .header.open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .header.open .hamburger span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
            transform: translateY(-10px) rotate(-45deg);
  }
  .fv-title {
    font-size: 60px;
    margin-bottom: 24px;
    margin-left: 30px;
    letter-spacing: 0;
  }
  .fv-subtitle {
    font-size: 16px;
    line-height: 1.6;
  }
  .en-text {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
  .section-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 36px;
  }
  .service-item,
  .service-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-img,
  .service-text {
    width: 100%;
  }
  .service-text {
    padding: 30px 0;
  }
  .works-grid,
  .grid-3,
  .grid-2,
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .news-date {
    width: auto;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .footer-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
.page-service .bg-light,
.page-media .bg-light,
.page-event .bg-light,
.page-company .bg-light,
.page-news .bg-light,
.page-privacy .bg-light,
.page-catalog .bg-light,
.page-contact .bg-light,
.page-recruit .bg-light {
  background-color: #fafafa;
}
.page-service .text-center,
.page-media .text-center,
.page-event .text-center,
.page-company .text-center,
.page-news .text-center,
.page-privacy .text-center,
.page-catalog .text-center,
.page-contact .text-center,
.page-recruit .text-center {
  text-align: center;
}
.page-service .text-center .section-title-wrap,
.page-media .text-center .section-title-wrap,
.page-event .text-center .section-title-wrap,
.page-company .text-center .section-title-wrap,
.page-news .text-center .section-title-wrap,
.page-privacy .text-center .section-title-wrap,
.page-catalog .text-center .section-title-wrap,
.page-contact .text-center .section-title-wrap,
.page-recruit .text-center .section-title-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-service .page-fv,
.page-media .page-fv,
.page-event .page-fv,
.page-company .page-fv,
.page-news .page-fv,
.page-privacy .page-fv,
.page-catalog .page-fv,
.page-contact .page-fv,
.page-recruit .page-fv {
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 90px;
}
.page-service .page-fv__overlay,
.page-media .page-fv__overlay,
.page-event .page-fv__overlay,
.page-company .page-fv__overlay,
.page-news .page-fv__overlay,
.page-privacy .page-fv__overlay,
.page-catalog .page-fv__overlay,
.page-contact .page-fv__overlay,
.page-recruit .page-fv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.page-service .page-fv__content,
.page-media .page-fv__content,
.page-event .page-fv__content,
.page-company .page-fv__content,
.page-news .page-fv__content,
.page-privacy .page-fv__content,
.page-catalog .page-fv__content,
.page-contact .page-fv__content,
.page-recruit .page-fv__content {
  position: relative;
  z-index: 2;
}
.page-service .page-fv__title,
.page-media .page-fv__title,
.page-event .page-fv__title,
.page-company .page-fv__title,
.page-news .page-fv__title,
.page-privacy .page-fv__title,
.page-catalog .page-fv__title,
.page-contact .page-fv__title,
.page-recruit .page-fv__title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.page-service .page-fv__subtitle,
.page-media .page-fv__subtitle,
.page-event .page-fv__subtitle,
.page-company .page-fv__subtitle,
.page-news .page-fv__subtitle,
.page-privacy .page-fv__subtitle,
.page-catalog .page-fv__subtitle,
.page-contact .page-fv__subtitle,
.page-recruit .page-fv__subtitle {
  font-size: 16px;
  letter-spacing: 0.1em;
}
.page-service .concept__inner,
.page-media .concept__inner,
.page-event .concept__inner,
.page-company .concept__inner,
.page-news .concept__inner,
.page-privacy .concept__inner,
.page-catalog .concept__inner,
.page-contact .concept__inner,
.page-recruit .concept__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-service .concept__catch,
.page-media .concept__catch,
.page-event .concept__catch,
.page-company .concept__catch,
.page-news .concept__catch,
.page-privacy .concept__catch,
.page-catalog .concept__catch,
.page-contact .concept__catch,
.page-recruit .concept__catch {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: #1e2453;
  margin-bottom: 60px;
}
.page-service .concept__title,
.page-media .concept__title,
.page-event .concept__title,
.page-company .concept__title,
.page-news .concept__title,
.page-privacy .concept__title,
.page-catalog .concept__title,
.page-contact .concept__title,
.page-recruit .concept__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
.page-service .concept__text,
.page-media .concept__text,
.page-event .concept__text,
.page-company .concept__text,
.page-news .concept__text,
.page-privacy .concept__text,
.page-catalog .concept__text,
.page-contact .concept__text,
.page-recruit .concept__text {
  font-size: 15px;
  line-height: 2;
  text-align: left;
}
.page-service .features__list,
.page-media .features__list,
.page-event .features__list,
.page-company .features__list,
.page-news .features__list,
.page-privacy .features__list,
.page-catalog .features__list,
.page-contact .features__list,
.page-recruit .features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-service .feature-item,
.page-media .feature-item,
.page-event .feature-item,
.page-company .feature-item,
.page-news .feature-item,
.page-privacy .feature-item,
.page-catalog .feature-item,
.page-contact .feature-item,
.page-recruit .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.page-service .feature-item:nth-child(even),
.page-media .feature-item:nth-child(even),
.page-event .feature-item:nth-child(even),
.page-company .feature-item:nth-child(even),
.page-news .feature-item:nth-child(even),
.page-privacy .feature-item:nth-child(even),
.page-catalog .feature-item:nth-child(even),
.page-contact .feature-item:nth-child(even),
.page-recruit .feature-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-service .feature-item__img,
.page-media .feature-item__img,
.page-event .feature-item__img,
.page-company .feature-item__img,
.page-news .feature-item__img,
.page-privacy .feature-item__img,
.page-catalog .feature-item__img,
.page-contact .feature-item__img,
.page-recruit .feature-item__img {
  width: 50%;
}
.page-service .feature-item__img img,
.page-media .feature-item__img img,
.page-event .feature-item__img img,
.page-company .feature-item__img img,
.page-news .feature-item__img img,
.page-privacy .feature-item__img img,
.page-catalog .feature-item__img img,
.page-contact .feature-item__img img,
.page-recruit .feature-item__img img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.page-service .feature-item__body,
.page-media .feature-item__body,
.page-event .feature-item__body,
.page-company .feature-item__body,
.page-news .feature-item__body,
.page-privacy .feature-item__body,
.page-catalog .feature-item__body,
.page-contact .feature-item__body,
.page-recruit .feature-item__body {
  width: 50%;
}
.page-service .feature-item__num,
.page-media .feature-item__num,
.page-event .feature-item__num,
.page-company .feature-item__num,
.page-news .feature-item__num,
.page-privacy .feature-item__num,
.page-catalog .feature-item__num,
.page-contact .feature-item__num,
.page-recruit .feature-item__num {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #1e2453;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #1e2453;
  padding-bottom: 5px;
}
.page-service .feature-item__title,
.page-media .feature-item__title,
.page-event .feature-item__title,
.page-company .feature-item__title,
.page-news .feature-item__title,
.page-privacy .feature-item__title,
.page-catalog .feature-item__title,
.page-contact .feature-item__title,
.page-recruit .feature-item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}
.page-service .feature-item__text,
.page-media .feature-item__text,
.page-event .feature-item__text,
.page-company .feature-item__text,
.page-news .feature-item__text,
.page-privacy .feature-item__text,
.page-catalog .feature-item__text,
.page-contact .feature-item__text,
.page-recruit .feature-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.page-service .flow__inner,
.page-media .flow__inner,
.page-event .flow__inner,
.page-company .flow__inner,
.page-news .flow__inner,
.page-privacy .flow__inner,
.page-catalog .flow__inner,
.page-contact .flow__inner,
.page-recruit .flow__inner {
  max-width: 800px;
  margin: 0 auto;
}
.page-service .flow__lead,
.page-media .flow__lead,
.page-event .flow__lead,
.page-company .flow__lead,
.page-news .flow__lead,
.page-privacy .flow__lead,
.page-catalog .flow__lead,
.page-contact .flow__lead,
.page-recruit .flow__lead {
  text-align: center;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.8;
}
.page-service .flow__steps,
.page-media .flow__steps,
.page-event .flow__steps,
.page-company .flow__steps,
.page-news .flow__steps,
.page-privacy .flow__steps,
.page-catalog .flow__steps,
.page-contact .flow__steps,
.page-recruit .flow__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.page-service .flow-step,
.page-media .flow-step,
.page-event .flow-step,
.page-company .flow-step,
.page-news .flow-step,
.page-privacy .flow-step,
.page-catalog .flow-step,
.page-contact .flow-step,
.page-recruit .flow-step {
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}
.page-service .flow-step:not(:last-child)::after,
.page-media .flow-step:not(:last-child)::after,
.page-event .flow-step:not(:last-child)::after,
.page-company .flow-step:not(:last-child)::after,
.page-news .flow-step:not(:last-child)::after,
.page-privacy .flow-step:not(:last-child)::after,
.page-catalog .flow-step:not(:last-child)::after,
.page-contact .flow-step:not(:last-child)::after,
.page-recruit .flow-step:not(:last-child)::after {
  content: "▼";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ddd;
  font-size: 12px;
}
.page-service .flow-step__head,
.page-media .flow-step__head,
.page-event .flow-step__head,
.page-company .flow-step__head,
.page-news .flow-step__head,
.page-privacy .flow-step__head,
.page-catalog .flow-step__head,
.page-contact .flow-step__head,
.page-recruit .flow-step__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}
.page-service .flow-step__num,
.page-media .flow-step__num,
.page-event .flow-step__num,
.page-company .flow-step__num,
.page-news .flow-step__num,
.page-privacy .flow-step__num,
.page-catalog .flow-step__num,
.page-contact .flow-step__num,
.page-recruit .flow-step__num {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e2453;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-service .flow-step__title,
.page-media .flow-step__title,
.page-event .flow-step__title,
.page-company .flow-step__title,
.page-news .flow-step__title,
.page-privacy .flow-step__title,
.page-catalog .flow-step__title,
.page-contact .flow-step__title,
.page-recruit .flow-step__title {
  font-size: 18px;
  font-weight: 700;
}
.page-service .flow-step__text,
.page-media .flow-step__text,
.page-event .flow-step__text,
.page-company .flow-step__text,
.page-news .flow-step__text,
.page-privacy .flow-step__text,
.page-catalog .flow-step__text,
.page-contact .flow-step__text,
.page-recruit .flow-step__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  padding-left: 80px;
}
.page-service .page-cta,
.page-media .page-cta,
.page-event .page-cta,
.page-company .page-cta,
.page-news .page-cta,
.page-privacy .page-cta,
.page-catalog .page-cta,
.page-contact .page-cta,
.page-recruit .page-cta {
  padding: 100px 20px;
  background-color: #1e2453;
  color: #fff;
}
.page-service .page-cta__inner,
.page-media .page-cta__inner,
.page-event .page-cta__inner,
.page-company .page-cta__inner,
.page-news .page-cta__inner,
.page-privacy .page-cta__inner,
.page-catalog .page-cta__inner,
.page-contact .page-cta__inner,
.page-recruit .page-cta__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-service .page-cta__title,
.page-media .page-cta__title,
.page-event .page-cta__title,
.page-company .page-cta__title,
.page-news .page-cta__title,
.page-privacy .page-cta__title,
.page-catalog .page-cta__title,
.page-contact .page-cta__title,
.page-recruit .page-cta__title {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.page-service .page-cta__text,
.page-media .page-cta__text,
.page-event .page-cta__text,
.page-company .page-cta__text,
.page-news .page-cta__text,
.page-privacy .page-cta__text,
.page-catalog .page-cta__text,
.page-contact .page-cta__text,
.page-recruit .page-cta__text {
  font-size: 14px;
  margin-bottom: 40px;
  opacity: 0.9;
}
.page-service .page-cta__btns,
.page-media .page-cta__btns,
.page-event .page-cta__btns,
.page-company .page-cta__btns,
.page-news .page-cta__btns,
.page-privacy .page-cta__btns,
.page-catalog .page-cta__btns,
.page-contact .page-cta__btns,
.page-recruit .page-cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-service .page-cta__btns .btn,
.page-media .page-cta__btns .btn,
.page-event .page-cta__btns .btn,
.page-company .page-cta__btns .btn,
.page-news .page-cta__btns .btn,
.page-privacy .page-cta__btns .btn,
.page-catalog .page-cta__btns .btn,
.page-contact .page-cta__btns .btn,
.page-recruit .page-cta__btns .btn {
  width: 250px;
  height: 50px;
}
.page-service .page-cta__btns .btn.btn-solid,
.page-media .page-cta__btns .btn.btn-solid,
.page-event .page-cta__btns .btn.btn-solid,
.page-company .page-cta__btns .btn.btn-solid,
.page-news .page-cta__btns .btn.btn-solid,
.page-privacy .page-cta__btns .btn.btn-solid,
.page-catalog .page-cta__btns .btn.btn-solid,
.page-contact .page-cta__btns .btn.btn-solid,
.page-recruit .page-cta__btns .btn.btn-solid {
  background: #fff;
  color: #1e2453;
  border-color: #fff;
}
.page-service .page-cta__btns .btn.btn-solid:hover,
.page-media .page-cta__btns .btn.btn-solid:hover,
.page-event .page-cta__btns .btn.btn-solid:hover,
.page-company .page-cta__btns .btn.btn-solid:hover,
.page-news .page-cta__btns .btn.btn-solid:hover,
.page-privacy .page-cta__btns .btn.btn-solid:hover,
.page-catalog .page-cta__btns .btn.btn-solid:hover,
.page-contact .page-cta__btns .btn.btn-solid:hover,
.page-recruit .page-cta__btns .btn.btn-solid:hover {
  background: rgba(255, 255, 255, 0.85);
}
.page-service .page-cta__btns .btn.btn-outline,
.page-media .page-cta__btns .btn.btn-outline,
.page-event .page-cta__btns .btn.btn-outline,
.page-company .page-cta__btns .btn.btn-outline,
.page-news .page-cta__btns .btn.btn-outline,
.page-privacy .page-cta__btns .btn.btn-outline,
.page-catalog .page-cta__btns .btn.btn-outline,
.page-contact .page-cta__btns .btn.btn-outline,
.page-recruit .page-cta__btns .btn.btn-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.page-service .page-cta__btns .btn.btn-outline:hover,
.page-media .page-cta__btns .btn.btn-outline:hover,
.page-event .page-cta__btns .btn.btn-outline:hover,
.page-company .page-cta__btns .btn.btn-outline:hover,
.page-news .page-cta__btns .btn.btn-outline:hover,
.page-privacy .page-cta__btns .btn.btn-outline:hover,
.page-catalog .page-cta__btns .btn.btn-outline:hover,
.page-contact .page-cta__btns .btn.btn-outline:hover,
.page-recruit .page-cta__btns .btn.btn-outline:hover {
  background: #fff;
  color: #1e2453;
}
@media screen and (max-width: 768px) {
  .page-service .page-fv,
  .page-media .page-fv,
  .page-event .page-fv,
  .page-company .page-fv,
  .page-news .page-fv,
  .page-privacy .page-fv,
  .page-catalog .page-fv,
  .page-contact .page-fv,
  .page-recruit .page-fv {
    height: 300px;
  }
  .page-service .page-fv__title,
  .page-media .page-fv__title,
  .page-event .page-fv__title,
  .page-company .page-fv__title,
  .page-news .page-fv__title,
  .page-privacy .page-fv__title,
  .page-catalog .page-fv__title,
  .page-contact .page-fv__title,
  .page-recruit .page-fv__title {
    font-size: 32px;
  }
  .page-service .concept__catch,
  .page-media .concept__catch,
  .page-event .concept__catch,
  .page-company .concept__catch,
  .page-news .concept__catch,
  .page-privacy .concept__catch,
  .page-catalog .concept__catch,
  .page-contact .concept__catch,
  .page-recruit .concept__catch {
    font-size: 20px;
  }
  .page-service .concept__title,
  .page-media .concept__title,
  .page-event .concept__title,
  .page-company .concept__title,
  .page-news .concept__title,
  .page-privacy .concept__title,
  .page-catalog .concept__title,
  .page-contact .concept__title,
  .page-recruit .concept__title {
    font-size: 18px;
  }
  .page-service .feature-item,
  .page-media .feature-item,
  .page-event .feature-item,
  .page-company .feature-item,
  .page-news .feature-item,
  .page-privacy .feature-item,
  .page-catalog .feature-item,
  .page-contact .feature-item,
  .page-recruit .feature-item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 30px;
  }
  .page-service .feature-item__img, .page-service .feature-item__body,
  .page-media .feature-item__img,
  .page-media .feature-item__body,
  .page-event .feature-item__img,
  .page-event .feature-item__body,
  .page-company .feature-item__img,
  .page-company .feature-item__body,
  .page-news .feature-item__img,
  .page-news .feature-item__body,
  .page-privacy .feature-item__img,
  .page-privacy .feature-item__body,
  .page-catalog .feature-item__img,
  .page-catalog .feature-item__body,
  .page-contact .feature-item__img,
  .page-contact .feature-item__body,
  .page-recruit .feature-item__img,
  .page-recruit .feature-item__body {
    width: 100% !important;
  }
  .page-service .feature-item__img img,
  .page-media .feature-item__img img,
  .page-event .feature-item__img img,
  .page-company .feature-item__img img,
  .page-news .feature-item__img img,
  .page-privacy .feature-item__img img,
  .page-catalog .feature-item__img img,
  .page-contact .feature-item__img img,
  .page-recruit .feature-item__img img {
    width: 100%;
    height: auto;
  }
  .page-service .flow-step,
  .page-media .flow-step,
  .page-event .flow-step,
  .page-company .flow-step,
  .page-news .flow-step,
  .page-privacy .flow-step,
  .page-catalog .flow-step,
  .page-contact .flow-step,
  .page-recruit .flow-step {
    padding: 20px;
  }
  .page-service .flow-step__head,
  .page-media .flow-step__head,
  .page-event .flow-step__head,
  .page-company .flow-step__head,
  .page-news .flow-step__head,
  .page-privacy .flow-step__head,
  .page-catalog .flow-step__head,
  .page-contact .flow-step__head,
  .page-recruit .flow-step__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .page-service .flow-step__text,
  .page-media .flow-step__text,
  .page-event .flow-step__text,
  .page-company .flow-step__text,
  .page-news .flow-step__text,
  .page-privacy .flow-step__text,
  .page-catalog .flow-step__text,
  .page-contact .flow-step__text,
  .page-recruit .flow-step__text {
    padding-left: 0;
  }
  .page-service .page-cta__btns,
  .page-media .page-cta__btns,
  .page-event .page-cta__btns,
  .page-company .page-cta__btns,
  .page-news .page-cta__btns,
  .page-privacy .page-cta__btns,
  .page-catalog .page-cta__btns,
  .page-contact .page-cta__btns,
  .page-recruit .page-cta__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.page-custom-home .media-appeal__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.page-custom-home .media-appeal__text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 50px;
}
.page-custom-home .media-appeal__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.page-custom-home .media-appeal__gallery img {
  width: calc(33.333% - 20px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .page-custom-home .media-appeal__gallery {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page-custom-home .media-appeal__gallery img {
    width: 80%;
  }
}

.page-agency .target__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.page-agency .target__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
}
.page-agency .target-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 40px 30px;
}
.page-agency .target-item__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  color: #1e2453;
}
.page-agency .target-item__text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}
.page-agency .flow-agency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.page-agency .flow-agency__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-agency .flow-agency__type {
  font-size: 20px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid #1e2453;
  padding-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .page-agency .flow-agency {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-agency .target__list {
    grid-template-columns: 1fr;
  }
}

.page-buy-sell .target__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-buy-sell .target__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
}
.page-buy-sell .target-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-buy-sell .target-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.page-buy-sell .target-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 20px;
  line-height: 1.5;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
}
.page-buy-sell .target-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-buy-sell .target__list {
    grid-template-columns: 1fr;
  }
}

.page-works .text-center {
  text-align: center;
}
.page-works .text-center .section-title-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-works .works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.page-works .works-card {
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-works .works-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.page-works .works-card__info {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.page-works .works-card__label {
  font-size: 11px;
  border: 1px solid #ccc;
  padding: 4px 12px;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-works .works-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
.page-works .works-card__cat {
  font-size: 12px;
  color: #888;
}
.page-works .detail-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.page-works .point-list {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.page-works .point-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-works .point-item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.page-works .point-img,
.page-works .point-body {
  width: 50%;
}
.page-works .works-detail-fv__img img {
  height: 80vh;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  display: block;
}
@media screen and (max-width: 992px) {
  .page-works .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page-works .works-detail-fv__img img {
    height: 60vh;
  }
  .page-works .works-grid {
    grid-template-columns: 1fr;
  }
  .page-works .detail-gallery .gallery-grid {
    grid-template-columns: 1fr;
  }
  .page-works .works-detail-fv__head {
    margin-top: -20px;
    padding: 20px;
  }
  .page-works .works-detail-fv__head .works-title {
    font-size: 20px;
  }
  .page-works .point-item,
  .page-works .point-item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .page-works .point-img,
  .page-works .point-body {
    width: 100%;
  }
}

.page-media .media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.page-media .media-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.page-media .media-item:hover .media-item__link {
  color: #1e2453;
  text-decoration: underline;
}
.page-media .media-item__img {
  width: 25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-media .media-item__body {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-media .media-item__meta {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.page-media .media-item__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}
.page-media .media-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.page-media .media-item__link {
  font-size: 13px;
  font-weight: 700;
  color: #888;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .page-media .media-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .page-media .media-item__img, .page-media .media-item__body {
    width: 100%;
  }
  .page-media .media-item__img {
    max-width: 200px;
    margin: 0 auto;
  }
}

.page-event .event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.page-event .event-item__img {
  width: 45%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-event .event-item__body {
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-event .event-item__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1e2453;
}
.page-event .event-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.page-event .event-item__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}
.page-event .event-item__tags li {
  font-size: 12px;
  background: #f0f0f0;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
}
.page-event .event-item__btn {
  width: 280px;
  max-width: 100%;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .page-event .event-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
  .page-event .event-item__img, .page-event .event-item__body {
    width: 100%;
  }
  .page-event .event-item__btn {
    margin: 0 auto;
  }
  .page-event .event-info__grid {
    grid-template-columns: 1fr !important;
  }
  .page-event .info-card {
    text-align: center !important;
  }
  .page-event .info-card p {
    text-align: center !important;
  }
}

.page-company .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.page-company .company-table th,
.page-company .company-table td {
  padding: 20px 25px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
.page-company .company-table th {
  width: 25%;
  background: #fff;
  font-weight: 700;
  color: #1e2453;
}
.page-company .company-table td {
  line-height: 1.8;
  color: #333;
}
.page-company .company-table tr:last-child th,
.page-company .company-table tr:last-child td {
  border-bottom: none;
}
.page-company .target__inner {
  max-width: 900px;
  margin: 0 auto;
}
.page-company .target__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
}
.page-company .target-item {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page-company .target-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.page-company .target-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 20px;
  line-height: 1.5;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 15px;
}
.page-company .target-item__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page-company .company-table th,
  .page-company .company-table td {
    display: block;
    width: 100%;
  }
  .page-company .company-table th {
    padding: 15px 20px 8px;
    border-bottom: none;
  }
  .page-company .company-table td {
    padding: 8px 20px 18px;
    margin-bottom: 0;
    border-bottom: 1px solid #eaeaea;
  }
  .page-company .company-table tr:last-child td {
    border-bottom: none;
  }
  .page-company .target__list {
    grid-template-columns: 1fr;
  }
}

.page-news .news-list {
  border-top: 1px solid #eaeaea;
}
.page-news .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px;
  border-bottom: 1px solid #eaeaea;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.page-news .news-item:hover {
  background-color: #f9f9f9;
}
.page-news .news-item:hover .news-item__title {
  color: #1e2453;
}
.page-news .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-news .news-item__date {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #666;
}
.page-news .news-item__cat {
  font-size: 12px;
  background-color: #eee;
  padding: 4px 12px;
  border-radius: 4px;
  color: #333;
}
.page-news .news-item__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .page-news .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
  }
  .page-news .news-item__meta {
    width: 100%;
  }
}

.page-privacy .privacy__inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}
.page-privacy .privacy__lead {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 50px;
  border-bottom: 2px solid #1e2453;
  padding-bottom: 30px;
}
.page-privacy .privacy__content {
  margin-bottom: 60px;
}
.page-privacy .privacy__title {
  font-size: 18px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 20px;
  margin-top: 40px;
}
.page-privacy .privacy__title:first-child {
  margin-top: 0;
}
.page-privacy .privacy__text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}
.page-privacy .privacy__list {
  margin-left: 20px;
  margin-bottom: 20px;
}
.page-privacy .privacy__list li {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  list-style-type: disc;
  margin-bottom: 8px;
}
.page-privacy .privacy__contact {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 4px;
}
.page-privacy .privacy__contact-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.page-privacy .privacy__contact .privacy__text {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page-privacy .privacy__inner {
    padding: 30px 20px;
  }
  .page-privacy .privacy__title {
    font-size: 16px;
  }
}

.page-catalog .form-wrapper,
.page-contact .form-wrapper,
.page-recruit .form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}
.page-catalog .form-group,
.page-contact .form-group,
.page-recruit .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}
.page-catalog .form-group:last-of-type,
.page-contact .form-group:last-of-type,
.page-recruit .form-group:last-of-type {
  border-bottom: none;
}
.page-catalog .form-label,
.page-contact .form-label,
.page-recruit .form-label {
  width: 30%;
  font-size: 15px;
  font-weight: 700;
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-catalog .form-label .required,
.page-contact .form-label .required,
.page-recruit .form-label .required {
  background: #e63946;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 2px;
  margin-left: 10px;
  font-weight: normal;
}
.page-catalog .form-label .optional,
.page-contact .form-label .optional,
.page-recruit .form-label .optional {
  background: #ccc;
  color: #fff;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 2px;
  margin-left: 10px;
  font-weight: normal;
}
.page-catalog .form-input,
.page-contact .form-input,
.page-recruit .form-input {
  width: 70%;
}
.page-catalog .form-input input[type=text],
.page-catalog .form-input input[type=email],
.page-catalog .form-input input[type=tel],
.page-catalog .form-input input[type=date],
.page-catalog .form-input select,
.page-catalog .form-input textarea,
.page-contact .form-input input[type=text],
.page-contact .form-input input[type=email],
.page-contact .form-input input[type=tel],
.page-contact .form-input input[type=date],
.page-contact .form-input select,
.page-contact .form-input textarea,
.page-recruit .form-input input[type=text],
.page-recruit .form-input input[type=email],
.page-recruit .form-input input[type=tel],
.page-recruit .form-input input[type=date],
.page-recruit .form-input select,
.page-recruit .form-input textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fafafa;
  font-family: inherit;
  font-size: 15px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.page-catalog .form-input input[type=date],
.page-contact .form-input input[type=date],
.page-recruit .form-input input[type=date] {
  max-width: 240px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-catalog .form-input input[type=text]:focus,
.page-catalog .form-input input[type=email]:focus,
.page-catalog .form-input input[type=tel]:focus,
.page-catalog .form-input input[type=date]:focus,
.page-catalog .form-input select:focus,
.page-catalog .form-input textarea:focus,
.page-contact .form-input input[type=text]:focus,
.page-contact .form-input input[type=email]:focus,
.page-contact .form-input input[type=tel]:focus,
.page-contact .form-input input[type=date]:focus,
.page-contact .form-input select:focus,
.page-contact .form-input textarea:focus,
.page-recruit .form-input input[type=text]:focus,
.page-recruit .form-input input[type=email]:focus,
.page-recruit .form-input input[type=tel]:focus,
.page-recruit .form-input input[type=date]:focus,
.page-recruit .form-input select:focus,
.page-recruit .form-input textarea:focus {
  outline: none;
  border-color: #1e2453;
  background: #fff;
}
.page-catalog .form-input textarea,
.page-contact .form-input textarea,
.page-recruit .form-input textarea {
  height: 150px;
  resize: vertical;
}
.page-catalog .form-policy,
.page-contact .form-policy,
.page-recruit .form-policy {
  text-align: center;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 4px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-catalog .form-policy p,
.page-contact .form-policy p,
.page-recruit .form-policy p {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}
.page-catalog .form-policy p a,
.page-contact .form-policy p a,
.page-recruit .form-policy p a {
  color: #1e2453;
  text-decoration: underline;
}
.page-catalog .form-policy .policy-check,
.page-contact .form-policy .policy-check,
.page-recruit .form-policy .policy-check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
}
.page-catalog .form-policy .policy-check input[type=checkbox],
.page-contact .form-policy .policy-check input[type=checkbox],
.page-recruit .form-policy .policy-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.page-catalog .form-submit,
.page-contact .form-submit,
.page-recruit .form-submit {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-catalog .form-submit .submit-btn,
.page-contact .form-submit .submit-btn,
.page-recruit .form-submit .submit-btn {
  width: 300px;
  max-width: 100%;
  height: 60px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-catalog .form-wrapper,
  .page-contact .form-wrapper,
  .page-recruit .form-wrapper {
    padding: 30px 20px;
  }
  .page-catalog .form-group,
  .page-contact .form-group,
  .page-recruit .form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .page-catalog .form-label,
  .page-catalog .form-input,
  .page-contact .form-label,
  .page-contact .form-input,
  .page-recruit .form-label,
  .page-recruit .form-input {
    width: 100%;
  }
  .page-catalog .form-label,
  .page-contact .form-label,
  .page-recruit .form-label {
    padding-top: 0;
  }
}

.page-recruit .recruit-hero {
  background: #1e2453;
  color: #fff;
  padding: 70px 40px;
  text-align: center;
}
.page-recruit .recruit-hero__h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.page-recruit .recruit-hero__sub {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}
.page-recruit .recruit-hero .recruit-circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin-bottom: 44px;
  padding: 0;
  list-style: none;
}
.page-recruit .recruit-circle {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 14px 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}
.page-recruit .recruit-circle__label {
  font-size: 11px;
  opacity: 0.75;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  line-height: 1.4;
}
.page-recruit .recruit-circle__num {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
}
.page-recruit .recruit-circle__unit {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.page-recruit .recruit-circle__text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.page-recruit .recruit-circle__text--sm {
  font-size: 14px;
}
.page-recruit .recruit-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #e69d24;
  color: #fff;
  padding: 18px 60px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-recruit .recruit-btn:hover {
  opacity: 0.85;
}
.page-recruit .recruit-btn--large {
  padding: 22px 80px;
  font-size: 18px;
}
.page-recruit .recruit-message {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.page-recruit .recruit-message__catch {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
  color: #1e2453;
  margin-bottom: 30px;
}
.page-recruit .recruit-message__text {
  font-size: 15px;
  line-height: 2;
  color: #555;
  text-align: left;
  display: inline-block;
}
.page-recruit .points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-recruit .point-card {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  text-align: center;
}
.page-recruit .point-card__num {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1e2453;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.page-recruit .point-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 15px;
  line-height: 1.5;
}
.page-recruit .point-card__text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.page-recruit .jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-recruit .job-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
}
.page-recruit .job-card__body {
  padding: 24px 28px;
}
.page-recruit .job-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #1e2453;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
}
.page-recruit .job-card__location {
  font-size: 13px;
  color: #888;
  margin-bottom: 14px;
}
.page-recruit .job-card__desc {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}
.page-recruit .job-card__highlight {
  background: rgba(30, 36, 83, 0.05);
  border-left: 3px solid #1e2453;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
  color: #1e2453;
  border-radius: 0 4px 4px 0;
}
.page-recruit .roadmap-inner {
  max-width: 700px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.page-recruit .roadmap-step {
  background: #fff;
  padding: 28px 36px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}
.page-recruit .roadmap-step:not(:last-child)::after {
  content: "▼";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ddd;
  font-size: 12px;
}
.page-recruit .roadmap-step__num {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.page-recruit .roadmap-step__title {
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.page-recruit .roadmap-step__text {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}
.page-recruit .interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
.page-recruit .interview-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}
.page-recruit .interview-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1e2453;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
.page-recruit .interview-card__text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
}
.page-recruit .interview-note {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 24px 30px;
  border-radius: 8px;
  border-left: 4px solid #1e2453;
  font-size: 14px;
  line-height: 1.9;
  color: #444;
}
.page-recruit .req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.page-recruit .req-table th, .page-recruit .req-table td {
  padding: 20px 25px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}
.page-recruit .req-table th {
  width: 22%;
  background: #fff;
  font-weight: 700;
  color: #1e2453;
}
.page-recruit .req-table td {
  line-height: 1.8;
  color: #333;
}
.page-recruit .req-table tr:last-child th, .page-recruit .req-table tr:last-child td {
  border-bottom: none;
}
.page-recruit .selection-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}
.page-recruit .selection-step {
  background: #fff;
  border: 2px solid #1e2453;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  color: #1e2453;
}
.page-recruit .selection-arrow {
  color: #1e2453;
  font-size: 18px;
  font-weight: 700;
}
.page-recruit .recruit-entry {
  text-align: center;
}
.page-recruit .recruit-entry__msg {
  font-size: 20px;
  font-weight: 700;
  color: #292929;
  line-height: 1.6;
  margin-bottom: 30px;
}
.page-recruit .form-wrapper {
  max-width: 900px;
}
.page-recruit .form-section-heading {
  font-size: 15px;
  font-weight: 700;
  color: #1e2453;
  border-bottom: 2px solid #1e2453;
  padding-bottom: 10px;
  margin: 40px 0 24px;
}
.page-recruit .form-section-heading:first-child {
  margin-top: 0;
}
.page-recruit .form-input--split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.page-recruit .form-input--split input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-recruit .form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  padding-top: 10px;
}
.page-recruit .form-radio-group--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.page-recruit .form-radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}
.page-recruit .form-radio input[type=radio] {
  width: 18px;
  height: 18px;
  accent-color: #1e2453;
  cursor: pointer;
}
.page-recruit .form-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.page-recruit .form-address__postal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.page-recruit .form-address__postal label, .page-recruit .form-address__postal span {
  font-size: 14px;
  color: #666;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-recruit .form-address__postal input {
  max-width: 180px;
}
.page-recruit .form-address select, .page-recruit .form-address input {
  width: 100%;
}
.page-recruit .form-sub-group {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}
.page-recruit .form-sub-group .form-sub-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.page-recruit .form-sub-group .form-sub-row label {
  font-size: 13px;
  font-weight: 700;
  color: #555;
}
.page-recruit .form-sub-group .form-sub-row input, .page-recruit .form-sub-group .form-sub-row select, .page-recruit .form-sub-group .form-sub-row textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
}
.page-recruit .form-sub-group .form-sub-row input:focus, .page-recruit .form-sub-group .form-sub-row select:focus, .page-recruit .form-sub-group .form-sub-row textarea:focus {
  outline: none;
  border-color: #1e2453;
}
.page-recruit .form-sub-group .form-sub-row textarea {
  height: 100px;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .page-recruit .recruit-hero {
    padding: 50px 20px;
  }
  .page-recruit .recruit-hero__h1 {
    font-size: 24px;
  }
  .page-recruit .recruit-hero__sub {
    font-size: 14px;
  }
  .page-recruit .recruit-btn {
    padding: 16px 40px;
    font-size: 15px;
  }
  .page-recruit .recruit-circles {
    display: grid !important;
    grid-template-columns: repeat(2, 140px);
    gap: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 32px;
  }
  .page-recruit .recruit-circle {
    width: 140px;
    height: 140px;
  }
  .page-recruit .recruit-circle__num {
    font-size: 34px;
  }
  .page-recruit .points-grid,
  .page-recruit .jobs-grid,
  .page-recruit .interview-grid {
    grid-template-columns: 1fr;
  }
  .page-recruit .roadmap-step {
    padding: 20px 24px;
  }
  .page-recruit .selection-flow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .page-recruit .selection-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .page-recruit .form-input--split {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-recruit .form-address__postal input {
    max-width: 100%;
  }
  .page-recruit .req-table th, .page-recruit .req-table td {
    display: block;
    width: 100%;
  }
  .page-recruit .req-table th {
    border-bottom: none;
    padding-bottom: 6px;
  }
  .page-recruit .req-table td {
    padding-top: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eaeaea;
  }
  .page-recruit .req-table tr:last-child td {
    border-bottom: none;
  }
}

.single-content__inner p,
.detail-concept__text p {
  line-height: 1.9;
  margin-bottom: 1.5em;
}
.single-content__inner h2,
.single-content__inner h3,
.single-content__inner h4,
.single-content__inner h5,
.detail-concept__text h2,
.detail-concept__text h3,
.detail-concept__text h4,
.detail-concept__text h5 {
  margin-top: 2.5em;
  margin-bottom: 1em;
}
.single-content__inner h2,
.detail-concept__text h2 {
  background: #f7f7f7;
  border-left: 6px solid #1e2453;
  padding: 16px 20px;
  font-size: 22px;
  font-weight: 700;
}
.single-content__inner h3,
.detail-concept__text h3 {
  border-bottom: 2px solid #1e2453;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.single-content__inner h4,
.detail-concept__text h4 {
  border-left: 4px solid #1e2453;
  padding-left: 12px;
  font-size: 17px;
  font-weight: 700;
}
.single-content__inner h5,
.detail-concept__text h5 {
  font-size: 15px;
  font-weight: 700;
}
.single-content__inner ul,
.single-content__inner ol,
.detail-concept__text ul,
.detail-concept__text ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.single-content__inner ul,
.detail-concept__text ul {
  list-style: disc;
}
.single-content__inner ol,
.detail-concept__text ol {
  list-style: decimal;
}
.single-content__inner li,
.detail-concept__text li {
  margin-bottom: 0.5em;
  line-height: 1.9;
}
/* =========================================
   Top page sliders
   ========================================= */
.slider-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #bbb;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: background 0.2s, border-color 0.2s, color 0.2s;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1;
}

.slider-btn:hover {
  background: #1e2453;
  border-color: #1e2453;
  color: #fff;
}

.slider-wrap {
  overflow: hidden;
}

.slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  grid-template-columns: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

/* Works カード：2枚見え */
.works .works-grid.slider-track .works-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 12px);
          flex: 0 0 calc(50% - 12px);
  width: calc(50% - 12px);
  scroll-snap-align: start;
}

/* Event カード：3枚見え */
.event .slider-track .event-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 16px);
          flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  scroll-snap-align: start;
}

/* Media カード：3枚見え */
.media .slider-track .media-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.333% - 16px);
          flex: 0 0 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
  scroll-snap-align: start;
}

@media screen and (max-width: 768px) {
  .slider-track {
    gap: 16px;
  }

  .works .works-grid.slider-track .works-card,
  .event .slider-track .event-card,
  .media .slider-track .media-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 78%;
            flex: 0 0 78%;
    width: 78%;
  }
}

.single-content__inner img,
.detail-concept__text img {
  max-width: 100%;
  height: auto;
}

/* =========================================
   スクロールアニメーション
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================
   スマホ固定ボトムナビ
   ========================================= */
.sp-bottom-nav {
  display: none;
}

@media (max-width: 1024px) {
  .sp-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #333;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  }

  .sp-bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.15s;
    white-space: nowrap;
  }

  .sp-bottom-nav__item:last-child {
    border-right: none;
  }

  .sp-bottom-nav__item:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .sp-bottom-nav__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }

  .sp-bottom-nav__item--line {
    color: #4cd964;
  }

  body {
    padding-bottom: 60px;
  }
}