@charset "UTF-8";
* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  outline: none;
  appearance: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  overflow: hidden;
  color: #0071bc;
}
a:hover {
  color: #ffb700;
}

img {
  border: none;
  line-height: 0;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

ul li {
  list-style: none;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 16px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  body {
    font-size: 14px;
  }
}
body {
  letter-spacing: 0.5px;
}

#wrapper {
  overflow: hidden;
}

.mincho {
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: #181560;
}
@media screen and (max-width: 834px) {
  .site-header {
    position: fixed;
  }
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .site-header .inner {
    position: relative;
    z-index: 101;
    background: #181560;
  }
}
.site-header .logo {
  flex-shrink: 0;
  line-height: 0;
}
.site-header .logo a {
  display: block;
}
.site-header .logo img {
  width: auto;
  height: 40px;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .site-header .logo img {
    height: 32px;
  }
}
.site-header .global-nav {
  margin-left: auto;
}
@media screen and (max-width: 834px) {
  .site-header .global-nav {
    display: none;
  }
}
.site-header .global-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 28px;
}
.site-header .global-nav a {
  color: #fff;
  font-size: 18px;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  letter-spacing: 1px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}
@media (hover: hover) {
  .site-header .global-nav a:hover {
    opacity: 0.7;
    color: #fff;
  }
}
.site-header #bt-nav {
  display: none;
  position: relative;
  z-index: 101;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px 0;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .site-header #bt-nav {
    display: flex;
  }
}
.site-header #bt-nav .icon {
  position: relative;
  width: 28px;
  height: 20px;
}
.site-header #bt-nav .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.site-header #bt-nav .line:nth-child(1) {
  top: 0;
}
.site-header #bt-nav .line:nth-child(2) {
  top: 9px;
}
.site-header #bt-nav .line:nth-child(3) {
  top: 18px;
}
.site-header #bt-nav .text {
  font-size: 10px;
  letter-spacing: 0.05em;
}
.site-header #bt-nav.on .line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.site-header #bt-nav.on .line:nth-child(2) {
  opacity: 0;
}
.site-header #bt-nav.on .line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.sp-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 100px 30px 40px;
  background: #181560;
  overflow-y: auto;
}
.sp-nav.is-open {
  display: block;
}
.sp-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sp-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.sp-nav a {
  display: block;
  padding: 18px 0;
  color: #fff;
  font-size: 16px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .sp-nav a:hover {
    opacity: 0.7;
    color: #fff;
  }
}

html.is-nav-open {
  overflow: hidden;
}

.site-footer {
  background: #333;
  color: #fff;
  padding: 50px 0 30px;
}
@media screen and (max-width: 834px) {
  .site-footer {
    padding: 40px 0 24px;
  }
}
.site-footer a {
  color: #fff;
}
@media (hover: hover) {
  .site-footer a:hover {
    opacity: 0.7;
    color: #fff;
  }
}
.site-footer .footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .site-footer .footer-main {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
}
.site-footer .footer-info {
  flex-shrink: 0;
}
.site-footer .footer-logo {
  line-height: 0;
  margin-bottom: 20px;
}
.site-footer .footer-logo a {
  display: inline-block;
}
.site-footer .footer-logo img {
  width: auto;
  height: 40px;
  max-width: 100%;
}
.site-footer .footer-address {
  font-style: normal;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.site-footer .footer-privacy {
  font-size: 14px;
}
.site-footer .footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 24px;
  list-style: none;
}
@media screen and (max-width: 834px) {
  .site-footer .footer-nav ul {
    justify-content: flex-start;
  }
}
.site-footer .footer-nav a {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.site-footer .footer-copy {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}

#back-top {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#back-top.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#back-top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 0;
  background: none;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  #back-top a:hover {
    opacity: 0.7;
    color: #111;
  }
}
#back-top img {
  width: 50px;
  height: auto;
}
#back-top .text {
  white-space: nowrap;
}

