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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  background: #ffffff;
  line-height: 1.7;
  line-break: strict;
  font-feature-settings: "palt";
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #1d2975;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.section-title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 400;
  color: #0c97ae;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, #0c97ae, #1d2975);
  border-radius: 2px;
}

.marker {
  background: linear-gradient(transparent 50%, #fffb00 70%);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: #e1a346;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 163, 70, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: #1d2975;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #1d2975;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: #1d2975;
  color: #ffffff;
}

.red {
  color: #e63946;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.lp-header.scrolled {
  background: rgba(21, 50, 88, 0.97);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
}
.lp-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  max-width: 1200px;
  margin-inline: auto;
}
.lp-header .header-logo img {
  height: 36px;
  width: auto;
}
.lp-header .header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.lp-header .header-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.lp-header .header-nav a:hover {
  color: #9dd1d6;
}
.lp-header .header-cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.875rem;
}
.lp-header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.lp-header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.lp-header .hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lp-header .hamburger.open span:nth-child(2) {
  opacity: 0;
}
.lp-header .hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
  .lp-header .header-inner {
    padding: 14px 20px;
  }
  .lp-header .header-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(21, 50, 88, 0.98);
    flex-direction: column;
    gap: 0;
    padding-bottom: 20px;
  }
  .lp-header .header-nav a {
    padding: 14px 24px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .lp-header .header-nav.open {
    display: flex;
  }
  .lp-header .header-cta {
    display: none;
  }
  .lp-header .hamburger {
    display: flex;
  }
}

.lp-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #153258 0%, #0d1f3c 60%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}
.lp-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(12, 151, 174, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 96, 162, 0.2) 0%, transparent 70%);
  pointer-events: none;
}
.lp-hero .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}
.lp-hero .hero-content {
  flex: 1;
  color: #ffffff;
}
.lp-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 151, 174, 0.2);
  border: 1px solid rgba(12, 151, 174, 0.4);
  color: #9dd1d6;
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp-hero .hero-product-name {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.lp-hero .hero-product-name img {
  height: 56px;
  width: auto;
}
.lp-hero .hero-product-name span {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.lp-hero .hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  color: #ffffff;
}
.lp-hero .hero-title .jp-badge {
  display: inline-block;
  width: 49px;
  height: 33px;
  background: url("../assets/images/jp_icon.png") no-repeat center;
  background-size: contain;
  vertical-align: middle;
  margin-left: 12px;
  margin-bottom: 8px;
}
.lp-hero .hero-subtitle {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: rgba(255, 255, 255, 0.65);
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}
.lp-hero .hero-tagline {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 500;
  color: #9dd1d6;
  margin-bottom: 40px;
  line-height: 1.6;
}
.lp-hero .hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.lp-hero .hero-image {
  flex-shrink: 0;
  width: 420px;
  position: relative;
}
.lp-hero .hero-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .lp-hero .hero-inner {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }
  .lp-hero .hero-product-name {
    justify-content: center;
  }
  .lp-hero .hero-product-name span {
    text-align: left;
  }
  .lp-hero .hero-actions {
    justify-content: center;
  }
  .lp-hero .hero-image {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

.lp-features {
  padding-block: 100px;
  background: #f8f9fa;
}
.lp-features .product-image-wrap {
  text-align: center;
  margin-bottom: 48px;
}
.lp-features .product-image-wrap img {
  width: 246px;
  height: 246px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 6px solid #dbeef0;
  box-shadow: 0 8px 32px rgba(12, 151, 174, 0.2);
  margin-inline: auto;
}
.lp-features .product-image-wrap p {
  margin-top: 12px;
  font-size: 0.875rem;
  color: #777;
}
.lp-features .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 0;
}
@media (max-width: 540px) {
  .lp-features .features-grid {
    grid-template-columns: 1fr;
  }
}
.lp-features .feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #0c97ae;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.lp-features .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.lp-features .feature-card .feature-number {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(12, 151, 174, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}
.lp-features .feature-card h3 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1d2975;
  margin-bottom: 12px;
  line-height: 1.4;
}
.lp-features .feature-card p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
}
.lp-features .feature-card p strong {
  color: #0c97ae;
}

