@charset "utf-8";
body {
  margin: 0;
  font-family:  "游ゴシック体",sans-serif;
  color: #333;
  font-size: 16px;
}

@media not screen and (min-width: 768px) {
  body {
    font-size: 12px;
  }
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

section{
  width:auto;
  text-align: center;
  padding: 0px 80px;
}
@media not screen and (min-width: 768px) {
  section{
    width: auto;
    padding: 10px 0;
  }
}

.section-zero {
  padding: 40px 0;
}

.margin-zero {
  margin-top: 0px;
  margin-bottom: 0px;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: underline;
  color: #3c17e2;

}

/*
.primary-primary{
  color: #6ecfe2;
}

.primary-varient{
  color: #849acc;
}

.secondary-primary{
  color: #ededb4;
}

.secondary-varient{
  color: #f9f9cc;
}

.secondary-varient-light{
  color: #fafae7;
}

.accent{
  color: #e4002b;
}

.change{
  color: #b941d4;
}

.background-white{
  background-color: #ffffff;
}

.background-gray{
  background-color: #f5f5f5;
}

.neutral{
  background-color: #333333;
}
*/

h1{
  font-size: 24px;
  margin-top: 5px;
  margin-bottom: 0px;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  h1{
    font-size: 20px;
    margin-bottom: 3px;
  }
}

.main-title{
  font-family: "Average", serif;
}

.left{
  text-align: left;
}

h2{
  font-size: 32px;
  margin: 60px 30px 30px 30px;
}
@media not screen and (min-width: 768px) {
  h2{
    font-size: 20px;
    margin: 15px 5px;
  }
}

h2.p{
  font-size:12px;
}

h3{
  font-size: 24px;
}

@media not screen and (min-width: 768px) {
  h3{
    font-size: 20px;
  }
}

h4{
  font-size: 20px;
}

@media not screen and (min-width: 768px) {
  h4{

  }
}

.text{
  font-size: 16px;
}
@media not screen and (min-width: 768px) {
  .text{
    font-size: 12px;
  }
}

p {

}

@media not screen and (min-width: 768px) {
  p {
    font-size: 8px;
  }
}

.right{
  text-align: right;
  margin-right:30px;
}

.site-header {
  text-align: center;
}

@media not screen and (min-width: 768px) {
  .site-header {
    text-align: center;
    padding: 10px 0;
  }
}

.top-bar {
  align-items: center;
  padding: 0px;
  position: relative;
}

.logo {

}

.icon-button {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin: 10px 5px;
}

.icon-button img {
  width: 35px;
  height: 35px;
}

@media not screen and (min-width: 768px) {
  .icon-button {
    margin: 10px 0;
  }

  .icon-button img {
    width: 21px;
    height: 21px;
  }
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #E4002B;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

.button-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 20px;
  margin-right: 5px;
}

@media not screen and (min-width: 768px) {
  .button-container {
    top: 0;
    right: 10px;
    margin-right: 0;
  }
}

.site-header p {
  font-family: "Average", serif;
  margin-top: 0px;
  margin-bottom: 5px;
}
@media not screen and (min-width: 768px) {
  .site-header p {
    font-size: 8px;
  }
}

.campaign-banner{
  width: auto;
  height: 28px;
}

@media not screen and (min-width: 768px) {
  .campaign-banner{
    font-size: 8px;
  }
}

.campaign-banner p{
  padding-top: 3px;
  color: #fff;
}

@media not screen and (min-width: 768px) {
  .campaign-banner p{
	font-size: 12px;
	font-weight: bold;
    padding-top: 7px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.category-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  user-select: none;
  width: 70%;
  margin: 0 auto;
}

@media not screen and (min-width: 768px) {
  .category-menu {
    width: 100%;
  }
}

.category-item {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}

@media not screen and (min-width: 768px) {
  .category-item {
    padding: 9px 0;
  }
}

.category-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: #ccc;
}

.category-item:hover {
  background-color: #f0f0f0;
}

.search-area {
  padding: 20px;
}

.search-area-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.search-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 8px;
}
.search-box button {
  background: none;
  border: none;
  cursor: pointer;
}
.search-box button .icon {
  width: 20px;
  height: 20px;
}
.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.search-tag {
  border: 1px solid #aaa;
  background: white;
  color: #333;
  padding: 8px 32px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

@media not screen and (min-width: 768px) {
  .search-tag {
    font-size: 12px;
    padding: 4px 8px;
  }
}

.search-tag button {
  border-color: #007bff;
  color: #007bff;
}

.search-tag button.active {
  border: 2px solid #007bff;
  color: #007bff;
  font-weight: bold;
}

.close {
  text-align: center;
  margin-top: 20px;
  border: 0px;
  background: white;
  cursor: pointer;
}
.close .icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.slider-section {
  padding:0;
}

.slider {
  /*overflow-x: auto;*/
  /*scroll-snap-type: x mandatory;*/
  display: flex;
  padding: 20px;
  gap: 20px;
  /*scroll-behavior: smooth;*/
  justify-content: center;  
   align-items: center;
   overflow: hidden;
}

@media not screen and (min-width: 768px) {
  .slider {
    overflow-x: hidden;
    justify-content: flex-start;
    padding :0;
  }
}

.slide {
  max-width: 715px;
  max-height: 480px;
  background-color: #eee;

  flex: 0 0 100%;
  /*scroll-snap-align: start;*/
  background-color: #eee;
  /*border-radius: 10px;*/
  overflow: hidden;
  /*max-width: 100%;
  box-sizing: border-box;*/
}

@media not screen and (min-width: 768px) {
  .slide {
    max-width: 393px;
    max-height: 196px;
    
  }
}

.slide img{
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.slider-dots {
  margin: 10px 0 20px;
}

.slider-dots span {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-color: #ccc;
  margin: 0 3px;
}

@media not screen and (min-width: 768px) {
  .slider-dots span {
    width: 44px;
  }
}

.slider-dots span.active {
  background-color: #333;
}

.category-scroll {
  display: flex;
  /*overflow-x: auto;*/
  padding: 10px 0;
  gap: 30px;
  /*justify-content: center;*/
  overflow-x: scroll;
  margin-left: 30px;
}

@media not screen and (min-width: 768px) {
  .category-scroll {
    padding: 10px 10px;
    justify-content:left;
    margin-left: 0px;
  }
}

.category-scroll-item {
  flex: 0 0 auto;
  text-align: center;
}

.category-scroll-item p{
  font-size: 14px;
}

@media not screen and (min-width: 768px) {
  .category-scroll-item p{
  font-size: 12px;
  }
}

.circle {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background-color: #d9d9d9;
  margin: 0 auto 5px;
  overflow: hidden;
}
@media not screen and (min-width: 768px) {
  .circle {
    width: 74px;
    height: 74px;
  }
}

.circle img{
  width:100%;
  height: auto;
}

.category-item p {
  font-size: 12px;
  margin: 0;
}

.ranking-section {
  
}

.new-section {
 
}

.sale-section {
 
}

.filter-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px 10px;
  margin: 10px 0;
}

@media not screen and (min-width: 768px) {
  .filter-tabs {
    gap: 3px;
    margin: 10px 5px;
  }
}

.filter-tabs .filter-list{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.filter-tabs button {
  background: #f2f2f2;
  border: none;
  padding: 5px 20px;
  cursor: pointer;
  width: 100%;
  height: 30px;
  font-size: 14px;
}

/*
.filter-tabs button:hover {
  border-color: #007bff;
  color:#007bff;
}
*/

@media not screen and (min-width: 768px) {
  .filter-tabs button {
    font-size: 10px;
    padding: 2px;
  }
}

.filter-tabs button.active {
  background-color: #c448d2;
  color: white;
}

.product-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));*/
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 10px;
  justify-items: center;
  margin: 30px 0;
}

@media not screen and (min-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 10px 5px;
  }
}

.product-card {
  text-align: center;
  width: 100%;
  /*max-width: 272px;*/
}

@media not screen and (min-width: 768px) {
  .product-card {
  }
}

.product-img{
    border: 1px solid #ddd;
    width: 100%;
    /*max-width: 272px;*/
    aspect-ratio: 1 / 1;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
  }

.product-img img{
    transition-duration: 0.5s;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
}
.product-img:hover img{
    transform: scale(1.2);
    transition-duration: 0.5s;
}

.product-card p {
  margin: 0;
  padding-top: 4px;
  padding-bottom: 4px;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .product-card p {
	  font-size: 10px;
  }
}

.product-card .product-pop {
    position: absolute;
    width: 20%;
    color: #fff;
    text-align: center;
    padding: 0 5px;
    bottom: 0;
    left: 0;
    background-color: #c448d2;
    z-index: 2; 
    pointer-events: none;
}

.product-card .product-pop p {
  font-size: 12px;
  text-align: center;
}

@media not screen and (min-width: 768px) {
  .product-card .product-pop p {
    font-size: 8px;
  }
}

.product-card .price-container{
  display: flex; 
}

.product-card .price-moto-container{

}

@media not screen and (min-width: 768px) {
  .product-card .price-moto-container{

  }
}

.product-card .price-new-container{
  /*padding-left: 20px;*/
}

@media not screen and (min-width: 768px) {
  .product-card .price-new-container{
    padding-left: 0px;

  }
}

.product-card .price-container .price-new-container p {
  color: #d60000;
  margin-top: 0px;
  font-size: 24px;
  font-family: "Merriweather", serif;
}
@media not screen and (min-width: 768px) {
  .product-card .price-container .price-new-container p{
    font-size: 14px;
    margin-top: 3px;
  }
}

.product-card .price-container .price-moto-container p {
  text-decoration:line-through;
  margin-right: 25px;
  margin-top: 7px;
  font-family: "Merriweather", serif;
}
@media not screen and (min-width: 768px) {
  .product-card .price-container .price-moto-container p {
    text-decoration:line-through;
    margin-top: 7px;
    padding-right: 0px;
    margin-right: 5px;
  }
}

.top10-section1{

}

.top10-section1 h2{
  font-size: 32px;
  margin: 60px 0 30px 0;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .top10-section1 h2{
    font-size: 20px;
    margin: 20px 5px;
  }
}

.top10-list {
  /*display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin: 10px 0p;*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 10px;
  justify-items: center;
  margin: 30px 0;
}

@media not screen and (min-width: 900px) {
  .top10-list {
    /*margin: 5px 10px;*/
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 10px 5px;
  }
}

.top10-card {
  /*width: 294px;*/
  width: 100%;
  flex-shrink: 0;
  text-align: left;
}

@media not screen and (min-width: 900px) {
  .top10-card {
    width: 100%;
  }
}

.top10-card img {
  width: 100%;
  height: auto;
  border: 1px solid #eee;
}

.top10-card p{
  margin-top: 8px;
  line-height: 1.4;
}
@media not screen and (min-width: 768px) {
  .top10-card p {
    font-size: 8px;
  }
}

.top10-card .price-container .price-new-container p {
  color: #E4002B;
  font-size: 28px;
  margin-top: 5px;
  font-family: "Average", serif;
}

@media not screen and (min-width: 768px) {
  .top10-card .price-container .price-new-container p {
    font-size: 10px;
  }
}

.top10-section2{

}

.top10-section2 h2{
  font-size: 32px;
  margin: 60px 0 30px 0;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .top10-section2 h2{
    font-size: 20px;
    margin: 20px 5px;
  }
}

.top10-section3{

}

.top10-section3 h2{
  font-size: 32px;
  margin: 60px 0 30px 0;
  text-align: left;

}

@media not screen and (min-width: 768px) {
  .top10-section3 h2{
    font-size: 20px;
    margin: 20px 5px;
  }
}

.top10-section4{

}

.top10-section4 h2{
  font-size: 32px;
  margin: 60px 0 30px 0;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .top10-section4 h2{
    font-size: 20px;
    margin: 20px 5px;
  }
}

.feature-section {
  padding:0;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 5px;
  scroll-behavior: smooth;
  padding: 0 30px;
}

.card {
  border-radius: 16px;
  padding: 5px;
  text-align: center;
}

.image-placeholder {
  background-color: #eaeaea;
  width: 280px;
  height: 420px;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

@media not screen and (min-width: 768px) {
  .image-placeholder {
    width: 295px;
    height: 359px
  }
}

.image-placeholder img{
  width: 100%;
  height: auto;
}

.card p {
  font-size: 16px;
  line-height: 1.4;
  font-family: sans-serif;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  width: 111px;
  height: 111px;
  border-radius: 50%;
  font-size: 40px;
  cursor: pointer;
  z-index: 1;
}

@media not screen and (min-width: 768px) {
  .nav {
    width: 66px;
    height: 66px;
    font-size: 24px;
  }
}

.nav.prev {
  left: -50px;
  padding-left: 50px;
}

@media not screen and (min-width: 768px) {
  .nav.prev {
    left: -20px;
    padding-left: 20px;
  }
}

.nav.next {
  right: -50px;
  padding-right: 50px;
}

@media not screen and (min-width: 768px) {
  .nav.next {
    right: -20px;
    padding-right: 20px;
  }
}

.category-section {
  
}

.category-section .category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  /* border-bottom: 1px solid #ccc; */
}

.category-grid .grid-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  position: relative;
}


.category-grid a:nth-child(4n) .grid-cell {
  /*border-right: none;*/
}

.category-grid a:nth-child(4n+1) .grid-cell{
  border-left: none;
}

.category-grid .grid-cell p{
  text-align: left;
  font-size: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.category-grid .grid-cell p::after{
  content: "＞";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .category-grid .grid-cell p{
    font-size: 12px;
  }
}

.category-grid .grid-cell span {
  text-align: right;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .category-section .category-grid {
    grid-template-columns: 1fr;
    margin-left: 12px;
    margin-right: 12px;
  }

  .category-section .grid-cell {
    border-left: none; 
    border-right: none;
  }
}

.category-section .grid-cell:hover {
  background: #f5f5f5;
}

.category-section .category-grid a:hover{
  color: #000;
  text-decoration: none;
}

.view-more{
  text-align: right;
}

.view-more a{
  font-family: "Merriweather", serif;
  font-size: 24px;
}

@media not screen and (min-width: 768px) {
  .view-more{
    margin-right: 5px;
  }
  .view-more a{
    font-size: 14px;
  }


}

.list-code {

}

.tag-list-container{
 
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
/*  justify-content: flex-start;*/
  gap: 10px 20px;
}

@media not screen and (min-width: 768px) {
  .tag-list {
    margin-left: 5px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.tag-list button {
  border: 1px solid #aaa;
  background: white;
  color: #333;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

@media not screen and (min-width: 768px) {
  .tag-list button {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
  }
}

.tag-list button:hover {
  border-color: #007bff;
  color: #007bff;
}

.tag-list button.active {
  border: 2px solid #007bff;
  color: #007bff;
  font-weight: bold;
}

.articles {
  
}

.article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  font-family: "Merriweather", serif;
}

.article-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  width: 100%;
  max-width: 360px;
}

.articles .thumbnail{
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 90px;
  background-color: #ddd;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

@media not screen and (min-width: 768px) {
  .articles .thumbnail{
    max-width: 113px;
    max-height: 99px;
  }
}

.articles .thumbnail img{
  width:100%;
  height: auto;
}

.text .title p{
  font-size: 12px;
  margin: 0 0 6px 0;
  color: #333;
  font-family: sans-serif;
}

@media not screen and (min-width: 768px) {
  .text .title p{
    font-size: 12px;
    font-family: sans-serif;
  }
}

.text .date p{
  font-size: 12px;
  color: #888;
  margin: 0;
}

.faq {

}

.faq-container {
  padding: 0 120px 30px 120px;
}

@media not screen and (min-width: 768px) {
  .faq-container {
    padding: 0 15px 30px 15px;
  }
}

.faq-container details {
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
}

.faq-container summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}

.faq-container summary::before {
  content: '＋';
  font-size: 24px;
  width: 28px;
  display: inline-block;
  text-align: center;
  transition: transform 2s;
}

.faq-container details[open] summary::before {
  content: '−';
}

.faq-container .answer {
  margin: 10px 0 0 40px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .faq-container summary {
    font-size: 12px;
  }

  .faq-container .answer {
    font-size: 8px;
  }
}

.about-wavelish {
  background-color:#eee
}

@media not screen and (min-width: 768px) {
  .about-wavelish {
    padding-top: 0px;
  }
  .about-wavelish h2{
    margin-top: 15px;
    margin-left: 0px;
    margin-right: 0px;
    padding-bottom: 15px;
    background-color: white;
  }
}

.about_container {
  padding: 0 120px 30px 120px;
}

@media not screen and (min-width: 768px) {
  .about_container {
    padding: 0 15px 30px 15px;
  }
}

.about-block {
  margin-bottom: 40px;
}

.about-block h3 {
  margin-bottom: 10px;
  text-align: left;
}

.about-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .about-block p {
    font-size: 16px;
  }
}

.news-section {

}

.news-box {
  margin: 0 120px;
  border: 1px solid #ccc;
  padding: 20px;
}

@media not screen and (min-width: 768px) {
  .news-box {
    margin: 0 15px;
  }
}

.news-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-box li {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  padding: 8px 0 8px 20px;
  color: #555;
}

@media not screen and (min-width: 768px) {
  .news-box li {
    padding: 8px 0 8px 5px;
  }
}

.news-box span{
  min-width: 100px;
  text-align: right;
  color: #333;
  font-family: "Merriweather", serif;
}

@media not screen and (min-width: 768px) {
  .news-box span{
    min-width: 0px;
    text-align: left;
    font-family: sans-serif;
  }
}

.news-box p {
  margin-top: 0px;
  margin-bottom: 0px;
}

@media not screen and (min-width: 768px) {
  .news-box p{
    text-align: left;
    font-size: 12px;
  }
}

.related-sites {
  margin: 40px 0;
}

.related-sites-container{
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
}

.related-sites .sites {
  /*display: flex;*/
  /*gap: 120px;
  justify-content: center;*/
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 18%;
}

@media (max-width: 1024px) {
  .related-sites .sites {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-sites-container {
    padding-left: 15px;
  }
}

/* スマホサイズ：1列 */
@media (max-width: 600px) {
  .related-sites .sites {
    grid-template-columns: 1fr;
    margin-left: 15px;
  }

  .related-sites p{
    margin-bottom: 10px;
  }

  .related-sites-container {
    grid-template-columns: 1fr;
    gap:0;
    padding-left: 15px;
  }
}

.related-sites .sites ul {
  padding: 0;
  color: #333;
  margin-top: 0px;
  margin-bottom: 0px;
}

@media (max-width: 1024px) {
  .related-sites .sites ul {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .related-sites .sites ul {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.related-sites .sites li {
  margin-bottom: 5px;
  font-size: 14px;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .related-sites .sites li {
    font-size: 12px;
    margin-left: 10px;
  }
}

.related-sites p{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 20px;
  white-space: nowrap;
}

@media not screen and (min-width: 768px) {
  .related-sites p {
    margin-bottom: 15px;
    font-size: 16px;
    text-align: left;
    padding-left: 0;
  }
}

.related-sites .sites a{
  font-size: 16px;
}

@media not screen and (min-width: 768px) {
  .related-sites .sites a {
    font-size: 12px;
  }
}

.footer {
  background-color: #2b2b2b;
  color: #fff;
  padding: 40px 80px;
  font-size: 14px;
}

@media (max-width: 600px) {
  .footer {
    font-size: 8px;
    padding-left: 40px;
    padding-right: 40px;
  }
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: left;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .footer-links {
    margin-left: 0;
  }
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin-top: 30px;
}

.product-info-end{
  text-align: center;
  height: 0;
}

.product-info-end button{
    background-color: #6ecfe2;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    align-items: center;
    width: 40%;
    padding: 15px 60px;
    margin: 0 auto;
    position: fixed;
    bottom: 10px;
    right: 30%;
    z-index:10
}

.product-info-end button::after{
  content: "＞";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.product-info-end span{
    font-size: 12px;
    color: #666;
    margin-left: 10px;
}

@media not screen and (min-width: 768px) {
  .product-info-end button{
      width: 95%;
      right: 3%;
      font-size: 12px;
      font-weight: bold;

  }
}

#breadcrumb {
	margin: 0 auto;
	padding: 1px 0;
	position: relative;
	background: #f7f7f7;
	box-shadow: inset 0 -1px 8px rgba(0,0,0,.06);
}

#breadcrumb nav {
	max-width: 1000px;
	margin: auto;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-color: #f7f7f7;
  box-shadow: inset 0 -1px 8px rgba(0,0,0,.06);
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 10px;
}

@media (max-width: 600px) {
  .breadcrumb-nav{
    font-size: 8px;
  }
}

.breadcrumb-nav a{
  text-decoration: none;
  color: black;
}

.breadcrumb-nav-0 {
  align-items: center;
  display: flex;
  font-size: 11px;
  gap: .5em;
  list-style: none;
  overflow: hidden;
  width: 100%;
}

.breadcrumb-nav-0 li {
  align-items: center;
  display: inline-flex;
  gap: .5em;
  position: relative;
}

@media (max-width: 600px) {
  .breadcrumb-nav {
    padding-left: 5px;
  }
  .breadcrumb-nav-0 {
    padding-left: 5px;
    font-size: 8px;
  }
}

.breadcrumb-nav-0 a{
  text-decoration: none;
  color: #000;
}

@media (max-width: 600px) {
  .breadcrumb-nav-0 a{
    text-decoration: none;
    color: #000;
    font-size: 8px;
  }
}

.breadcrumb-nav li:last-child {
  color: #777;
  padding-top: 0;
}

.breadcrumb-nav-0 li:last-child {
  color: #777;
  padding-top: 0;
}
@media (max-width: 600px) {
  .breadcrumb-nav-0 li:last-child {

  }
}

.breadcrumb-nav li:not(:last-of-type)::after {
  background-color: currentcolor;
  -webkit-clip-path: polygon(45% 9%,75% 51%,45% 90%,30% 90%,60% 50%,30% 10%);
  clip-path: polygon(45% 9%,75% 51%,45% 90%,30% 90%,60% 50%,30% 10%);
  content: "";
  display: block;
  height: 10px;
  margin: 0;
  opacity: .8;
  width: 10px;
}

.breadcrumb-nav-0 li:not(:last-of-type)::after {
  background-color: currentcolor;
  -webkit-clip-path: polygon(45% 9%,75% 51%,45% 90%,30% 90%,60% 50%,30% 10%);
  clip-path: polygon(45% 9%,75% 51%,45% 90%,30% 90%,60% 50%,30% 10%);
  content: "";
  display: block;
  height: 10px;
  margin: 0;
  opacity: .8;
  width: 10px;
}

.breadcrumb-nav-0 .home-icon {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
}

/* 屋根（三角） */
.home-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 0.6em solid transparent;
  border-right: 0.6em solid transparent;
  border-bottom: 0.6em solid #444; /* 屋根の色 */
}

/* 本体（四角） */
.home-icon::after {
  content: "";
  position: absolute;
  top: 0.5em;         /* 屋根の高さの分だけ下に配置 */
  left: 0.25em;       /* 屋根より狭く、中央に寄せる */
  width: 0.6em;       /* 本体の幅 */
  height: 0.5em;      /* 本体の高さ */
  background-color: #444;
}

@media (max-width: 600px) {
  .list-section {
    padding-top: 0;
    padding-bottom: 20px;
  }
}

.list-section .product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(auto, 1fr));
  gap: 10px;
  justify-items: center;
  margin: 10px 0;
}

@media (max-width: 1100px) {
  .list-section .product-grid {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 12px;
    margin: 10px 5px;
  }
}

.list-section p{
  text-align: left;
  font-size: 16px;
}

@media (max-width: 600px) {
  .list-section p{
    font-size: 8px;
  }
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 32px 0 16px 0;
  justify-content: flex-end;
}

.sort-wrapper label {
  white-space: nowrap;
  font-size: 12px;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .sort-wrapper label {
    font-size: 10px;
    padding-bottom: 5px;
  }
}

.sort-wrapper select {
  padding: 6px 20px 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  background-color: #fff;
  background-image: url('../img/select-arrow.png');
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

@media (max-width: 600px) {
  .sort-wrapper {
    align-items: flex-end;
    font-size: 10px;
    margin-right: 3px;
  }

  .sort-wrapper select {
    width: 30%;
    font-size: 10px;

  }
}

.list-section .product-img {
  border: 1px solid #ddd;
  width: 100%;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

@media (max-width: 600px) {
  .list-section .product-img {
    /*width: 180px;*/
  }
}

.list-section .product-pop {
  position: absolute;
  width: 10%;
  height: 18%;
  color: #fff;
  text-align: center;
  padding: 0px 5px;
  top: 0;
  border-bottom-right-radius: 10px;
  background-color: #b941d4;
}

@media (max-width: 600px) {
  .list-section .product-pop {
    width: 20px;
  }
}

.list-section .product-pop p {
  font-size: 20px;
  text-align: center;
  padding-left: 0px;
  padding-right: 0px;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media (max-width: 600px) {
  .list-section .product-pop p {
    font-size: 16px;
  }
}

.list-section .product-card .price-container .price-new-container p {
  color: #d60000;
  margin-top: 0px;
  font-size: 24px;
  font-family: "Merriweather", serif;
}
@media not screen and (min-width: 768px) {
  .list-section .product-card .price-container .price-new-container p{
    font-size: 14px;
    margin-top: 3px;
  }
}

.load-more-container {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.load-more-container button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 36px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  transition: color 0.3s ease;
}

@media (max-width: 600px) {
  .load-more-container button {
    font-size: 12px;
  }
}

.load-more-container button:hover {
  color: #007bff;
}

.load-more-container span {
  font-size: 14pxm;
  line-height: 1;
}

.column-section {
  padding: 32px 16px;
  line-height: 1.8;
  color: #333;
}

.column-container {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.column-image-wrapper {
  margin: 0 auto 32px;
  max-width: 100%;
}

 .column-image-wrapper img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto 32px auto;
}

.article-detail-section img {
  width: 100%;
  /*max-width: 700px;*/
  height: auto;
  display: block;
  margin: 0 auto 32px auto;
}

.column-text-content {
  text-align: left;
  padding: 0 16px;
}

.column-text-content p{
    font-size: 16px;
}

@media (max-width: 600px) {
  .column-text-content p{
    font-size: 16px;
  }
}

.category-list-section {

}

.category-list-section .category-list-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 16px;
}

.category-list-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list-section button {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-size: 14px;
  border: none;
  background: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

.category-list-section button:hover {
  background: #f9f9f9;
}

.category-list-section .category-list-1 {
  
}

.category-list-section .category-list-2 {
  padding-left: 32px;
}

.category-list-section button.category-list-2 {
  padding-left: 32px;
  border-bottom: none;
  padding-right: 0px;
}

.category-list-section button.category-list-2::after{
  float: right;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url(../img/sub_arrow.png);
  background-position: center;
  background-size: contain;
}

.category-list-section span {
  font-size: 20px;
  color: #666;
}

.category-list-section button.active span {
  transform: rotate(180deg);
}

@media not screen and (min-width: 768px) {
  .category-list-section button {
    font-size: 12px;
    padding: 12px;
  }
}

.category-list-container details {
  border-top: 1px solid #ccc;
  margin-bottom: 0px;
}

.category-list-container details:first-child {
  border-top:none;
}

.category-list-container details:last-child {
  border-bottom: 1px solid #ccc;
}

.category-list-container summary {
  cursor: pointer;
  padding: 16px;
  list-style: none;
  text-align: left;
  font-size: 14px;
}

@media not screen and (min-width: 768px) {
  .category-list-container summary {
    font-size: 12px;
  }
}

.category-list-container  summary::-webkit-details-marker {
  display: none; 
}

.category-list-container  details[open] summary::after {
  float: right;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/up-arrow.png');
  background-position: center;
  background-size: contain;
}

.category-list-container  summary::after {
  float: right;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/down-arrow.png');
  background-position:center;
  background-size: contain;
  position: relative;
  top: 7px;
}

.category-list-container  .accordion-content {
  padding: 0 16px 0 16px;
  text-align: left;
}

.product-detail {
  padding: 32px 16px;
}

@media not screen and (min-width: 768px) {
  .product-detail {
    padding: 0;
  }
}

.product-wrapper {
  display: flex;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto 32px auto;
}

.product-detail .product-wrapper {
	padding: 0px 20px 20px;
}

.product-image {

}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.thumbnail-list {
  width: 100%;
  display: flex;
  gap: 8px;
  margin-top: 16px;
  overflow-x: scroll;
}

.thumbnail {
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 auto;
}

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

.product-image .thumbnail {
  max-width: 60px;
  max-height: 60px;
  display: flex;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.product-image .thumbnail .image-overlay {
  width: 100%;
  height: 100%;
}

.product-image .thumbnail.with-gradient .image-overlay::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8));
  pointer-events: none;
  z-index: 1;
}

.product-image .thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.size-spec {
  max-width: 720px;
  margin: 0 auto 32px auto;
}

.product-info {
 /* flex: 1 1 300px;*/
  position: relative; 
  flex: 1;
}

.product-info .title {
  text-align: left;
}

.product-info .title p{
  font-size: 20px;
  margin-bottom: 0;
  text-align: left;
  font-family: sans-serif;
}

.product-info .divider {
  text-align: left;
  color: #666;
}

.product-info .divider p{
  font-size: 20px;
  margin: 0;
  text-align: left;
}

.price {
  display: flex;
}

.price .price-moto {
  padding-top: 30px;
  font-size: 16px;
}

.price .price-moto span{
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
  font-size: 16px;
  font-family: "Average", serif;
}

.price .price-new {

}

.price .price-new p {
  color: #e60023;
  font-weight: bold;
  font-size: 32px;
  font-family: "Average", serif;
}

.price .price-new span {
  font-size: 16px;
  color: #999;
}

.product-info .mem-badges {
  display: flex;
}

.product-info .mem-badges .mem-badge {
  margin: 8px 8px;
  font-size: 10px;
  padding: 5px 10px;
  border: 1px solid #e60023;
}

.product-info .mem-badges p {
  color: #e60023;
  font-size: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.product-info p {
  font-size: 14px;
  line-height: 1.6;
  margin: 16px 0;
  text-align: left;
}

.product-info button {
  background-color: #6ecfe2;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  /*display: flex;*/
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 27px 60px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-info button::after{
  content: "＞";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .product-info button {
    margin-top: 20px;
    padding: 15px;
    position: relative;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
  }
  .product-info button::after{
    right: 20px;
  }
}

.product-info span {
  font-size: 16px;
  padding-left: 10px;
}

@media (max-width: 768px) {
  .product-wrapper {
    flex-direction: column;
  }

  .product-info {
    padding-top: 16px;
  }
}

.size-spec details {
  border-top: 1px solid #ccc;
  margin-bottom: 10px;
}

.size-spec summary {
  cursor: pointer;
  padding: 16px;
  list-style: none;
  text-align: left;
  font-size: 14px;
}

.size-spec summary::-webkit-details-marker {
  display: none;
}

.size-spec  details[open] summary::after {
  float: right;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/up-arrow.png');
  background-position: center;
  background-size: contain;
}

.size-spec  summary::after {
  float: right;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('../img/down-arrow.png');
  background-position:center;
  background-size: contain;
}

.size-spec .accordion-content {
  padding: 16px;
  text-align: left;
}

.size-table-wrapper {
  overflow-x: auto;
}

table.size-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin-top: 1em;
  font-size:12px;
}

table.size-table thead {
  background-color:  #bbb;
  font-size: 14px;
}

table.size-table th,
table.size-table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}

table.size-table td:first-child{
  background-color:  #bbb;
  font-size: 14px;
}

.note1 {
  font-size: 0.85em;
  color: #666;
  margin-top: 1em;
}

.product-detail .spec4 {
  max-width: 960px;
  margin: 0 auto 32px auto;
}

.product-detail .spec4 ul{
  text-align: left;
  font-size:16px;
}

@media (max-width: 768px) {
  .product-detail .spec4 ul{
    font-size:14px;
  }
}

.product-detail .spec2 p {
  text-align: left;
  font-size: 12px;
  color: #333;
}
.product-detail .spec2 .guide p {
  color:black
}

@media (max-width: 768px) {
  .product-detail .spec2 .guide p {
    font-size: 10px;
  }
}

.product-detail .spec4 p {
  font-size: 24px;
  text-align: left;
  border-left: 2px solid #000;
  padding-left: 12px;
}

@media (max-width: 768px) {
  .product-detail .spec4 p {
    font-size: 16px;
  }
}

.guide p {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.link {
  color: #3fa1f5;
  text-decoration: underline;
  cursor: pointer;
}

.check-list {
	max-width: 1100px;
	margin: 0 auto;
}

.check-list h2{
  font-size: 32px;
  margin: 0px 30px 0px 0;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .check-list h2{
    font-size: 20px;
    margin: 20px 5px;
  }
}

.check-list .product-grid {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin: 10px 0px 10px 0;
}

@media not screen and (min-width: 768px) {
  .check-list .product-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin: 10px 5px;
  }
}

.check-list .product-card {
  text-align: center;
  width: 100%;
  max-width: 294px;
}

.check-list .product-img {
  width: 294px;
}

@media not screen and (min-width: 768px) {
  .check-list .product-card {
	  max-width: 116px;
  }
  .check-list .product-img {
      width: 114px;
  }
}

.check-list .product-card .price-container .price-new-container p{
  font-size:28px;
}

@media not screen and (min-width: 768px) {
  .check-list .product-card .price-container .price-new-container p{
    font-size:14px;
  }
}

.related-product {
	max-width: 1100px;
	margin: 0 auto;
}

.related-product .product-grid {
	/*
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-items: center;
  margin: 10px 0;
  overflow: hidden;
  */
  /*grid-template-columns: repeat(4, minmax(266px, 1fr));*/
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin: 10px 0px 10px 0;
}

@media not screen and (min-width: 900px) {
  .related-product .product-grid {
	  /*
    grid-template-columns: repeat(2, minmax(auto, 1fr));
    gap: 12px;
    margin-left: 5px;
    margin-right: 5px;
	*/
	gap: 5px;
    margin: 10px 5px;
  }
}

.related-product h2{
  font-size: 32px;
  margin: 60px 30px 30px 0;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .related-product h2{
    font-size: 20px;
    margin: 20px 5px;
  }
}

.related-product .product-card {
  text-align: center;
  width: 100%;
  max-width: 294px;
}

@media not screen and (min-width: 768px) {
  .related-product .product-card {
  }
}

.related-product .product-img {
  width:294px;
}

@media not screen and (min-width: 768px) {
  .related-product .product-card {
    width:100%;
	max-width: 116px;
  }
  .related-product .product-img {
    width:114px;
  }
}

.related-product .product-card .price-container .price-new-container p{
  font-size:28px;
}

@media not screen and (min-width: 768px) {
  .related-product .product-card .price-container .price-new-container p{
    font-size:14px;
  }
}

.mem-skirt-section{
  padding-top: 0;
  padding-bottom: 0;
}

.article-list-section {
  padding-top: 0px;
}

.article-list-section h2 {
  font-size: 40px;
  margin: 30px;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .article-list-section h2 {
    font-size: 20px;
    margin: 15px 5px;
    text-align: center;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 15px;
  margin-left: 3px;
  margin-top: 15px;
}

.breadcrumb .breadcrumb-outline::after{
  content: ">";
  color: #ccc;
  font-size: 14px;
  padding-left: 7px;
}

@media not screen and (min-width: 768px) {
  .breadcrumb .breadcrumb-outline::after{
      font-size: 8px;
  }
}

.breadcrumb .breadcrumb-solid{

}

.breadcrumb button {
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
  cursor: pointer;
  border: none;
}

@media not screen and (min-width: 768px) {
  .breadcrumb button {
    font-size: 8px;
    padding: 3px;
  }
}

.breadcrumb .btn-outline {
  border: 1px solid #c44ed4;
  background: #fff;
  color: #c44ed4;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: sans-serif;
  text-align: left;
}

.breadcrumb .btn-solid {
  background: #c44ed4;
  color: #fff;
  margin-top: 0px;
  margin-bottom: 0px;
  text-align: left;
}

.breadcrumb span {
  color: #ccc;
  font-size: 14px;
}

@media not screen and (min-width: 768px) {
  .breadcrumb span {
    color: #ccc;
    font-size: 8px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 60px;
  max-width: 100%;
  justify-content: center;
}

@media not screen and (min-width: 768px) {
  .pagination {
    margin-left: 0px;
    margin-top: 30px;
    font-size: 8px;
  }
}

.pagination button {
  width: 28px;
  height: 28px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  font-size: 12px;
}

@media not screen and (min-width: 768px) {
  .pagination button {
    width: 26px;
    height: 26px;
  }
}

.pagination .page-active {
  background-color: #c44ed4;
  color: #fff;
}

.pagination .page-inactive {
  background-color: #ccc;
  color: #fff;
}

.pagination .next {
  background: transparent;
  color: #999;
  font-size: 16px;
  border: none;
  cursor: pointer;
  padding: 0 4px;
}

.article-list-section .article-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
  font-family: "Merriweather", serif;
}

.article-list-section .article-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  width: 100%;
  max-width: 360px;
}

.article-list-section .thumbnail{
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 90px;
  background-color: #ddd;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

@media not screen and (min-width: 768px) {
  .article-list-section .thumbnail{
    max-width: 113px;
    max-height: 99px;
  }
}

.article-list-section .thumbnail img{
  width:100%;
  height: auto;
}

.article-list-section .text .title p{
  font-size: 12px;
  margin: 0 0 6px 0;
  color: #333;
  font-family: sans-serif;
}

@media not screen and (min-width: 768px) {
  .article-list-section .text .title p{
    font-size: 12px;
  }
}

.article-feature-section {

}

.article-category-section {

}

.article-category-section h2{

}

.article-category-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 16px;
}

.article-category-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-category-section button {
  width: 100%;
  text-align: left;
  padding: 16px;
  font-size: 16px;
  border: none;
  background: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s;
}

@media not screen and (min-width: 768px) {
  .article-category-section button {
    font-size: 12px;
    padding: 12px;
  }
}

.article-category-container button .category-list-1 {
  
}

.article-category-container .category-list-2 {
  padding-left: 32px;
}

.article-list-code {
  margin-bottom: 32px;
}

.article-detail-section {
  width: 55%;
  margin: 1em auto 0;
  padding: 0;
  overflow-x: scroll;
}

@media not screen and (min-width: 768px) {
  .article-detail-section {
    width: auto;
    margin-right: 0px;
    margin-left: 0px;
    padding-left: 3px;
    padding-right: 3px;
  }
}

.article-detail-section h2{
  margin: 5px 0 15px 0;
}

.article-detail-section p {
  margin: auto;
}

.article-detail-section > p {
  max-width: 1200px;
  margin: 20px auto 0;
  line-height: 1.8;
  font-size: 16px;
  color: #333;
  padding: 0 10px;
  text-align: left;
}

@media not screen and (min-width: 768px) {
  .article-detail-section p {
    font-size:14px;
  }
}

.article-detail-section img {
  bottom: 20px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .article-detail-section img {
    position: static;
    display: block;
    margin: 20px auto 0;
    width:100%;
  }
}

.article-detail-section article {
  padding: 16px;
  width: 70%;
  margin:60px auto;
  background-color: #eee;
}

.article-detail-section article h2 {
  font-size: 20px;
  margin: 10px 0;
  color: #000;
  border-left: none; 
  text-align: center;
}

.article-detail-section article h2::before {
  content: "- ";
}

.article-detail-section article h2::after {
  content: " -";
}

.article-detail-section article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 18px;
  text-align: left;
}

.article-detail-section article li {
  margin-bottom: 6px;
}

.article-detail-section article li::before {
  content: "- ";
}

.article-detail-section article ul li ul {
  margin-top: 4px;
  padding-left: 16px;
}

.article-detail-section article .view-more {
  text-align: center;
  margin-top: 16px;

}

@media screen and (max-width: 768px) {
  .article-detail-section article {
    margin: 30px auto;
    width: 90%;
  }
}

.article-detail-section article .view-more a{
  font-size: 14px;
  text-decoration: underline;
  font-family: sans-serif;
}

.article-detail-section .column-text-content {
   padding: 0 0; 
}

.article-detail-section h3 {
  text-align: left;
  font-size: 1.3em;
  padding: 0.5em;
  margin-bottom: 3px;
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
}

.article-detail-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #9747ff 2%, #ddd 98%);
  box-sizing: border-box;
  }

.article-detail-section h2 {
  border-left: 5px solid #9747ff;
  text-align: left;
  padding: 0.75em 0.75em 0.75em 10px;
  margin-bottom: 15px;
  margin-left: 0px;
  margin-right: 0px;
  font-size: 1.4em;
}

@media screen and (max-width: 768px) {
  .article-detail-section h2 {
    font-size: 18px;
	margin-top: 2.5em;
  }
}

.article-detail-section span {
  text-decoration: underline pink 5px;
  text-underline-offset: -1px;
}

.article-detail-section h4 {
  border-left: 5px solid var(--app-color);
  text-align: left;
  padding-left: 10px;
  text-decoration: none;
  margin: 20px 0px 15px 0px;
}

@media screen and (max-width: 768px) {
  .article-detail-section h4 {
    margin: 20px 3px 15px 3px;
  }
}

.toc {
  position: relative;
}

.toc .toc-open-btn {
	width: 70%;
	padding: 8px 0;
	border-radius: 40px;
	color: #fff;
	font-weight: bold;
	background-color: var(--app-color);
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	z-index: 1;
	cursor: pointer;
}

.toc .toc-open-btn:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  position: absolute;
  top: 50%;
  left: 92%;
  margin-top: -4px;
  transform: rotate(45deg);
}