.top-hero {
  width: 100%;
}
.top-hero .top-hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vw / 2.7667946257);
  padding: 100px 20px 60px;
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-inner {
    min-height: calc(100vw / 1.3330134357);
    padding: 90px 20px 50px;
  }
}
.top-hero .top-hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.top-hero .top-hero-images {
  display: flex;
  width: 100%;
  height: 100%;
}
.top-hero .top-hero-img1,
.top-hero .top-hero-img2 {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-img1 {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-img2 {
    width: 100%;
  }
}
.top-hero .top-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.top-hero .top-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.top-hero .top-hero-match {
  display: inline-grid;
  grid-template-columns: max-content;
  justify-items: stretch;
  max-width: 100%;
  margin: 0 auto;
}
.top-hero .top-hero-lead {
  font-size: 24px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-hero .top-hero-lead {
    font-size: 20px;
  }
}
.top-hero .top-hero-lead {
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-hero .top-hero-lead {
    font-size: 18px;
    margin-top: 10px;
  }
}
.top-hero .top-hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .top-hero .top-hero-title {
    font-size: 32px;
  }
}
.top-hero .top-hero-sub {
  font-size: 20px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-hero .top-hero-sub {
    font-size: 18px;
  }
}
.top-hero .top-hero-sub {
  width: 0;
  min-width: 100%;
  margin-bottom: 36px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-sub {
    margin-bottom: 28px;
  }
}
.top-hero .top-hero-btn {
  width: 0;
  min-width: 100%;
}
.top-hero .top-hero-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border-radius: 4px;
  color: #0071bc;
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-btn a {
    font-size: 14px;
    padding: 12px 12px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .top-hero .top-hero-btn a {
    font-size: 12px;
    padding: 10px 8px;
  }
}
@media (hover: hover) {
  .top-hero .top-hero-btn a:hover {
    opacity: 0.85;
    color: #0071bc;
  }
}
.top-hero .top-hero-btn .arrow {
  flex-shrink: 0;
  width: 28px;
  height: auto;
}
@media screen and (max-width: 834px) {
  .top-hero .top-hero-btn .arrow {
    width: 18px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .top-hero .top-hero-btn .arrow {
    width: 14px;
  }
}

.top-intro {
  background: #2F6FB0;
  padding: 40px 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .top-intro {
    padding: 32px 0;
  }
}
.top-intro .inner {
  padding-top: 0;
  padding-bottom: 0;
}
.top-intro .top-intro-title {
  font-size: 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-intro .top-intro-title {
    font-size: 30px;
  }
}
.top-intro .top-intro-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  margin-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .top-intro .top-intro-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-intro .top-intro-title {
    font-size: 24px;
  }
}
.top-intro .top-intro-lead {
  font-size: 24px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-intro .top-intro-lead {
    font-size: 20px;
  }
}
.top-intro .top-intro-lead {
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .top-intro .top-intro-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .top-intro .top-intro-lead {
    font-size: 18px;
  }
}

.top-about {
  padding: 60px 20px 80px;
}
@media screen and (max-width: 834px) {
  .top-about {
    padding: 40px 20px 60px;
  }
}
.top-about .top-about-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.top-about .top-block {
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .top-about .top-block {
    margin-bottom: 48px;
  }
}
.top-about .top-block:last-of-type {
  margin-bottom: 50px;
}
.top-about .top-block-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #2F6FB0;
  border-bottom: 2px solid #2F6FB0;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 834px) {
  .top-about .top-block-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.top-about .top-block-body {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .top-about .top-block-body {
    flex-direction: column;
    gap: 24px;
  }
}
.top-about .top-block-text {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .top-about .top-block-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.top-about .top-block-text p + p {
  margin-top: 1.2em;
}
.top-about .top-block-text strong {
  font-weight: 700;
}
.top-about .top-block-image {
  flex-shrink: 0;
  width: 300px;
  margin: 0;
}
@media screen and (max-width: 834px) {
  .top-about .top-block-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.top-about .top-block-image img {
  width: 300px;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .top-about .top-block-image img {
    width: 100%;
  }
}
.top-about .top-block-link {
  margin-top: 12px;
  text-align: center;
}
.top-about .top-block-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #2F6FB0;
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .top-about .top-block-link a {
    font-size: 16px;
  }
}
@media (hover: hover) {
  .top-about .top-block-link a:hover {
    opacity: 0.7;
    color: #2F6FB0;
  }
}
.top-about .top-block-link .arrow {
  flex-shrink: 0;
  width: 22px;
  height: auto;
}
.top-about .top-tags {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 50%;
  margin: 0;
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .top-about .top-tags {
    max-width: 80%;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .top-about .top-tags {
    max-width: 100%;
  }
}
.top-about .top-tags li {
  flex: 1;
  padding: 10px 6px;
  background: #2F6FB0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.top-about .top-tags li a {
  display: block;
  color: #fff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .top-about .top-tags li a:hover {
    opacity: 0.85;
    color: #fff;
  }
}
@media screen and (max-width: 834px) {
  .top-about .top-tags li {
    flex: 0 0 calc(33.333% - 6px);
    font-size: 16px;
    padding: 10px 6px;
  }
}
@media screen and (max-width: 500px) and (orientation: portrait) {
  .top-about .top-tags li {
    flex: 0 0 calc(50% - 4px);
    font-size: 14px;
  }
}

.top-feat {
  padding: 0 20px 80px;
}
@media screen and (max-width: 834px) {
  .top-feat {
    padding-bottom: 60px;
  }
}
.top-feat .top-feat-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.top-feat .top-feat-head {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding-bottom: 8px;
  margin-bottom: 30px;
  border-bottom: 2px solid #2F6FB0;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-head {
    margin-bottom: 24px;
  }
}
.top-feat .top-feat-num {
  scroll-margin-top: 100px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2F6FB0;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-num {
    font-size: 24px;
  }
}
.top-feat .top-feat-sub {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2F6FB0;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-sub {
    font-size: 20px;
  }
}
.top-feat .top-feat-body {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-body {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.top-feat .top-feat-body .top-feat-text h3.top-feat-heading {
  margin-bottom: 20px;
}
.top-feat .top-feat-text {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.top-feat .top-feat-text p + p {
  margin-top: 1.2em;
}
.top-feat .top-feat-text strong {
  font-weight: 700;
}
.top-feat .top-feat-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-title {
    font-size: 20px;
  }
}
.top-feat .top-feat-lead {
  margin-bottom: 1.2em;
}
.top-feat .top-feat-heading {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-heading {
    font-size: 24px;
  }
}
.top-feat h3.top-feat-heading {
  margin-bottom: 8px;
}
.top-feat p.top-feat-heading {
  margin-bottom: 20px;
}
.top-feat .top-feat-note {
  margin-top: 1.2em;
}
.top-feat .top-feat-images {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-images {
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }
}
.top-feat .top-feat-images li {
  flex: 0 0 300px;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-images li {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}
.top-feat .top-feat-images img {
  width: 300px;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-images img {
    width: 100%;
  }
}
.top-feat .top-feat-image {
  flex-shrink: 0;
  width: 300px;
  margin: 0;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.top-feat .top-feat-image img {
  width: 300px;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-image img {
    width: 100%;
  }
}
.top-feat .top-feat-contact {
  margin-top: 30px;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-contact {
    margin-top: 24px;
  }
}
.top-feat .top-feat-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 60%;
  max-width: 600px;
  padding: 22px 36px;
  background: #2F6FB0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-contact a {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    padding: 16px 24px;
    gap: 8px;
  }
}
@media (hover: hover) {
  .top-feat .top-feat-contact a:hover {
    opacity: 0.85;
    color: #fff;
  }
}
.top-feat .top-feat-contact .arrow {
  flex-shrink: 0;
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-contact .arrow {
    width: 22px;
  }
}
.top-feat .top-feat-video {
  position: relative;
  width: 100%;
  max-width: 50%;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .top-feat .top-feat-video {
    max-width: 100%;
  }
}
.top-feat .top-feat-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  vertical-align: bottom;
}
.top-feat .top-feat-video.is-playing .top-feat-play {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.top-feat .top-feat-video .top-feat-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: none;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.top-feat .top-feat-video .top-feat-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -30px 0 0 -18px;
  border-style: solid;
  border-width: 30px 0 30px 52px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
}

.page-sub .site-header {
  position: relative;
}
@media screen and (max-width: 834px) {
  .page-sub .site-header {
    position: fixed;
  }
}

.baijin-hero-title {
  font-size: 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .baijin-hero-title {
    font-size: 30px;
  }
}
.baijin-hero-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.baijin-hero {
  background: #2F6FB0;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .baijin-hero {
    padding: 100px 0 40px;
  }
}
.baijin-hero .inner {
  padding-top: 0;
  padding-bottom: 0;
}
.baijin-hero .baijin-hero-title {
  margin-bottom: 12px;
}
@media screen and (max-width: 834px) {
  .baijin-hero .baijin-hero-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .baijin-hero .baijin-hero-title {
    font-size: 20px;
  }
}
.baijin-hero .baijin-hero-lead {
  font-size: 24px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .baijin-hero .baijin-hero-lead {
    font-size: 20px;
  }
}
.baijin-hero .baijin-hero-lead {
  line-height: 1.6;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .baijin-hero .baijin-hero-lead {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .baijin-hero .baijin-hero-lead {
    font-size: 16px;
  }
}

.baijin-content {
  padding: 60px 20px 50px;
}
@media screen and (max-width: 834px) {
  .baijin-content {
    padding: 40px 20px 32px;
  }
}
.baijin-content .baijin-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.baijin-content .baijin-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
@media screen and (max-width: 834px) {
  .baijin-content .baijin-images {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.baijin-content .baijin-images li {
  flex: 0 0 300px;
}
@media screen and (max-width: 834px) {
  .baijin-content .baijin-images li {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}
.baijin-content .baijin-images img {
  width: 300px;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 834px) {
  .baijin-content .baijin-images img {
    width: 100%;
  }
}
.baijin-content .baijin-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media screen and (max-width: 834px) {
  .baijin-content .baijin-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.baijin-content .baijin-text {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .baijin-content .baijin-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.baijin-content .baijin-text strong {
  font-weight: 700;
}

.baijin-detail {
  padding: 0 20px 50px;
}
@media screen and (max-width: 834px) {
  .baijin-detail {
    padding-bottom: 32px;
  }
}
.baijin-detail .baijin-detail-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.baijin-detail .baijin-block {
  margin-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .baijin-detail .baijin-block {
    margin-bottom: 40px;
  }
}
.baijin-detail .baijin-block-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  color: #2F6FB0;
  border-bottom: 2px solid #2F6FB0;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
@media screen and (max-width: 834px) {
  .baijin-detail .baijin-block-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.baijin-detail .baijin-block-text {
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .baijin-detail .baijin-block-text {
    font-size: 16px;
    line-height: 1.8;
  }
}
.baijin-detail .baijin-block-text p + p {
  margin-top: 1.2em;
}
.baijin-detail .baijin-block-text strong {
  font-weight: 700;
}
.baijin-detail .baijin-alert {
  color: #d60000;
  font-weight: 700;
}
.baijin-detail .baijin-contact {
  padding: 30px 20px;
  background: #e1ebf5;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .baijin-detail .baijin-contact {
    padding: 24px 16px;
  }
}
.baijin-detail .baijin-contact p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .baijin-detail .baijin-contact p {
    font-size: 16px;
  }
}
.baijin-detail .baijin-contact .baijin-contact-title {
  margin-bottom: 4px;
}

.baijin-flow .baijin-flow-head {
  background: #2F6FB0;
  padding: 50px 20px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-flow-head {
    padding: 40px 20px;
  }
}
.baijin-flow .baijin-flow-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-flow-inner {
    padding: 40px 20px 60px;
  }
}
.baijin-flow .baijin-flow-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 8px;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-flow-lead {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.baijin-flow .baijin-flow-chart {
  margin: 0 0 40px;
  line-height: 0;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-flow-chart {
    margin-bottom: 32px;
  }
}
.baijin-flow .baijin-flow-chart img {
  width: 100%;
  height: auto;
}
.baijin-flow .baijin-flow-list {
  margin: 0 0 40px;
  padding-left: 1.5em;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  list-style: none;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-flow-list {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
  }
}
.baijin-flow .baijin-flow-list li {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.baijin-flow .baijin-flow-list li + li {
  margin-top: 1.2em;
}
.baijin-flow .baijin-warning {
  padding: 24px 20px;
  margin-bottom: 50px;
  background: #fff9e6;
  border: 2px solid #d60000;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-warning {
    padding: 20px 16px;
    margin-bottom: 40px;
  }
}
.baijin-flow .baijin-warning p {
  color: #d60000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-warning p {
    font-size: 16px;
    line-height: 1.8;
  }
}
.baijin-flow .baijin-cta {
  text-align: center;
}
.baijin-flow .baijin-cta .baijin-cta-lead {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  color: #2F6FB0;
  margin-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-cta .baijin-cta-lead {
    font-size: 24px;
  }
}
.baijin-flow .baijin-cta .baijin-cta-btn {
  margin-top: 28px;
}
.baijin-flow .baijin-cta .baijin-cta-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 60%;
  max-width: 600px;
  padding: 22px 36px;
  background: #2F6FB0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-cta .baijin-cta-btn a {
    width: 100%;
    max-width: 100%;
    font-size: 18px;
    padding: 16px 24px;
    gap: 8px;
  }
}
@media (hover: hover) {
  .baijin-flow .baijin-cta .baijin-cta-btn a:hover {
    opacity: 0.85;
    color: #fff;
  }
}
.baijin-flow .baijin-cta .baijin-cta-btn .arrow {
  flex-shrink: 0;
  width: 28px;
  height: auto;
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 834px) {
  .baijin-flow .baijin-cta .baijin-cta-btn .arrow {
    width: 22px;
  }
}

.company-hero {
  background: #2F6FB0;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .company-hero {
    padding: 100px 0 40px;
  }
}
.company-hero .inner {
  padding-top: 0;
  padding-bottom: 0;
}
.company-hero .company-hero-title {
  font-size: 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .company-hero .company-hero-title {
    font-size: 30px;
  }
}
.company-hero .company-hero-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 834px) {
  .company-hero .company-hero-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .company-hero .company-hero-title {
    font-size: 20px;
  }
}