.lp-comparison-visual {
  padding-block: 100px;
  background: #ececec;
}
.lp-comparison-visual .comparison-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.lp-comparison-visual .comp-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.lp-comparison-visual .comp-card:hover {
  transform: translateY(-4px);
}
.lp-comparison-visual .comp-card.highlighted {
  border: 3px solid #0c97ae;
  position: relative;
}
.lp-comparison-visual .comp-card.highlighted .comp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0c97ae;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.lp-comparison-visual .comp-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d2975;
  margin-bottom: 20px;
}
.lp-comparison-visual .comp-card img {
  margin-inline: auto;
  margin-bottom: 20px;
}
.lp-comparison-visual .comp-card p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 540px) {
  .lp-comparison-visual .comp-card {
    width: 100%;
    max-width: 320px;
  }
}

.lp-table {
  padding-block: 100px;
  background: #ffffff;
}
.lp-table .table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.lp-table table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.lp-table thead tr th {
  padding: 16px 20px;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.lp-table thead tr th.th-eva, .lp-table thead tr th.th-pur {
  background: #898989;
  color: #ffffff;
}
.lp-table thead tr th.th-po {
  background: #0c97ae;
  color: #ffffff;
  font-size: 1.25rem;
}
.lp-table thead tr th.th-empty {
  background: #ffffff;
}
.lp-table tbody tr td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.lp-table tbody tr td.td-label {
  text-align: left;
  font-weight: 600;
  color: #444;
  background: #ececec;
}
.lp-table tbody tr td.td-eva, .lp-table tbody tr td.td-pur {
  background: #dcdddd;
  color: #555;
}
.lp-table tbody tr td.td-eva-alt, .lp-table tbody tr td.td-pur-alt {
  background: #f2f2f2;
  color: #555;
}
.lp-table tbody tr td.td-po {
  background: #dbeef0;
  font-weight: 600;
  color: #1d2975;
}
.lp-table tbody tr td.td-po-alt {
  background: #e8f7f9;
  font-weight: 600;
  color: #1d2975;
}
.lp-table tbody tr:last-child td {
  border-bottom: none;
}
.lp-table .caution {
  color: #e63946;
  font-size: 0.875rem;
  padding-inline: 8px;
  text-align: center;
}

.lp-test {
  padding-block: 100px;
  background: #153258;
  color: #ffffff;
  text-align: center;
}
.lp-test .section-title {
  color: #ffffff;
}
.lp-test .section-title span {
  color: #9dd1d6;
}
.lp-test .section-title::after {
  background: linear-gradient(90deg, #9dd1d6, #ffffff);
}
.lp-test .test-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.lp-test .test-note {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
}
.lp-test .test-image img {
  max-width: 700px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.lp-tips {
  padding-block: 100px;
  background: #ffffff;
}
.lp-tips .tips-inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 768px) {
  .lp-tips .tips-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.lp-tips .tips-list {
  flex: 1;
}
.lp-tips .tips-list ol {
  counter-reset: tips;
  list-style: none;
}
.lp-tips .tips-list li {
  counter-increment: tips;
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}
.lp-tips .tips-list li::before {
  content: counter(tips);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #0c97ae;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}
.lp-tips .tips-image {
  flex-shrink: 0;
  width: 380px;
  text-align: center;
}
.lp-tips .tips-image img {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}
.lp-tips .tips-image figcaption {
  font-size: 0.875rem;
  color: #777;
}
@media (max-width: 768px) {
  .lp-tips .tips-image {
    width: 100%;
    max-width: 440px;
    margin-inline: auto;
  }
}

.lp-faq {
  padding-block: 100px;
  background: #f8f9fa;
}
.lp-faq .faq-list {
  max-width: 800px;
  margin-inline: auto;
}
.lp-faq .faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.lp-faq .faq-item summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.lp-faq .faq-item summary::-webkit-details-marker {
  display: none;
}
.lp-faq .faq-item summary .faq-q {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #0c97ae;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 2px;
}
.lp-faq .faq-item summary .faq-question {
  flex: 1;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  padding-right: 16px;
}
.lp-faq .faq-item summary .faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.lp-faq .faq-item summary .faq-arrow::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: translateY(-25%) rotate(45deg);
  transition: transform 0.3s ease;
}
.lp-faq .faq-item[open] summary .faq-arrow::after {
  transform: translateY(25%) rotate(225deg);
}
.lp-faq .faq-item .faq-answer {
  padding: 0 24px 20px 68px;
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  position: relative;
}
.lp-faq .faq-item .faq-answer::before {
  content: "A";
  position: absolute;
  left: 24px;
  top: 0;
  width: 28px;
  height: 28px;
  background: #ffe0e0;
  color: #e63946;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
}
.lp-faq .faq-item .faq-answer a {
  color: #0c97ae;
  text-decoration: underline;
}
.lp-faq .faq-item .faq-answer a:hover {
  text-decoration: none;
}

.lp-settings {
  padding-block: 100px;
  background: #ffffff;
}
.lp-settings .settings-intro {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 60px;
}
.lp-settings .settings-list {
  max-width: 760px;
  margin-inline: auto;
}
.lp-settings .settings-item {
  border-left: 4px solid #0c97ae;
  padding: 0 0 48px 32px;
  margin-left: 16px;
  position: relative;
}
.lp-settings .settings-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 16px;
  height: 16px;
  background: #0c97ae;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #0c97ae;
}
.lp-settings .settings-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}
.lp-settings .settings-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1d2975;
  margin-bottom: 12px;
  line-height: 1.5;
}
.lp-settings .settings-item p {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}
.lp-settings .settings-item .settings-images {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.lp-settings .settings-item .settings-images img {
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  flex: 1;
  min-width: 200px;
}
.lp-settings .settings-item .settings-highlight {
  background: linear-gradient(135deg, rgba(12, 151, 174, 0.08), rgba(21, 50, 88, 0.05));
  border: 1px solid rgba(12, 151, 174, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
}
.lp-settings .settings-item .settings-highlight p {
  color: #333;
  margin-bottom: 0;
}

.lp-catalog {
  padding-block: 100px;
  background: linear-gradient(135deg, #1d2975 0%, #153258 100%);
  text-align: center;
  color: #ffffff;
}
.lp-catalog .section-title {
  color: #ffffff;
}
.lp-catalog .section-title span {
  color: #9dd1d6;
}
.lp-catalog .section-title::after {
  background: linear-gradient(90deg, #9dd1d6, #ffffff);
}
.lp-catalog .catalog-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lp-catalog .catalog-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
}
.lp-catalog .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: #ffffff;
  color: #1d2975;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.lp-catalog .btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.lp-catalog .btn-download svg {
  width: 20px;
  height: 20px;
}

.lp-footer {
  background: #0d1929;
  color: rgba(255, 255, 255, 0.8);
  padding-block: 48px 32px;
}
.lp-footer .footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
  .lp-footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.lp-footer .footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 20px;
}
.lp-footer .footer-brand address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
.lp-footer .footer-brand address a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.lp-footer .footer-brand address a:hover {
  color: #9dd1d6;
}
.lp-footer .footer-cta .btn-primary {
  padding: 14px 32px;
}
.lp-footer .footer-copy {
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 2px solid #153258;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 50;
}
.page-top.visible {
  opacity: 1;
  visibility: visible;
}
.page-top:hover {
  background: #1d2975;
}
.page-top:hover .arrow {
  border-top-color: #ffffff;
  border-right-color: #ffffff;
}
.page-top .arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid #153258;
  border-right: 2px solid #153258;
  transform: translateY(20%) rotate(-45deg);
  transition: border-color 0.3s ease;
}

.img-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.img-modal.open {
  display: flex;
}
.img-modal__img {
  max-width: 90vw;
  max-height: 85vh;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.2s ease;
}
.img-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.img-modal__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.settings-images img {
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */