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

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

body {
  --color-bg: #f6f7fb;
  --color-black: #333333;
  --color-inactive: #a1aab2;
  --color-line: #22c720;
  --color-primary: #05355f;
  --color-primary-light: #d2d8e5;
  --color-white: #ffffff;
  --color-secondary: #960a28;
  --color-yellow: #fff348;
  color: var(--color-black);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

.mb-block {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mb-block {
    display: block !important;
  }
}

.mb-none {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .mb-none {
    display: none !important;
  }
}

.page-breadcrumbs ul {
  column-gap: 39px;
  display: flex;
  margin-bottom: 16px;
  padding: 0 32px;
}
.page-breadcrumbs ul a {
  color: inherit;
}
.page-breadcrumbs ul li {
  font-size: 14px;
  position: relative;
}
.page-breadcrumbs ul li:not(:last-child)::after {
  border-right: 1px solid var(--color-black);
  border-top: 1px solid var(--color-black);
  display: block;
  content: "";
  height: 7px;
  margin-top: -3px;
  position: absolute;
  right: -22px;
  top: 50%;
  transform: rotate(45deg);
  width: 7px;
}

@media (max-width: 768px) {
  .page-breadcrumbs {
    padding: 16px 0 24px;
  }
  .page-breadcrumbs ul {
    padding: 0 16px;
    column-gap: 30px;
    margin-bottom: 0;
    align-items: center;
  }
  .page-breadcrumbs ul li {
    font-size: 14px;
    color: #333333;
    font-weight: 400;
    line-height: 1;
  }
  .page-breadcrumbs ul li:not(:last-child)::after {
    right: -18px;
    height: 6px;
    width: 6px;
    border-right: 2px solid #999999;
    border-top: 2px solid #999999;
  }
  .page-breadcrumbs ul li:last-child {
    color: #333333;
    font-weight: 400;
  }
  .page-breadcrumbs ul li a {
    color: #333333;
    text-decoration: none;
  }
}
.page-content {
  display: flex;
  justify-content: space-between;
}
.page-content main {
  overflow: hidden;
  padding: 32px 0;
  flex: 0 0 873px;
}
.page-content aside {
  padding: 32px 16px;
  flex: 0 0 375px;
}
.page-ctn {
  margin: 0 auto;
  max-width: 1312px;
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-content {
    display: block;
  }
  .page-content aside {
    width: 100%;
    padding: 16px;
  }
  .page-content main {
    width: 100%;
    padding: 0;
  }
  .page-content main h1 {
    margin-top: 28px;
  }
  .page-ctn {
    padding: 0 12px;
    width: 100%;
  }
}

.page-header {
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-header {
    margin-bottom: 0;
  }
}
.page-header-cta img {
  display: block;
  width: 294px;
}
@media screen and (max-width: 768px) {
  .page-header-cta img {
    margin-top: 32px;
    width: 100%;
  }
}
.page-header-left {
  background: var(--color-white);
  border-radius: 999px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.24);
  height: 91px;
  margin-top: 32px;
  padding-left: 32px;
  padding-right: 12px;
}
@media screen and (max-width: 768px) {
  .page-header-left {
    align-items: center;
    display: flex;
    height: 64px;
    justify-content: space-between;
    margin-top: 16px;
    padding-left: 16px;
    padding-right: 8px;
    position: relative;
    z-index: 999;
  }
}
.page-header-logo {
  display: block;
  height: 100%;
  padding-top: 4px;
  width: 216px;
}
.page-header-logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-header-logo {
    padding-top: 2px;
    width: 152px;
  }
}
.page-header-nav ul {
  align-items: center;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .page-header-nav ul {
    display: block;
    margin-top: 180px;
    padding: 0 12px;
  }
}
@media screen and (max-width: 768px) {
  .page-header-nav ul li {
    border-top: 1px dashed var(--color-white);
  }
  .page-header-nav ul li:first-child {
    border-top: none;
  }
}
.page-header-nav ul li a {
  color: var(--color-black);
  display: block;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  padding: 10px 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-header-nav ul li a {
    background-image: url(../images/header-nav-icon.png);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: right 16px center;
    color: var(--color-primary);
    font-weight: 500;
    padding: 24px 16px;
    position: relative;
    text-align: left;
  }
}
.page-header-nav-link-nl {
  display: block;
}
@media screen and (max-width: 768px) {
  .page-header-nav-link-nl {
    display: inline;
  }
}
.page-header-right {
  column-gap: 32px;
  display: flex;
  position: absolute;
  right: 12px;
  top: 0;
  width: 820px;
}
@media screen and (max-width: 768px) {
  .page-header-right {
    display: none;
  }
}
.page-header-toggler {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-header-toggler {
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    display: block;
    height: 48px;
    position: relative;
    width: 48px;
  }
  .page-header-toggler-item {
    background-color: var(--color-white);
    border-radius: 3px;
    display: block;
    height: 3px;
    margin: 4px auto;
    pointer-events: none;
    width: 24px;
  }
}
@media screen and (max-width: 768px) {
  .page-header-pc {
    display: none;
  }
}
.page-header-pc-logo img {
  display: block;
  width: 216px;
}

body.page-header-nav-open {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body.page-header-nav-open .page-header-right {
    background-color: #d2d8e5;
    display: block;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 998;
  }
}
@media screen and (max-width: 768px) {
  body.page-header-nav-open .page-header-toggler-item {
    position: relative;
  }
  body.page-header-nav-open .page-header-toggler-item:first-child {
    transform: rotate(45deg);
    top: 3px;
  }
  body.page-header-nav-open .page-header-toggler-item:nth-child(2) {
    transform: rotate(135deg);
    top: -4px;
  }
  body.page-header-nav-open .page-header-toggler-item:last-child {
    display: none;
  }
}

.main-front-h1 {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 24px;
}
.main-front-h2 {
  color: var(--color-black);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.main-front-h2-sub {
  font-family: Poppins, sans-serif;
  color: var(--color-primary);
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.main-front-post {
  border-radius: 8px;
  flex: 0 0 268px;
  overflow: hidden;
}
.main-front-post h3 {
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  padding: 16px;
}
.main-front-post h3 a {
  overflow: hidden;
  display: -webkit-box;
  height: 60px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.main-front-post img {
  display: block;
  height: 166px;
  object-fit: cover;
  width: 100%;
}
.main-front-posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  margin: 16px 0;
}
.main-front-section {
  background-color: var(--color-bg);
  border-radius: 8px;
  margin-top: 24px;
  padding: 10px 18.5px;
}
.main-shops-campaign {
  background-color: var(--color-yellow);
  border-radius: 8px;
  flex-basis: 451px;
  flex-grow: 0;
  flex-shrink: 0;
  color: var(--color-primary);
  padding: 8px 16px 8px 32px;
}
.main-shops-campaign-content {
  font-size: 18px;
  font-weight: 700;
}
.main-shops-campaign-note {
  font-size: 12px;
  font-weight: 300;
}
.main-shops-campaign-term {
  font-size: 18px;
  font-weight: 700;
  padding-left: 17.5px;
}
.main-shops-campaign-term-n {
  font-size: 24px;
}
.main-shops-content {
  padding: 0 16px;
}
.main-shops-content p {
  font-size: 16px;
  margin-top: 24px;
}
.main-shops-content-ctn {
  background-color: var(--color-bg);
  overflow: hidden;
  padding-left: 32px;
  padding-right: 32px;
}
.main-shops-h1 {
  font-size: 32px;
  font-weight: 700;
  padding: 12px 0;
}
.main-shops-h1-ctn {
  align-items: center;
  background-color: var(--color-primary);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  padding: 12px 12px 12px 32px;
}
.main-shops-h2 {
  background-color: var(--color-primary-light);
  border-left: 3px solid var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  padding: 8px 16px;
}
.main-shops-h2-sub {
  color: var(--color-white);
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  margin-left: 12px;
}
.main-shops-model-type {
  background-color: var(--color-white);
  border: 0.5px solid var(--color-inactive);
  border-radius: 999px;
  color: var(--color-inactive);
  padding: 4px 12px;
}
.main-shops-model-type.active {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.main-shops-model-types {
  column-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  padding: 0 16px;
}
.main-shops-thumb-box-left {
  flex: 0 0 360px;
}
.main-shops-thumb-box-left img {
  height: 240px;
  object-fit: cover;
  width: 100%;
}
.main-shops-thumb-box-right {
  flex: 0 0 417px;
}
@media screen and (max-width: 768px) {
  .main-shops-h1-ctn {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }
  .main-shops-campaign {
    flex-basis: auto;
    padding: 8px 16px;
    width: 100%;
  }
  .main-shops-campaign-note {
    display: block;
    text-align: right;
  }
  .main-front-post {
    margin-bottom: 16px;
  }
  .main-front-posts {
    display: block;
  }
}

/* wordpress */
.pagination .nav-links {
  align-items: center;
  display: flex;
  column-gap: 16px;
  justify-content: center;
}
.pagination .page-numbers {
  color: #dbdbdb;
  display: inline-block;
  font-family: Poppins;
  font-size: 28px;
  font-weight: 700;
}
.pagination .page-numbers.current {
  color: #000000;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  font-size: 20px;
}

.side-btn {
  display: block;
}
.side-btn:nth-child(2) {
  margin-top: 48px;
}
.side-btns {
  margin-top: 26px;
}
.side-h2 {
  color: var(--color-black);
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.side-h2-sub {
  color: var(--color-primary);
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-right: 8px;
  vertical-align: text-bottom;
}
.side-flow-item {
  border-radius: 16px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1215686275);
  margin-top: 24px;
  padding: 16px 24px;
}
.side-flow-item p {
  margin: 8px 0;
}
.side-flow-item img {
  border-radius: 8px;
  height: 158px;
  margin-top: 8px;
  object-fit: cover;
  width: 100%;
}
.side-flow-hl {
  align-items: center;
  color: var(--color-primary);
  column-gap: 8px;
  display: flex;
  font-size: 20px;
  font-weight: 500;
}
.side-flow-n {
  border: solid 1px var(--color-primary);
  border-radius: 50%;
  display: inline-block;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  height: 24px;
  text-align: center;
  width: 24px;
}
.side-flow-t {
  display: inline-block;
  line-height: 24px;
}

.popular-posts {
  background: #F6F7FB;
  border-radius: 8px;
  padding: 32px 24px;
}
.popular-posts .popular-posts-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.popular-posts .popular-posts-title-en {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: #05355F;
  margin: 0;
}
.popular-posts .popular-posts-title-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: #333333;
  margin: 0;
}
.popular-posts .popular-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popular-posts .popular-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
}
.popular-posts .popular-post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.popular-posts .popular-post-card a {
  text-decoration: none;
  display: block;
}
.popular-posts .popular-post-card a img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}
.popular-posts .popular-post-card h3 {
  padding: 12px 16px;
  margin: 0;
}
.popular-posts .popular-post-card h3 a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
  transition: color 0.3s;
}
.popular-posts .popular-post-card h3 a:hover {
  color: #05355F;
}

.page-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 48px 0;
}
.page-footer-logo {
  display: block;
  margin: 0 auto;
  width: 216px;
}
.page-footer-nav {
  column-gap: 53px;
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.page-footer-nav li a {
  color: var(--color-white);
  font-size: 16px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .page-footer-nav {
    flex-direction: column;
    margin-top: 32px;
    row-gap: 32px;
  }
  .page-footer-nav li {
    text-align: center;
  }
}

.article-hero {
  background: #fff;
  margin-bottom: 32px;
}
.article-hero .article-hero-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #003a6c;
  margin: 0 0 24px 0;
  padding: 0;
}
.article-hero .article-hero-image {
  width: 100%;
  margin-bottom: 16px;
}
.article-hero .article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}
.article-hero .article-hero-meta {
  text-align: right;
}
.article-hero .article-hero-meta .update-date {
  font-size: 18px;
  font-weight: bold;
}

.article-description {
  padding: 24px 0;
  margin: 0 0 40px;
}
.article-description p {
  margin: 0;
  padding: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}

.post-header {
  margin-bottom: 40px;
}
.post-header .post-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.post-header .post-meta time {
  color: #666;
  font-size: 14px;
}
.post-header .post-meta .category-tag {
  background: #1a73e8;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.post-header .post-title {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-weight: 700;
}
.post-header .post-excerpt {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}

.post-thumbnail {
  margin-bottom: 60px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.content-wrapper h3 {
  font-size: 22px;
  margin: 30px 0 15px;
  color: #333;
}
.content-wrapper h4 {
  font-size: 18px;
  margin: 20px 0 10px;
  color: #333;
}
.content-wrapper p {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}
.content-wrapper .ranking-title {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #1a1a1a;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0e0e0;
}

.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid #1a73e8;
  padding: 25px;
  margin: 30px 0;
  border-radius: 4px;
}
.highlight-box h4 {
  margin-top: 0;
  color: #1a73e8;
}
.highlight-box ul {
  margin: 15px 0 0 20px;
}
.highlight-box ul li {
  margin-bottom: 10px;
}

.model-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}
.model-list .model-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s;
}
.model-list .model-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.model-list .model-card h4 {
  margin: 0 0 8px;
  color: #1a1a1a;
}
.model-list .model-card p {
  margin: 0 0 12px;
  color: #666;
  font-size: 14px;
}
.model-list .model-card .price-range {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}
.cta-section h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 28px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}
.cta-section .cta-button {
  display: inline-block;
  background: white;
  color: #667eea;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
}
.cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.post-footer {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}
.share-buttons span {
  color: #666;
  font-size: 14px;
}
.share-buttons .share-btn {
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: opacity 0.3s;
}
.share-buttons .share-btn:hover {
  opacity: 0.8;
}
.share-buttons .share-btn.twitter {
  background: #1da1f2;
}
.share-buttons .share-btn.facebook {
  background: #1877f2;
}
.share-buttons .share-btn.line {
  background: #00c300;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.post-navigation a {
  display: block;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}