.company-content {
  padding: 60px 20px 80px;
}
@media screen and (max-width: 834px) {
  .company-content {
    padding: 40px 20px 60px;
  }
}

.company-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.company-list {
  margin: 0;
}

.company-row {
  display: flex;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 834px) {
  .company-row {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
}
.company-row dt {
  flex-shrink: 0;
  width: 160px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .company-row dt {
    width: auto;
    font-size: 16px;
    line-height: 1.6;
  }
}
.company-row dd {
  flex: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .company-row dd {
    font-size: 16px;
    line-height: 1.7;
  }
}

.qa-hero {
  background: #2F6FB0;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .qa-hero {
    padding: 100px 0 40px;
  }
}
.qa-hero .inner {
  padding-top: 0;
  padding-bottom: 0;
}
.qa-hero .qa-hero-title {
  font-size: 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .qa-hero .qa-hero-title {
    font-size: 30px;
  }
}
.qa-hero .qa-hero-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 834px) {
  .qa-hero .qa-hero-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .qa-hero .qa-hero-title {
    font-size: 20px;
  }
}

.qa-content {
  padding: 60px 20px 80px;
}
@media screen and (max-width: 834px) {
  .qa-content {
    padding: 40px 20px 60px;
  }
}

.qa-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.qa-list {
  margin: 0;
}