.toc-section {
  background-color: #f5f5f5 !important;
  position: relative;
  max-height: 310px;
  overflow: hidden;
}

.toc-section:after {
	content: '';
	width: 100%;
	height: 50px;
	background-image: linear-gradient(to bottom, transparent 0px, #fff 30px);
	position: absolute;
	bottom: 0;
	left: 0;
}

#toc-open {
    display: none;
}

#toc-open:checked ~ .toc-section {
	max-height: initial;
	transition: all 0.5s;
}

#toc-open:checked ~ .toc-section:after {
	display: none;
}

#toc-open:checked + label {
	display: none;
}

@media screen and (max-width: 768px) {
	.toc-section {
		max-height: 270px;
	}
	.toc .toc-open-btn {
		width: 90%;
	}
}


.product-box {
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .product-box {
    margin: 0;
  }
}

.product-box h4{
  font-size: 20px;
  color: #000;
}

.product-box .product-img-box{
  display: flex;
  gap: 30px;
}

.product-box .product-img-card{
  width: 222px;
  border: solid 1px #d9d9d9;
}

.product-box .product-img-card .product-image img{
  border-radius: unset;
  margin-top: 0px;
  margin-bottom: 0px;
}

@media screen and (max-width: 768px) {
  .product-box .product-img-box{
    width: 100%;
    display: block;
  }

  .product-box .product-img-card{
    width: 360px;
    margin: 0 auto;
  }
}