.post-navigation a:hover {
  background: #e8f0fe;
  transform: translateY(-2px);
}
.post-navigation .nav-prev {
  text-align: left;
}
.post-navigation .nav-next {
  text-align: right;
}
.post-navigation span {
  display: block;
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.post-navigation p {
  color: #333;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .post-content {
    grid-template-columns: 1fr;
  }
  .post-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .sticky-widget {
    position: relative;
    top: 0;
  }
}
@media (max-width: 768px) {
  .single-post {
    padding: 0;
  }
  .single-post .page-ctn {
    padding: 0 12px;
    max-width: 100%;
  }
  .article-hero {
    margin-bottom: 24px;
    padding: 0;
  }
  .article-hero .article-hero-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #05355f;
    margin: 0 0 16px 0;
    padding: 0;
  }
  .article-hero .article-hero-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 16px;
    text-align: left;
  }
  .article-hero .article-hero-meta .update-date {
    font-size: 12px;
  }
  .article-hero .article-hero-image {
    margin: 0 0 0;
    width: 100%;
  }
  .article-hero .article-hero-image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .article-description {
    padding: 0;
    margin: 0;
    background: #ffffff;
  }
  .article-description p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
  }
  .post-header .post-title {
    font-size: 28px;
  }
  .post-header .post-excerpt {
    font-size: 16px;
  }
  .content-wrapper h2 {
    font-size: 24px;
  }
  .content-wrapper h3 {
    font-size: 20px;
  }
  .post-sidebar {
    grid-template-columns: 1fr;
  }
  .post-navigation {
    grid-template-columns: 1fr;
  }
  .cta-section {
    padding: 30px 20px;
  }
  .share-buttons {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .single-post {
    padding: 0;
  }
  .article-hero {
    padding: 0;
  }
  .article-hero .article-hero-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
  }
  .article-hero .article-hero-meta .update-date {
    font-size: 11px;
  }
  .article-description p {
    font-size: 13px;
  }
  .post-header .post-title {
    font-size: 24px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  .model-card {
    padding: 15px;
  }
}
.ranking-section {
  margin: 40px 0;
}
.ranking-section .ranking-title {
  font-size: 32px;
  font-weight: 700;
  color: #003a6c;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.ranking-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 64px;
  overflow: hidden;
}
.ranking-item .ranking-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 32px;
  background: #05355f;
  color: white;
  border-radius: 16px 16px 0 0;
}
.ranking-item .ranking-header .ranking-number {
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.ranking-item .ranking-header .ranking-number .crown-icon {
  width: 49px;
  height: 36px;
  display: none;
  margin-right: 16px;
}
.ranking-item .ranking-header .ranking-number .crown-icon img {
  width: 100%;
  height: 100%;
}
.ranking-item .ranking-header .ranking-number .number {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 0.8;
}
.ranking-item .ranking-header .ranking-number .suffix {
  font-size: 16px;
  font-weight: 700;
}
.ranking-item .ranking-header.ranking-first .crown-icon {
  display: block;
}
.ranking-item .ranking-header .shop-name {
  flex: 1;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
  color: white;
}
.ranking-item .ranking-header .shop-info-header {
  display: flex;
  column-gap: 32px;
}
.ranking-item .ranking-header .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ranking-item .ranking-header .rating .stars {
  display: flex;
  gap: 0;
  position: relative;
  width: 100px;
  height: 19px;
}
.ranking-item .ranking-header .rating .stars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/star-empty.svg") repeat-x;
  background-size: 20px 19px;
}
.ranking-item .ranking-header .rating .stars .stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  background: url("../images/star-filled.svg") repeat-x;
  background-size: 20px 19px;
}
.ranking-item .ranking-header .rating .score {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.ranking-item:not(.ranking-first) .ranking-header {
  background: #f5f5f5;
  color: #333;
}
.ranking-item:not(.ranking-first) .ranking-header .ranking-number {
  background: #003a6c;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 16px;
  min-width: auto;
}
.ranking-item:not(.ranking-first) .ranking-header .shop-name {
  font-size: 20px;
}
.ranking-item:not(.ranking-first) .ranking-header .rating .stars {
  color: #ffa500;
}

.ranking-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 25px 25px 0;
  background: #f6f7fb;
  position: relative;
}

.shop-image {
  position: relative;
  flex: 0 0 360px;
  width: 360px;
}
.shop-image > img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #f6f7fb;
  border-radius: 4px;
}
.shop-image .shop-image-swiper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background: #f6f7fb;
  border-radius: 4px;
  overflow: hidden;
}
.shop-image .shop-image-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-image .shop-image-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop-image .shop-image-swiper .swiper-button-prev,
.shop-image .shop-image-swiper .swiper-button-next {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.shop-image .shop-image-swiper .swiper-button-prev::after,
.shop-image .shop-image-swiper .swiper-button-next::after {
  font-size: 14px;
  color: #05355f;
  font-weight: bold;
}
.shop-image .shop-image-swiper .swiper-button-prev:hover,
.shop-image .shop-image-swiper .swiper-button-next:hover {
  background: rgb(255, 255, 255);
}
.shop-image .shop-image-swiper .swiper-button-prev {
  left: 10px;
}
.shop-image .shop-image-swiper .swiper-button-next {
  right: 10px;
}
.shop-image .shop-image-swiper .swiper-pagination {
  position: static;
  margin-top: 12px;
  text-align: center;
}
.shop-image .shop-image-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #a1aab2;
  opacity: 1;
  margin: 0 4px;
}
.shop-image .shop-image-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #05355f;
  width: 24px;
  border-radius: 4px;
}
.shop-image .campaign-badge {
  background: #fff348;
  padding: 16px 32px 8px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  margin: 0 8px;
}
.shop-image .campaign-badge .campaign-text {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #05355f;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.shop-image .campaign-badge .campaign-text p {
  color: #05355f;
  margin: 0;
  padding: 0;
}
.shop-image .campaign-badge .campaign-text:first-line {
  letter-spacing: 0.04em;
}
.shop-image .campaign-badge .campaign-note {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #05355f;
  line-height: 1.5;
  text-align: right;
  width: 100%;
}