.qa-item {
  padding: 32px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 834px) {
  .qa-item {
    padding: 24px 0;
  }
}

.qa-q,
.qa-a {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .qa-q,
  .qa-a {
    font-size: 16px;
    line-height: 1.7;
    gap: 12px;
  }
}

.qa-q {
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 834px) {
  .qa-q {
    margin-bottom: 12px;
  }
}
.qa-q .qa-icon {
  background: #181560;
}

.qa-a {
  font-weight: 400;
}
.qa-a .qa-icon {
  background: #d60000;
}

.qa-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .qa-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}

.qa-text {
  flex: 1;
  padding-top: 4px;
}
@media screen and (max-width: 834px) {
  .qa-text {
    padding-top: 2px;
  }
}

.contact-hero {
  background: #2F6FB0;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .contact-hero {
    padding: 100px 0 40px;
  }
}
.contact-hero .inner {
  padding-top: 0;
  padding-bottom: 0;
}
.contact-hero .contact-hero-title {
  font-size: 40px;
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .contact-hero .contact-hero-title {
    font-size: 30px;
  }
}
.contact-hero .contact-hero-title {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 834px) {
  .contact-hero .contact-hero-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .contact-hero .contact-hero-title {
    font-size: 20px;
  }
}

.contact-content {
  padding: 60px 20px 80px;
}
@media screen and (max-width: 834px) {
  .contact-content {
    padding: 40px 20px 60px;
  }
}