.product-box .product-img-detail{
  width: 70%;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product-box .product-img-detail{
    width:100%;
  }
}

.product-box .product-img-detail p {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .product-box .product-img-detail p {
    margin-top: 12px;
  }
  .article-detail-section h3 {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 3px;
    padding-right: 3px;
  }
  .product-box h4{
    font-size: 14px;
  }
}

.sub-column{
  margin-bottom: 60px;
  text-align: left;
}

.sub-column p {
  text-align: left;
}

.product-image {
  text-align: center;
  margin-bottom: 8px;
  width: 221px;
}

@media screen and (max-width: 768px) {
  .product-image {
    width: 360px;
  }
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-info {
  margin-bottom: 8px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .product-info {
    padding-top: 0px;
  }
}

.product-info p{
  font-size: 14px;
  margin: 5px;
  padding-left: 0px;
  padding-right: 0px;
}

@media screen and (max-width: 768px) {
  .product-info p{
    font-size: 14px;
  }
}

.product-info ul {
  display: flex;
  justify-content: space-between;
  padding-left: 0px;
}
 
.product-info li {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-box .price-info {
  margin-bottom: 12px;
  font-family: "Average", serif;
}

.product-box .price-info p {
  color: #e4002b;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.product-box .price-moto-info p {
    text-decoration: line-through;
    margin: 0 10px 0 5px;
    font-size: 12px;
    font-family: "Average", serif;
}

@media screen and (max-width: 768px) {
  .product-box .price-moto-info p {
      margin:3px 10px 0 5px;
      font-size: 12px;
  }
}

.product-box .product-price {
    display: flex;
}

.article-detail-section .button {
  display: inline-block;
  background-color: #55c7e6;
  color: white;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 4px;
  font-size: 20px;
  margin: 10px auto 0;
  text-align: center;
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .article-detail-section .button {
    width: 100%;
    padding: 10px 0;
    position: static;
  }
}

.button::after {
  content: '>';
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .button::after {
    right: 15px;
    top: 85%;
    transform: translateY(-50%);
  }
}

.button:hover {
  background-color: #30b0d6;
}

/* uL */
.article-detail-section > ul {
  border: 0 !important;
  background-color: #fff !important;
  color: #333;
  padding: 16px;
  margin: 30px 3px;
  padding-left: 30px;
  text-align: left;
}

.article-detail-section ul.wp-block-list {
  color: initial;
  border: 0;
  background-color: initial;
  margin: auto;
}

/* OL */
.article-detail-section > ol {
  border: 1px solid #d269ff;
  padding: 16px;
  margin: 30px 3px;
  padding-left: 30px;
  text-align: left;
}

.article-detail-section .caption-box{
  text-align: left;
  margin: auto 3px;
}

/* キャプション付きOL：pの直後のol */
.article-detail-section .caption-box > p + ol {
  border: 1px solid #d269ff;
  padding: 16px;
  margin: 18px 0 32px;
  padding-left: 30px;
}

/* キャプションのスタイル */
.article-detail-section .caption-box > p {
  position: relative;
  display: inline-block;
  background-color: #b23fe0;
  color: white;
  padding: 3px 16px;
  margin: 0;
  transform: translateY(12px);
  z-index: 1;
  top: 18px;
  left: 12px;
}

/* キャプションのないOL（pの前にないol）に別のスタイル */
.article-detail-section > ol:not(:prev('p')) {
  border: 1px solid #b941d4;
  padding: 5px 40px;
  margin: 10px 0;
}

/* リスト項目 */
.article-detail-section li {
  font-size: 16px;
}

/*引用タグ*/
.article-detail-section blockquote{
  position: relative;
  padding: 24px 16px 16px 24px;
  margin: 30px auto;
  background: #eee;
  color: #333;
  line-height: 1.6;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.article-detail-section blockquote::before{
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px; 
  left: 10px;
  width: 3px;
  background: #ccc;
  border-radius: 2px; 
}

@media (max-width: 600px) {
  .article-detail-section blockquote::before{
    left: 7px;
    width: 2px;
  }
}

.article-detail-section blockquote p {
   margin: 0 0 5px;
   font-size: 12px;
}

.article-detail-section blockquote footer {
  margin-top: 0.5em;
  font-size: 8px;
  color: #777;
  margin-left: 10px;
}

.article-detail-section blockquote a {
  color: #7eccef;
  text-decoration: none;
}

@media (max-width: 600px) {
  .article-detail-section blockquote {
    padding: 12px 16px;
    font-size: 14px;
    margin-left: 3px;
    margin-right: 3px;
  }

  .article-detail-section blockquote footer {
    font-size: 12px;
  }
}

.article-detail-section .related-article {
  text-align: left;
  margin-top: 30px;
}

/* ラベル */
.article-detail-section .related-article > span {
  position: relative;
  top: 10px;
  left: 16px;
  background-color: white;
  padding: 3px 16px;
  margin: 0;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.article-detail-section .related-article figure {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  border: 1px solid black;
  padding: 12px;
}

@media (max-width: 600px) {
  .article-detail-section .related-article figure {
    padding: 12px;
    margin-left: 3px;
    margin-right: 3px;
  }
}
/* 記事画像 */
.article-detail-section .related-article figure img {
  width: 20%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #ddd;
  margin: 0;
}

/* 記事タイトル */
.article-detail-section .related-article figcaption {
  flex: 1;
  padding-top: 4px;
}

.article-detail-section .related-article figcaption a {
  text-align: left;
  line-height: 1.5;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: inline-block;
}

.article-detail-section table {
  margin: 30px 3px;
  border-collapse:separate;
  border-spacing: 0;
  font-size: 14px;
  width: 100%;
  border-top: 1px solid #000;
  overflow-x: scroll;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .article-detail-section table {

  }
}

.article-detail-section table th:first-child{
}

.article-detail-section table th:last-child{
  border-right: 1px solid #000;
}

.article-detail-section table th{
  text-align:center;
  color:white;
  background: #b23fe0;
  padding: 10px 0;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 1em;
  white-space: nowrap;
}

.article-detail-section table td{
  text-align: center;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  border-top:none;
  padding: 10px;
}

.article-detail-section table td:last-child{
  border-right: 1px solid #000;
}

.article-detail-section table tr:last-child td:first-child {

}

.article-detail-section table tr:last-child td:last-child {

}

@media (max-width: 600px) {
  .article-detail-section .related-article  > span {
    font-size: 12px;
    padding: 2px 10px;
  }

  .article-detail-section .related-article figure img {
    width: 40%;
  }

  .article-detail-section  .related-article figcaption a {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  /*
  .article-section-area {
    width: 96%;
    padding-left: 0px;
    padding-right: 0px;
  }
    */

    /*
  .article-detail-section > p {
    font-size: 12px;
    padding: 5px 12px;
  }
*/
  .article-detail-section li {
    font-size: 12px;
  }
}
/************/

.main-cart-section {
  padding-top: 0px;
  width: 90%;
  flex:2;
}

@media screen and (max-width: 768px) {
  .main-cart-section {
    width: 100%;
  }
}

.main-cart-container {
  display: flex;
  flex-wrap: nowrap;
  margin: 10px auto 20px auto;
  gap: 20px;
  padding: 0 10px;
  overflow: hidden;
  /* border-top: 2px solid #f5f5f5; */
}

@media screen and (max-width: 768px) {
  .main-cart-container {
    flex-direction: column;
    margin-bottom: 20px;
    margin-top: 0px;
  }
}

.main-cart-area {
  flex: 2 1 600px;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .main-cart-area {
    padding: 0;
  }
}

.main-cart-area .main-cart-area-note span{
   color:#E4002B;
}

.main-cart-area .main-cart-area-note{
  border-bottom: 2px solid #ddd;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.main-cart-area-note p {
		font-size: 12px;
	}
}

.main-cart-sidebar {
  flex: 1 1 300px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-cart-area h2 {
  margin: 0;
  font-size: 20px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .main-cart-area h2 {
    margin-top: 10px;
  }
}

.main-cart-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.main-cart-img{
 width: 114px;
 height: 114px;
}

.main-cart-img img {
  width: 100%;
  height: auto;
  margin-right: 10px;
}

.main-cart-item-info {
  flex: 1;
  margin-left: 15px;
  font-size: 12px;
}

.main-cart-item-info p {
  text-align: left;
  padding-bottom: 5px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .main-cart-item-info p {
    padding-bottom: 10px;
    font-size: 12px;
  }
}

.main-cart-item-wrap {
	width: calc( 100% - 114px );
	display: flex;
}

@media screen and (max-width: 768px) {
	.main-cart-item-wrap {
		display: block;
	}
}

.main-cart-item-info .item-name{

}

.main-cart-item-info .item-name p{

}

.main-cart-item-info .item-name span{
  font-size: 8px;
}

.main-cart-item-info .item-num{
  display: flex;
}

.main-cart-item-info .item-num p{

}

.main-cart-item-info .item-num span{
  font-size: 12px;
}

.main-cart-item-info .item-size {
  display: flex;
}

.main-cart-item-info .item-size p{
}
.main-cart-item-info .item-size span{
  font-size: 12px;
}

.main-cart-item-info .item-color {
  display: flex;
}

.main-cart-item-info .item-color p{

}

.main-cart-item-info .item-color span{
  font-size: 12px;
}

.main-cart-item-info .item-price {
  display: flex;
}

.main-cart-item-info .item-price p{
  color: #E4002B;
  font-size: 14px;
  font-family: "Merriweather", serif;
}

.main-cart-item-info .item-price span{
  font-size: 12px;
}

.main-cart-item-info .item-price span{
  font-size: 8px;
  padding-top: 6px;
}

@media screen and (max-width: 768px) {
  .main-cart-item-info .item-num span{
    font-size: 12px;
  }
  .main-cart-item-info .item-size span{
    font-size: 12px;
  }
  .main-cart-item-info .item-color span{
    font-size: 12px;
  }
  .main-cart-item-info .item-price span{
    font-size: 12px;
    padding-top: 0px;
  }
  .main-cart-item-info .item-price p{
    font-size: 12px;
  }
  .main-cart-area + .recommended-area {
	  padding-top: 0px;
  }
}

.item-del {
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-right: 15px;
  font-size: 12px;
}

.counter-container {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.delete-button {
  width: 100%;
  font-size: 14px;
  color: #666;
  text-decoration: underline;
  cursor: default;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid #e9ecef;
  width: fit-content;
  min-width: 120px;
}

.counter-box button {
  width: 32px;
  height: 32px;
  border: 2px solid #ddd;
  background: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.counter-box button:hover {
  border-color: #6ecfe2;
  background: #f8f9ff;
  color: #333;
}

.counter-box button:active {
  transform: scale(0.95);
}

.counter-box div {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  min-width: 40px;
  text-align: center;
  color: #333;
}

.main-cart-summary table{
  margin-right: 0px;
  margin-left: auto;
  text-align: center;
  margin-top: 20px;
  min-width: none;
  font-size: 14px;
}

@media (max-width: 480px) {
  .main-cart-summary table{
    width: 100%;
  }
}

.main-cart-summary td{
  border: 0px;
  padding: 0;
}

.main-cart-summary p{
  margin: 0;
  padding: 0 0 12px 0;
}

@media (max-width: 480px) {
  .main-cart-summary p{
    font-size: 14px;
  }
}

.main-cart-summary .row1 p {
  text-align:right;
}

@media (max-width: 480px) {
  .main-cart-summary .row1 p{
    text-align:left;
  }
}

.main-cart-summary .row2 p {
  text-align:right;
  font-family: "Merriweather", serif;
}

.main-cart-summary .cart-total p {
  font-weight:bold;
}

.main-cart-primary-btn, .main-cart-sub-btn, .main-cart-amazon-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
}

.main-cart-primary-btn {
  background-color: #77d6f6;
  color: white;
  border: none;
  position: relative;
}

.main-cart-primary-btn::after {
  content: ">";
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 30%;
}

.main-cart-amazon-btn {
  color: black;
  padding-left: 0px;
  padding-right: 0px;
  max-width: 601px;
  margin: 10px auto;
}


.main-cart-sub-btn {
  border: 2px solid #77d6f6;
  background: white;
  color: #77d6f6;
  width: 75%;
  display: block;
  margin: 10px auto;
  text-align: center;
}

.cart-check-items{
  overflow-x: scroll;
  margin-bottom: 30px;
  padding: 20px 20px 20px 10px;
}

@media screen and (max-width: 768px) {
  .cart-check-items{
    padding-left: 0;
  }
}

.cart-check-items .product-grid {
    display: flex;
    gap: 10px;
    justify-items: center;
    margin: 10px 10px;
}

@media screen and (max-width: 768px) {
  .cart-check-items .product-grid{
    margin: 10px 0;
  }
}

.cart-check-items .product-card {
  width: 50%;
}

.recommended-area{
  width:40%;
  padding-top: 80px;
}

.recommended-area h2 {
  text-align: left;
  margin: 0 0 10px 0;
  font-size: 20px;
  padding-left: 20px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .recommended-area h2 {
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .cart-check-items .product-card {
    width: 100%;
  }

  .recommended-area{
    width:100%;
  }
}

.recommended-items{
  overflow-x: scroll;
  padding: 20px 20px 20px 10px;
}

@media screen and (max-width: 768px) {
  .recommended-items{
    padding-left: 0;
  }
}

.recommended-items .product-grid {
    display: flex;
    gap: 10px;
    justify-items: center;
    margin: 10px 10px;
}

@media screen and (max-width: 768px) {
 .recommended-items .product-grid{
    margin: 10px 0;
  }
}

.recommended-items .product-card {
  width: 50%;
}

.cart-check-items .product-img {
    width: 114px;
}

@media not screen and (min-width: 768px) {
  .cart-check-items .product-img {
      width: 114px;
  }
}

.cart-check-items .product-card .price-container .price-new-container p {
  font-size: 10px;
}

.cart-check-items .product-card p {
  font-size: 8px;
}

.recommended-items .product-card .price-container .price-new-container p {
  font-size: 10px;
}

.recommended-items .product-card p {
  font-size: 8px;
}

.recommended-items .product-img {
    width: 114px;
}

.related-article-list h2{
  text-align: left;
  margin: 30px 0;
}

@media not screen and (min-width: 768px) {
  .related-article-list h2{
    margin: 15px;
  }
}

.related-article-list .thumbnail{
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 90px;
  background-color: #ddd;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

@media not screen and (min-width: 768px) {
  .related-article-list .thumbnail{
    max-width: 113px;
    max-height: 99px;
  }
}

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

.product-detail .product-image {
  position: relative;
  text-align: center;
  margin-bottom: 8px;
  width: 50%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .product-detail .product-image {
    width: 100%;
  }
}

.product-detail .product-info {
  margin-bottom: 8px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .product-detail .product-info {
    padding-top: 0px;
  }
}

.product-detail .mem-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  cursor: pointer;
  z-index: 2;
}

.product-detail .mem-left {
  left: 10px;
}

.product-detail .mem-right {
  right: 10px;
}

@media (max-width: 600px) {
  .product-detail .mem-arrow {
    width: 30px;
    height: 30px;
  }
}

.main-cart-button-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.main-cart-primary-btn, .main-cart-sub-btn, .main-cart-amazon-btn {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.2s ease;
  border: none;
}

.main-cart-primary-btn {
  background: #6ecfe2;
  color: white;
  position: relative;
}

.main-cart-primary-btn:hover {
  background: #5db8ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(110, 207, 226, 0.3);
}

.main-cart-primary-btn::after {
  content: ">";
  display: inline-block;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
}

.main-cart-amazon-btn {
  background: linear-gradient(#ffd814, #f5c200);
  color: #111;
  border: 1px solid #a88734;
  padding: 12px 20px;
}

.main-cart-amazon-btn:hover {
  background: linear-gradient(#f5c200, #e6b800);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 194, 0, 0.3);
}

.main-cart-amazon-btn img{
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.main-cart-sub-btn {
  background: white;
  color: #6ecfe2;
  border: 2px solid #6ecfe2;
  width: 100%;
  margin: 0;
}

.main-cart-sub-btn:hover {
  background: #6ecfe2;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(110, 207, 226, 0.2);
}

#splide01 {
  padding-bottom: 2em;
}

/* アイテムカード */
.item_card {
	margin: 2em auto;
	width: 100%;
	max-width: 340px;
	border-radius: 10px;
	border: 1px solid #efefef;
}

.item_card a {
	display: block;
}

.item_card .item_card_image_wrap img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	margin: 0;
	border-radius: 10px 10px 0 0;
}

.item_card .item_card_info_wrap {
	padding: 4px 8px;
}

.item_card .item_card_info_wrap .name {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	font-size: 16px;
	font-weight: 700;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.item_card .item_card_info_wrap .price {
	font-family: 'Noto Sans JP', sans-serif;
	color: #333;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
}

.item_card .item_card_info_wrap .item_card_btn {
	display: block;
	background: var(--app-color);
	border: 1px solid var(--app-color);
	font-size: 14px;
	color: #fff !important;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 3px;
	font-weight: 700;
	margin-top: 5px;
	transition: .3s;
	letter-spacing: 1px;
	position: relative;
}

.item_card .item_card_info_wrap .item_card_btn:before {
	content: '';
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 3px #fff;
	border-right: solid 3px #fff;
	position: absolute;
	top: 50%;
	left: 92%;
	margin-top: -4px;
	transform: rotate(45deg);
}

.top-splide__slide {
	padding-top: 0 !important;
}

#splide01 {
	margin-top: -10px;
}

@media not screen and (min-width: 768px) {
	.modal {
		width: 90% !important;
	}
}