.shop-details {
  flex: 1;
}
.shop-details .shop-info > div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.shop-details .shop-info > div .label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 80px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-right: 15px;
}
.shop-details .shop-info > div .label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.shop-details .models .label::before {
  background-image: url("../images/computer-icon.svg");
}
.shop-details .methods .label::before {
  background-image: url("../images/search-icon.svg");
}
.shop-details .payment .label::before {
  background-image: url("../images/box-icon.svg");
}
.shop-details .access .label::before {
  background-image: url("../images/location-icon.svg");
}
.shop-details .phone .label::before {
  background-image: url("../images/phone-icon.svg");
}
.shop-details .hours .label::before {
  content: "🕐";
  background: none;
  width: auto;
  height: auto;
}
.shop-details .model-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.shop-details .model-tags .tag {
  padding: 2px 8px;
  border: 0.5px solid #a1aab2;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: #a1aab2;
  background: white;
  transition: all 0.2s;
}
.shop-details .model-tags .tag.active {
  border: 1px solid #05355f;
  color: #05355f;
  font-weight: 400;
}
.shop-details .method-tags,
.shop-details .payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.shop-details .method-tags .tag,
.shop-details .payment-tags .tag {
  position: relative;
  padding: 0 8px;
  border: 0.5px solid #a1aab2;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #a1aab2;
  background: white;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.shop-details .method-tags .tag::after,
.shop-details .payment-tags .tag::after {
  content: "✕";
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 300;
}
.shop-details .method-tags .tag.active,
.shop-details .payment-tags .tag.active {
  background: #05355f;
  border-color: #05355f;
  color: white;
  font-weight: 500;
}
.shop-details .method-tags .tag.active::after,
.shop-details .payment-tags .tag.active::after {
  content: "〇";
  font-size: 13px;
}
.shop-details .access span:not(.label),
.shop-details .phone span:not(.label) {
  font-size: 14px;
  line-height: 1.6;
}
.shop-details .hours {
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 0 !important;
  overflow: hidden;
}
.shop-details .hours .hours-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
}
.shop-details .hours .hours-table thead tr {
  background: white;
}
.shop-details .hours .hours-table thead th {
  padding: 12px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  border-bottom: 1px solid #e5e5e5;
}
.shop-details .hours .hours-table thead th.hours-label {
  background: #ffffff;
  font-size: 14px;
  font-weight: 500;
  min-width: 80px;
  text-align: left;
}
.shop-details .hours .hours-table thead th.day-label {
  font-size: 14px;
  width: calc((100% - 80px) / 7);
}
.shop-details .hours .hours-table thead th:last-child {
  border-right: none;
}
.shop-details .hours .hours-table tbody tr {
  background: white;
}
.shop-details .hours .hours-table tbody td {
  padding: 12px 8px;
  text-align: center;
}
.shop-details .hours .hours-table tbody td.hours-time {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #05355f;
  letter-spacing: 0.02em;
  text-align: left;
}
.shop-details .hours .hours-table tbody td.day-status {
  font-size: 18px;
}
.shop-details .hours .hours-table tbody td.day-status .open {
  color: #05355f;
  font-weight: 700;
}
.shop-details .hours .hours-table tbody td.day-status .closed {
  color: #d2d8e5;
  font-weight: 400;
}
.shop-details .hours .hours-table tbody td:last-child {
  border-right: none;
}
.shop-details .business-note {
  display: block !important;
  color: #9e9e9e;
  margin-bottom: 0 !important;
  text-align: right;
}

.section-heading {
  display: block;
  background: #d8dee9;
  padding: 12px 25px;
  font-size: 24px;
  font-weight: 700;
  color: #003a6c;
  margin: 0;
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #003a6c;
}
.section-heading .en {
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.08em;
  margin-left: 12px;
}

.shop-features {
  flex: 0 0 100%;
}
.shop-features p {
  margin: 0;
  padding: 20px 25px;
  font-size: 14px;
  line-height: normal;
  color: #333;
}