.contact-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-lead {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .contact-lead {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
  }
}

.contact-message {
  margin-bottom: 32px;
  padding: 20px 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .contact-message {
    margin-bottom: 24px;
    padding: 16px 18px;
    font-size: 15px;
  }
}
.contact-message p {
  margin: 0;
}
.contact-message ul {
  margin: 0;
  padding-left: 1.2em;
}
.contact-message li + li {
  margin-top: 0.4em;
}

.contact-message-success {
  background: #eef7fd;
  border: 1px solid #2F6FB0;
  color: #333;
}

.contact-message-error {
  background: #fff5f5;
  border: 1px solid #d60000;
  color: #d60000;
}

.contact-message-notice {
  background: #fff9e6;
  border: 1px solid #c9a227;
  color: #333;
}

.contact-form {
  position: relative;
  margin: 0;
}
.contact-form .contact-honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.contact-form .contact-honey label,
.contact-form .contact-honey input {
  display: block;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  opacity: 0;
}

.contact-field {
  margin-bottom: 32px;
}
@media screen and (max-width: 834px) {
  .contact-field {
    margin-bottom: 24px;
  }
}
.contact-field label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  cursor: pointer;
}
@media screen and (max-width: 834px) {
  .contact-field label {
    margin-bottom: 8px;
    gap: 10px;
  }
}
.contact-field .contact-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .contact-field .contact-label {
    font-size: 16px;
  }
}
.contact-field .contact-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 2px 8px;
  background: #d60000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .contact-field .contact-required {
    min-width: 40px;
    font-size: 12px;
  }
}
.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #999;
  border-radius: 2px;
  background: #eee;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 834px) {
  .contact-field input,
  .contact-field textarea {
    padding: 12px 14px;
    font-size: 16px;
  }
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #999;
}
.contact-field input:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #2F6FB0;
}
.contact-field textarea {
  min-height: 220px;
  resize: vertical;
}
@media screen and (max-width: 834px) {
  .contact-field textarea {
    min-height: 180px;
  }
}