.review-section {
  flex: 0 0 100%;
  width: 100%;
  padding-bottom: 30px;
  overflow: hidden;
}
.review-section .review-title {
  margin: 0 0 30px;
}
.review-section .review-title .ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #05355f;
  line-height: 1;
}
.review-section .review-swiper {
  position: relative;
  padding: 0 50px;
}
.review-section .review-swiper .swiper-wrapper {
  align-items: stretch;
}
.review-section .review-swiper .swiper-slide {
  width: 240px;
  height: auto;
}
.review-section .review-swiper .swiper-slide .review-item {
  height: 100%;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.review-section .review-swiper .swiper-slide .review-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.review-section .review-swiper .swiper-slide .review-item .device-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666666;
}
.review-section .review-swiper .swiper-slide .review-item .device-tag::before {
  content: "買取機種";
  padding: 4px 10px;
  border: 1px solid #999999;
  border-radius: 999px;
  font-size: 11px;
  color: #666666;
}
.review-section .review-swiper .swiper-slide .review-item .review-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0;
}
.review-section .review-swiper .swiper-button-prev,
.review-section .review-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: #05355f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-section .review-swiper .swiper-button-prev::after,
.review-section .review-swiper .swiper-button-next::after {
  content: "";
  width: 14px;
  height: 11px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.review-section .review-swiper .swiper-button-prev:hover,
.review-section .review-swiper .swiper-button-next:hover {
  background: #003a6c;
}
.review-section .review-swiper .swiper-button-prev {
  left: 0;
}
.review-section .review-swiper .swiper-button-prev::after {
  background-image: url("../images/arrow-left.svg");
}
.review-section .review-swiper .swiper-button-next {
  right: 0;
}
.review-section .review-swiper .swiper-button-next::after {
  background-image: url("../images/arrow-right.svg");
}
.review-section .review-swiper .swiper-scrollbar {
  position: relative;
  margin: 30px auto 0;
  width: 160px;
  height: 6px;
  background: #d2d8e5;
  border-radius: 3px;
}
.review-section .review-swiper .swiper-scrollbar .swiper-scrollbar-drag {
  background: #05355f;
  border-radius: 3px;
  height: 100%;
  cursor: grab;
}
.review-section .review-swiper .swiper-scrollbar .swiper-scrollbar-drag:active {
  cursor: grabbing;
}
.review-section .review-icon {
  margin-bottom: 10px;
  text-align: center;
}

.action-buttons {
  align-items: center;
  background: #f6f7fb;
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px 25px;
}
.action-buttons .btn-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 72px 16px 32px;
  background: #960a28;
  color: white;
  min-height: 64px;
  text-decoration: none;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  box-shadow: 4px 4px 8px rgb(139, 123, 127);
  transition: all 0.3s;
  flex-basis: 380px;
  position: relative;
}
.action-buttons .btn-shop::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.action-buttons .btn-shop::before {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 11px;
  background: url("../images/arrow-icon.svg") no-repeat center;
  background-size: contain;
  z-index: 1;
}
.action-buttons .btn-shop:hover {
  background: #7a081f;
  transform: translateY(-2px);
  box-shadow: 4px 6px 12px rgba(139, 123, 127, 0.8);
}
.action-buttons .btn-line {
  display: inline-block;
  margin-top: -20px;
  text-decoration: none;
  transition: all 0.3s;
  flex-basis: 380px;
}
.action-buttons .btn-line img {
  width: 100%;
  height: auto;
  display: block;
}
.action-buttons .btn-line:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .ranking-section {
    margin: 40px 0;
  }
  .ranking-section .ranking-title {
    border-bottom: none;
    font-size: 40px;
    margin-bottom: 10px;
    padding: 0;
  }
  .ranking-item {
    border-radius: 0;
    margin-bottom: 64px;
  }
  .ranking-item .ranking-header {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    padding: 12px 16px;
    gap: 8px;
    flex-wrap: nowrap;
    align-items: center;
  }
  .ranking-item .ranking-header .ranking-number {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    width: 40px;
  }
  .ranking-item .ranking-header .ranking-number .crown-icon {
    width: 40px;
    height: auto;
    display: block;
    margin-bottom: 4px;
    margin-right: 0;
  }
  .ranking-item .ranking-header .ranking-number .number {
    font-size: 28px;
    font-weight: 700;
    display: inline;
  }
  .ranking-item .ranking-header .ranking-number .suffix {
    font-size: 14px;
    font-weight: 400;
    display: inline;
    margin-left: 4px;
  }
  .ranking-item .ranking-header .shop-info-header {
    align-items: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .ranking-item .ranking-header .shop-info-header .shop-name {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    color: white;
  }
  .ranking-item .ranking-header .shop-info-header .rating {
    gap: 8px;
    display: flex;
    align-items: center;
  }
  .ranking-item .ranking-header .shop-info-header .rating .stars {
    width: 80px;
    height: 15px;
  }
  .ranking-item .ranking-header .shop-info-header .rating .stars::before {
    background-size: 16px 15px;
  }
  .ranking-item .ranking-header .shop-info-header .rating .stars .stars-filled {
    background-size: 16px 15px;
  }
  .ranking-item .ranking-header .shop-info-header .rating .score {
    font-size: 16px;
    font-weight: 500;
  }
  .ranking-content {
    flex-direction: column;
    gap: 0;
    padding: 12px;
  }
  .ranking-content .shop-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .ranking-content .shop-image img {
    width: 100%;
  }
  .ranking-content .shop-image .campaign-badge {
    padding: 16px 16px 8px;
    position: static;
    transform: none;
    margin-top: 0;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .ranking-content .shop-details {
    width: 100%;
  }
  .ranking-content .shop-details .shop-info > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #a1aab2;
  }
  .ranking-content .shop-details .shop-info > div:last-child {
    border-bottom: none;
  }
  .ranking-content .shop-details .shop-info > div .label {
    min-width: auto;
    font-size: 16px;
    margin-right: 0;
    margin-bottom: 4px;
  }
  .ranking-content .shop-details .shop-info > div.models .model-tags,
  .ranking-content .shop-details .shop-info > div.models .method-tags,
  .ranking-content .shop-details .shop-info > div.models .payment-tags, .ranking-content .shop-details .shop-info > div.methods .model-tags,
  .ranking-content .shop-details .shop-info > div.methods .method-tags,
  .ranking-content .shop-details .shop-info > div.methods .payment-tags, .ranking-content .shop-details .shop-info > div.payment .model-tags,
  .ranking-content .shop-details .shop-info > div.payment .method-tags,
  .ranking-content .shop-details .shop-info > div.payment .payment-tags {
    flex-wrap: wrap;
    gap: 4px;
  }
  .ranking-content .shop-details .shop-info > div.models .model-tags .tag,
  .ranking-content .shop-details .shop-info > div.models .method-tags .tag,
  .ranking-content .shop-details .shop-info > div.models .payment-tags .tag, .ranking-content .shop-details .shop-info > div.methods .model-tags .tag,
  .ranking-content .shop-details .shop-info > div.methods .method-tags .tag,
  .ranking-content .shop-details .shop-info > div.methods .payment-tags .tag, .ranking-content .shop-details .shop-info > div.payment .model-tags .tag,
  .ranking-content .shop-details .shop-info > div.payment .method-tags .tag,
  .ranking-content .shop-details .shop-info > div.payment .payment-tags .tag {
    font-size: 12px;
    padding: 4px 8px;
  }
  .ranking-content .shop-details .shop-info > div.hours {
    background: white;
    padding: 8px;
    border-radius: 8px;
    border-bottom: none;
    overflow: hidden;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Noto Sans JP", sans-serif;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table thead tr {
    background: white;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table thead th {
    padding: 8px 4px;
    text-align: center;
    font-size: 11px;
    font-weight: 400;
    color: #333333;
    border-bottom: 1px solid #e5e5e5;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table thead th.hours-label {
    background: #ffffff;
    font-size: 16px;
    font-weight: 500;
    min-width: 60px;
    text-align: left;
    white-space: nowrap;
    width: 106px;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table thead th.day-label {
    font-size: 14px;
    width: calc((100% - 60px) / 7);
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table thead th:last-child {
    border-right: none;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody tr {
    background: white;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody td {
    padding: 8px 4px;
    text-align: center;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody td.hours-time {
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #05355f;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody td.day-status {
    font-size: 14px;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody td.day-status .open {
    color: #05355f;
    font-weight: 700;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody td.day-status .closed {
    color: #d2d8e5;
    font-weight: 400;
  }
  .ranking-content .shop-details .shop-info > div.hours .hours-table tbody td:last-child {
    border-right: none;
  }
  .ranking-content .shop-details .shop-info > div.access span:not(.label), .ranking-content .shop-details .shop-info > div.phone span:not(.label) {
    font-size: 12px;
  }
  .ranking-content .shop-features p {
    padding: 16px;
  }
  .review-section {
    padding: 0;
    margin-top: 24px;
    overflow: hidden;
  }
  .review-section .review-title {
    margin: 0 0 20px;
  }
  .review-section .review-title .ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #05355f;
    line-height: 1.4;
  }
  .review-section .review-title .en {
    display: none;
  }
  .review-section .review-swiper {
    padding: 0 50px;
  }
  .review-section .review-swiper .swiper-slide {
    width: 200px;
  }
  .review-section .review-swiper .swiper-slide .review-item {
    padding: 16px;
    border-radius: 12px;
  }
  .review-section .review-swiper .swiper-slide .review-item .device-tag {
    font-size: 12px;
    gap: 6px;
    margin-bottom: 10px;
  }
  .review-section .review-swiper .swiper-slide .review-item .device-tag::before {
    padding: 3px 8px;
    font-size: 10px;
  }
  .review-section .review-swiper .swiper-slide .review-item .review-text {
    font-size: 13px;
    line-height: 1.7;
  }
  .review-section .review-swiper .swiper-button-prev,
  .review-section .review-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
  .review-section .review-swiper .swiper-button-prev::after,
  .review-section .review-swiper .swiper-button-next::after {
    width: 12px;
    height: 9px;
  }
  .review-section .review-swiper .swiper-button-prev {
    left: 10px;
  }
  .review-section .review-swiper .swiper-button-next {
    right: 10px;
  }
  .review-section .review-swiper .swiper-scrollbar {
    margin: 16px auto 0;
    width: 160px;
    height: 6px;
  }
  .review-section .review-swiper .swiper-scrollbar .swiper-scrollbar-drag {
    min-width: 50px;
  }
  .action-buttons {
    display: block;
    padding: 12px;
  }
  .action-buttons .btn-shop,
  .action-buttons .btn-line {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .action-buttons .btn-line {
    margin-top: 20px;
  }
}
.error-404-main {
  min-height: calc(100vh - 400px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}
.error-404-main .error-404-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.error-404-main .error-404-content .error-404-title {
  font-size: 48px;
  font-weight: 700;
  color: #05355f;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .error-404-main .error-404-content .error-404-title {
    font-size: 32px;
  }
}
.error-404-main .error-404-content .error-404-message {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .error-404-main .error-404-content .error-404-message {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.error-404-main .error-404-content .error-404-link {
  display: inline-block;
  padding: 12px 30px;
  background: #05355f;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  transition: background 0.3s;
}
.error-404-main .error-404-content .error-404-link:hover {
  background: #003a6c;
}
@media (max-width: 768px) {
  .error-404-main .error-404-content .error-404-link {
    font-size: 14px;
    padding: 10px 24px;
  }
}

body.error404 {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.error404 .site-header {
  flex-shrink: 0;
}
body.error404 .error-404-main {
  flex: 1 0 auto;
}
body.error404 footer {
  flex-shrink: 0;
  margin-top: auto;
}

.section-heading {
  display: block;
  background: #d8dee9;
  padding: 12px 25px;
  font-size: 24px;
  font-weight: 700;
  color: #003a6c;
  margin: 0 0 32px 0;
  position: relative;
}
.section-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #003a6c;
}

.section-heading-with-sub {
  display: block;
  background: #d8dee9;
  padding: 12px 25px;
  font-size: 24px;
  font-weight: 700;
  color: #003a6c;
  margin: 0 0 32px 0;
  position: relative;
}
.section-heading-with-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #003a6c;
}
.section-heading-with-sub .section-sub {
  font-size: 14px;
  color: #6b7280;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-left: 8px;
}

.main-shops {
  width: 100%;
}
.main-shops-h1 {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.4;
}
.main-shops-content-ctn {
  background-color: #f6f7fb;
  border-radius: 8px;
  padding: 0;
}
.main-shops-section {
  padding: 24px 32px;
}
.main-shops-section:first-child {
  padding-top: 48px;
}
.main-shops-section:last-child {
  border-bottom: none;
}
.main-shops-thumb-box {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
.main-shops-thumb-box-left {
  flex: 0 0 360px;
  min-width: 0;
}
.main-shops-thumb-box-right {
  flex: 1;
  min-width: 0;
}
.main-shops .shop-main-swiper {
  width: 100%;
  position: relative;
}
.main-shops .shop-main-swiper .swiper {
  width: 100%;
  background: #f6f7fb;
  overflow: hidden;
}
.main-shops .shop-main-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.main-shops .shop-main-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.main-shops .shop-main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.main-shops .shop-main-swiper .swiper-button-prev,
.main-shops .shop-main-swiper .swiper-button-next {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
}
.main-shops .shop-main-swiper .swiper-button-prev::after,
.main-shops .shop-main-swiper .swiper-button-next::after {
  font-size: 14px;
  color: #05355f;
  font-weight: bold;
}
.main-shops .shop-main-swiper .swiper-pagination {
  position: relative;
  text-align: center;
  width: 100%;
}
.main-shops .shop-main-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #a1aab2;
  opacity: 1;
  margin: 0 4px;
  display: inline-block;
}
.main-shops .shop-main-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #05355f;
  width: 24px;
  border-radius: 4px;
}
.main-shops-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #f6f7fb;
  border-radius: 8px;
}
.main-shops-h2 {
  display: block;
  background: #d8dee9;
  padding: 12px 25px;
  font-size: 24px;
  font-weight: 700;
  color: #003a6c;
  margin: 0 0 32px 0;
  position: relative;
}
.main-shops-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #003a6c;
}
.main-shops-h2-sub {
  font-size: 24px;
  color: #ffffff;
  font-weight: 600;
  margin-left: 12px;
  display: inline-block;
}
.main-shops-content {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}
.main-shops-content p {
  margin-bottom: 16px;
}
.main-shops-content p:last-child {
  margin-bottom: 0;
}
.main-shops-model-types {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0 16px;
  margin: 0;
}
.main-shops-model-type {
  font-family: "Poppins", sans-serif;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: normal;
  border: 1px solid #c2c2c2;
  background: #ffffff;
  color: #c2c2c2;
}
.main-shops-model-type.active {
  color: #05355f;
  border-color: #05355f;
}
.main-shops-store-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.main-shops-store-left {
  flex: 0 0 300px;
  width: 300px;
}
.main-shops-map {
  width: 100%;
  height: 192px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}
.main-shops-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.main-shops-map-placeholder {
  width: 100%;
  height: 300px;
  background: #f6f7fb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.main-shops .icon-good,
.main-shops .icon-bad {
  position: relative;
  top: 5px;
}
.main-shops .cta-buttons {
  padding-top: 48px !important;
}
.main-shops .cta-buttons-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.main-shops .btn-hp {
  flex: 0 0 280px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 50px;
  background: #960a28;
  color: #ffffff;
  border-radius: 999px;
  border: 1px solid #ffffff;
  box-shadow: 4px 4px 8px rgb(139, 123, 127);
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  transition: all 0.3s ease;
  justify-content: space-between;
  margin-top: 15px;
}
.main-shops .btn-hp:hover {
  transform: translateY(-2px);
  box-shadow: 6px 6px 12px rgba(139, 123, 127, 0.8);
}
.main-shops .btn-hp .btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-shops .btn-line-inquiry {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-shops .btn-line-inquiry:hover {
  transform: translateY(-2px);
}
.main-shops .btn-line-inquiry img {
  display: block;
  height: auto;
  max-width: 460px;
}

@media (max-width: 768px) {
  .main-shops-h1 {
    font-size: 26px;
    margin-top: 0 !important;
    padding: 0;
  }
  .main-shops-h2 {
    margin-bottom: 16px;
  }
  .main-shops-thumb-box {
    flex-direction: column;
  }
  .main-shops-thumb-box-left {
    flex: 1;
    width: 100%;
  }
  .main-shops-content p {
    margin: 0;
  }
  .main-shops-model-type {
    font-size: 14px;
  }
  .main-shops-section {
    padding: 20px 12px;
  }
  .main-shops-section:first-child {
    padding-top: 32px;
  }
  .main-shops-store-content {
    flex-direction: column;
    gap: 24px;
  }
  .main-shops-store-left {
    flex: 1;
    width: 100%;
  }
  .main-shops .icon-good,
  .main-shops .icon-bad {
    position: relative;
    top: 3px;
  }
  .main-shops .icon-good svg,
  .main-shops .icon-bad svg {
    width: 24px;
    height: 24px;
  }
  .main-shops .cta-buttons-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .main-shops .btn-hp {
    flex: 0 0 auto;
    font-size: 20px;
    padding: 14px 24px 14px 20px;
    width: 100%;
  }
  .main-shops .btn-hp span {
    display: block;
    text-align: center;
    width: 100%;
  }
  .main-shops .btn-line-inquiry img {
    max-width: 100%;
    width: 100%;
  }
}

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