.contact-submit {
  margin: 40px 0 0;
}
@media screen and (max-width: 834px) {
  .contact-submit {
    margin-top: 32px;
  }
}
.contact-submit button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 40px;
  border: none;
  border-radius: 2px;
  background: #2F6FB0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .contact-submit button {
    width: 100%;
    min-width: 0;
    font-size: 16px;
    padding: 14px 24px;
  }
}
@media (hover: hover) {
  .contact-submit button:hover {
    opacity: 0.85;
  }
}

.privacy-content {
  padding: 60px 20px 80px;
}
@media screen and (max-width: 834px) {
  .privacy-content {
    padding: 40px 20px 60px;
  }
}

.privacy-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.privacy-lead {
  margin: 0 0 48px;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .privacy-lead {
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.8;
  }
}

.privacy-list {
  margin: 0;
}

.privacy-item {
  padding: 32px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 834px) {
  .privacy-item {
    padding: 24px 0;
  }
}
.privacy-item:first-child {
  border-top: 1px solid #ccc;
}

.privacy-title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #2F6FB0;
}
@media screen and (max-width: 834px) {
  .privacy-title {
    margin-bottom: 12px;
    font-size: 18px;
  }
}

.privacy-body {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .privacy-body {
    font-size: 16px;
    line-height: 1.8;
  }
}
.privacy-body > p {
  margin: 0 0 16px;
}
.privacy-body > p:last-child {
  margin-bottom: 0;
}
.privacy-body > ul {
  margin: 0 0 16px;
  padding-left: 1.4em;
  list-style: disc;
}
.privacy-body > ul:last-child {
  margin-bottom: 0;
}
.privacy-body > ul > li {
  margin-bottom: 12px;
}
.privacy-body > ul > li:last-child {
  margin-bottom: 0;
}
.privacy-body > ul > li > ul {
  margin-top: 12px;
  padding-left: 1.2em;
  list-style: circle;
}
.privacy-body > ul > li > ul > li {
  margin-bottom: 8px;
}
.privacy-body > ul > li > ul > li:last-child {
  margin-bottom: 0;
}
.privacy-body > ul > li > ul > li > ul {
  margin-top: 8px;
  padding-left: 1.2em;
  list-style: square;
}

.privacy-info {
  margin-top: 20px;
  padding: 24px 28px;
  background: #e1ebf5;
  border-radius: 4px;
}
@media screen and (max-width: 834px) {
  .privacy-info {
    padding: 20px 16px;
  }
}
.privacy-info p {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .privacy-info p {
    font-size: 16px;
  }
}
.privacy-info p:last-child {
  margin-bottom: 0;
}
.privacy-info a {
  font-weight: 700;
}

.not-found-code {
  margin: 0 0 8px;
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 834px) {
  .not-found-code {
    font-size: 56px;
  }
}
@media screen and (max-width: 600px) and (orientation: portrait) {
  .not-found-code {
    font-size: 40px;
  }
}

.not-found-content {
  padding: 60px 20px 80px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .not-found-content {
    padding: 40px 20px 60px;
  }
}

.not-found-content-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.not-found-lead {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .not-found-lead {
    font-size: 18px;
  }
}

.not-found-text {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 834px) {
  .not-found-text {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.8;
  }
}

.not-found-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  padding: 18px 36px;
  background: #2F6FB0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 834px) {
  .not-found-btn a {
    width: 100%;
    max-width: 400px;
    min-width: 0;
    font-size: 18px;
    padding: 16px 24px;
  }
}
@media (hover: hover) {
  .not-found-btn a:hover {
    opacity: 0.85;
    color: #fff;
  }
}
.not-found-btn a .arrow {
  width: 24px;
  height: auto;
}

/*# sourceMappingURL=common.css.map */
