@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Roboto:wght@500;700&display=swap");
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
html {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  /* scroll-behavior: smooth; */
  word-break: break-all;
  font-size: 10px;
}
@media only screen and (min-width: 768px) {
  html {
    font-size: 0.8771929825vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}
body a {
  cursor: pointer;
}

.section_inner {
  max-width: 1140px;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .section_inner {
    padding: 0 1rem;
    max-width: 550px;
  }
}

.header {
  width: 100%;
  margin-top: 5rem;
  background-color: #fff;
  border-top: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
}
@media only screen and (max-width: 767px) {
  .header {
    margin-top: 0;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    border-top: none;
    border-bottom: none;
  }
}

.headerContent {
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}

.header-nav {
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10rem;
}

.header-nav ul li {
  height: inherit;
}

.header-nav ul li a {
  height: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0 1.5rem;
  letter-spacing: 0.02em;
}

.header-nav ul li a:hover {
  opacity: 0.7;
}

.header__menu {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
}

.hamburger {
  z-index: 9999;
}

@media only screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  position: relative;
  display: block;
  height: 3px;
  width: 28px;
  background: black;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 7px 0;
  width: 22px;
}

.hamburger span:nth-child(3) {
  top: 0;
  width: 15px;
}

/*OPEN時の動き*/
.hamburger.open span:nth-child(1) {
  top: 11.4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  top: -8px;
  width: 28px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-menu {
  padding: 3rem 1rem;
  display: none;
  background-color: #fff;
  position: relative;
  z-index: 100;
  height: 100vh;
}

.drawer-menu__lists {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1rem;
}

.drawer-menu__lists li a {
  display: block;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  line-height: 1;
  padding: 1rem;
}

footer {
  background-color: #666666;
  color: #fff;
  line-height: 1.6;
}

.footer_inner {
  max-width: 960px;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footerLeft h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.footerLeft p:last-child {
  margin-top: 1rem;
}

.footerLeft__link {
  display: inline-block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.footerLeft__link:hover {
  opacity: 0.7;
}

.footerLeft__link a {
  position: relative;
  padding: 1rem 1rem 1rem 1.6rem;
}
.footerLeft__link a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1.2rem;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.footer__address {
  margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .footerRight {
    margin-top: 3rem;
  }
}

.footerRight__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
}
.footerRight__link a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footerRight__link a:hover {
  opacity: 0.7;
}

.instaLink {
  width: 3rem;
}
.instaLink img {
  width: 100%;
}

.tiktokLink {
  width: 2.6rem;
}
.tiktokLink img {
  width: 100%;
}

.youtubeLink {
  width: 3.4rem;
}
.youtubeLink img {
  width: 100%;
}

.xLink {
  width: 3.2rem;
}
.xLink img {
  width: 100%;
}

.sec05 .lineBtn {
  width: 20rem;
  height: 5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  background-color: #06c755;
  border: 1.5px solid #06c755;
  border-radius: 999px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  position: relative;
  padding-right: 0.5rem;
}

.sec05 .lineBtn::after {
  display: block;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 2.5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.sec05 .lineBtn:hover {
  background-color: #fff;
  color: #06c755;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.sec05 .lineBtn:hover::after {
  border-top: 2px solid #06c755;
  border-right: 2px solid #06c755;
}

.sec05 .lineBtn {
  font-size: 1.8rem;
  font-weight: 700;
}

.sec05 {
  padding-top: 6rem;
  max-width: 120rem;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto 10rem;
}

.sec05 h2 {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
}

.sec05 p {
  margin-top: 3rem;
  text-align: center;
}

.sec05 {
  padding: 12rem 0;
  max-width: 120rem;
  padding-left: 30px;
  padding-right: 30px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .sec05 {
    padding: 8rem 0 6rem;
  }
}

.sec05 h2 {
  font-family: "Roboto", sans-serif;
  font-size: 7.2rem;
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .sec05 h2 {
    font-size: 4.6rem;
  }
}

.sec05 p {
  margin-left: auto;
  margin-right: auto;
  margin-top: 3rem;
  text-align: center;
  line-height: 1.6;
}

.top {
  padding-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .top {
    margin-top: 104px;
    padding-top: 0;
  }
}

h1 {
  font-family: "Roboto", sans-serif;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 4.6rem;
  }
}

.brand_item_box {
  margin-top: 104px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .brand_item_box {
    margin-top: 3rem;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}

.brand_item_content {
  padding: 0 3rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .brand_item_content {
    padding: 0 1rem;
  }
}

.brand_item_content:not(:nth-child(4n)) {
  position: relative;
}
.brand_item_content:not(:nth-child(4n))::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.1rem;
  height: 60%;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .brand_item_content:not(:nth-child(4n))::after {
    display: none;
  }
}

.brand_item_content_image {
  width: 100%;
  aspect-ratio: 120/150;
  position: relative;
  overflow: hidden;
}
.brand_item_content_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.brand_item_content_name {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.8), 0 0 1rem rgba(0, 0, 0, 0.8), 0 0 3rem rgba(0, 0, 0, 0.8);
}
@media only screen and (max-width: 767px) {
  .brand_item_content_name {
    font-size: 1.6rem;
    letter-spacing: -0.02em;
  }
}

.single {
  padding: 8rem 0 0;
}
@media only screen and (max-width: 767px) {
  .single {
    margin-top: 6rem;
    padding-top: 0;
  }
}

.single_img {
  max-width: 50rem;
  width: 100%;
  margin: auto;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
}
.single_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.singleDataBox {
  text-align: center;
  padding-bottom: 50px;
}
.singleDataBox h2 {
  margin-top: 3rem;
  font-size: 4rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .singleDataBox h2 {
    font-size: 2.4rem;
  }
}

.model-series {
  margin-top: 2rem;
  font-family: "Roboto", sans-serif;
  font-size: 6rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .model-series {
    font-size: 3.6rem;
  }
}

.model-number {
  margin-top: 1rem;
  color: rgb(42, 123, 93);
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
}

.model-code {
  margin-top: 1rem;
}

.item__date {
  display: block;
  margin-top: 2rem;
  font-size: 1.6rem;
}

.brand {
  padding-top: 8rem;
}
@media only screen and (max-width: 767px) {
  .brand {
    margin-top: 104px;
    padding-top: 0;
  }
}

.brand-cate-common-title {
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-family: "Roboto", sans-serif;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .brand-cate-common-title {
    font-size: 2.9rem;
    margin-bottom: 3rem;
  }
}

.brand_cate {
  margin-bottom: 10rem;
}

.brand_cate__content {
  width: 100%;
}

.brand_cate__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .brand_cate__items {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 4rem;
  }
}

.brand_cate_item {
  padding: 0 2rem;
}
@media only screen and (max-width: 767px) {
  .brand_cate_item {
    padding: 0 0.5rem;
  }
}

.brand_cate_item__image {
  aspect-ratio: 146/146;
  position: relative;
  overflow: hidden;
  border-bottom: 0.1rem solid #000;
  padding-bottom: 1rem;
}
.brand_cate_item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.brand_cate_item__name {
  margin-top: 1.6rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .brand_cate_item__name {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

.brand_archive__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  row-gap: 2rem;
}

.singleDataBox h2,
.singleDataBox .model-series{
	display: none;
}

.sec05 {
    padding: 0 0 50px;
}

.b_lock{
display: inline-block;
}

@media only screen and (max-width: 767px) {
  .brand_archive__items {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
    row-gap: 0.5rem;
    padding: 0;
  }
}

.brand_archive_item {
  background-color: #d9d9d9;
  padding: 0rem;
}

.brand_archive_item__image {
  aspect-ratio: 146/146;
  position: relative;
  overflow: hidden;
}
.brand_archive_item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.brand_archive_item__name {
  margin-top: 1rem;
  text-align: center;
line-height: 20px;
}

.brand_archive_item__date {
  display: block;
  margin-top: 1.6rem;
  text-align: right;
  color: #555;
}
@media only screen and (max-width: 767px)  {
  .brand_archive_item__date {
    font-size: 1.2rem;
  }
}

.page-nav {
  margin-top: 3rem;
}
.page-nav ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}
.page-nav ul.page-numbers li {
  width: 3rem;
}
.page-nav ul.page-numbers li .page-numbers {
  width: 100%;
  height: 3rem;
  border: 0.1rem solid #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-nav ul.page-numbers li .page-numbers.current {
  background: #aaa;
  color: #fff;
}

.select-box {
  margin-left: 3rem;
  width: 18rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .select-box {
    margin-left: 0;
  }
}
.select-box::after {
  content: "";
  width: 1.6rem;
  height: 1.4rem;
  background: #aaa;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
.select-box .form-select {
  width: 100%;
  height: 3rem;
  border: 0.1rem solid #000;
  padding: 0 2rem;

}
.header-nav-last {
  height: inherit;
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
}
@media only screen and (max-width: 767px)  {
  .header-nav-last {
    justify-content: center;
    margin-left: 0;
  }
}
.header-nav-last form {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 33px;
  width: 240px; /* 任意の幅に調整してください */
  overflow: hidden;
  border-radius: 3px;
  background-color: #f2f2f2;
}
.header-nav-last input {
  height: 33px;
  width: 240px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  background-color: #f2f2f2;
  font-size: 1em;
  outline: none;
}
@media only screen and (max-width: 767px)  {
  .header-nav-last form {
    height: 50px;
  }

  .header-nav-last input {
    height: 50px;
  }
}
.header-nav-last button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 33px;
    border: none;
    background-color: transparent;
    cursor: pointer;
}
/* .header-nav-last button::after {
  width: 20px;
  height: 20px;
  background-image: url(../img/common/search.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top left;
  top: 26%;
  right: 20%;
  content: '';
  position: absolute;
} */
.search-title {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  margin-top: 5rem;
}
.search-counts {
  text-align: center;
  font-size: 2rem;
  margin-top: 1rem;
}
.search-noword {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 5rem;
}
.search-noitem {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 5rem;
}
@media only screen and (max-width: 767px) {
  .search-title {
    font-size: 2.5rem;
  }
  .search-counts {
    font-size: 1.5rem;
  }
}
.model-free-write {
  margin-top: 2rem;
}
#top-archive {
  margin-top: 2rem;
}
.brand-front {
  width: 100%;
  max-width: 300px;
  margin: 0 auto ;
}
.brand-front img {
  width: 100%;
  max-width: 100%;
}
.ft-button {
  display: none;
}
@media only screen and (max-width: 767px) {
  .ft-button {
    display: block;
    position: fixed;
    text-align: right;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .ft-button a {
    bottom: 12px;
    right: 5px;
    position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0;
  width: 120px;
  height: 80px;
  text-align: center;
  line-height: 1.4;
  color: #FFF;
  font-size: 12px;
  font-weight: bold;
  background: #06c755;
  border-radius: 50%;
  box-sizing: border-box;
  }
  .ft-button a::before {
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 86px;
    top: 44px;
    border-right: 22px solid #06c755;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    transform: rotate( 110deg);
  }
  .header__drawer .sec05  {
    padding-top: 1rem;
  }
}

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

/* cust 2025.05.12 */
.txt_left{
text-align: left;
}

.h_logo{
height: 100px;
padding: 20px 0;
}

.h_logo img{
max-height: 60px;
}

.section_inner .brand-front{
display: none;
}

.header-nav {
    max-width: 1140px;
	width: 100%;
}

.fl02{
display: flex;
justify-content: space-between;
}

.header-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -webkit-justify-content: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-box-align: right;
    -webkit-align-items: right;
    -ms-flex-align: right;
    align-items: right;
    height: 10rem;
}

.brand_archive_item {
    background-color: #fff;
}

.brand_archive_item__name {
    padding-top: 1.5rem;
	padding-bottom: 1.5rem;
	padding-left: 3px;
    padding-right: 3px;
	background-color: #eee;
	margin-top: 0px;
}
.brand_archive_item__date {
	    padding-top: 1.5rem;
	padding-bottom: 1.5rem;
    margin-top: 0;
    text-align: center;
    color: #fff;
	background-color: #000;
}

.mar5{
display: inline-block;
margin-right: 5px;
}

.mar10{
display: inline-block;
margin-right: 10px;
}

time small{
font-size: 100%;
}

.sec05 p {
    margin-top: 0;
margin-bottom: 10px;
}

.sec05 .lineBtn {
    margin-top: 20px;
}

.page-nav{
margin-bottom: 50px;
}

.model-number{
font-size: 28px;
}

.model-code{
font-size: 24px;
}

	.brand_archive{
		margin-bottom: 50px;
	}

@media only screen and (min-width: 768px) {
.header-nav {
padding-left: 3rem;
padding-right: 3rem;
}
	.sp{
	display: none;
	}
}
@media only screen and (max-width: 767px) {
.sec05 p {
margin-top: 0;
margin-bottom: 0px;
}
	.drawer-menu__lists li:first-child{
margin-bottom: 40px;
	}
	.header__drawer .sec05{
		margin-top: 20px;
	}
	.pc{
		display: none;
	}
	 .brand_item_box {
        margin-top: 80px;
	}
	.headerContent{
		display: none;
	}
.header__menu {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
}
}



.menu-title {
	display: block;
	font-family: "Roboto", sans-serif;
	font-size: 2rem;
	line-height: 1;
	padding: 1rem;
	text-align: center;
	font-weight: bold;
	cursor: pointer;
	height: inherit;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0 1.5rem;
	letter-spacing: 0.02em;
}
.mega-menu {
	position: absolute;
	left: 0;
	width: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	padding: 20px;
	z-index: 100;
	display: none;
}
.mega-menu ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	max-width: 1140px;
	margin: 0 auto;
	height: auto;
}
.mega-menu ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #333;
	transition: color 0.2s;
	font-size: 15px;
}
.mega-menu ul li a:hover {
	color: #007bff;
}

	.top .top-brand{
margin-bottom: 10rem;
	}

.brand_cate__title.brand-cate-common-title,
.brand_archive__title.brand-cate-common-title{
display: none;
}

.footerLeft h2{
margin-bottom: 0px;
}

.model-code{
display: none;
}

@media only screen and (min-width: 768px) {	
	
.brand_item_box {
  margin-top: 0;
}	
	
.header-nav{ 
	position: relative;
}
.drawer-menu {
	display: flex;
	height: auto;
	position: static;
	padding:0;
}
.drawer-menu .sec05 {
	display: none;

}
.drawer-menu__lists {
	flex-direction: row;
}
.mega-menu ul li a img {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	object-fit: cover;
}
}

@media only screen and (max-width: 767px) {
	.footerRight{
margin-top: 10px;
	}
.headerContent {
	display: block;
	padding-left: 10px;
	padding-right: 10px;
}
.header__menu {
	position: fixed;
	left:auto;
}
.drawer-menu {
	position: fixed;
	top:0;
	left: 0;
	width: 100%;
	overflow-y: auto;
}
.h_logo {
	height: 60px;
	padding: 15px 0 10px;
}
.h_logo img {
	height: 40px;
}
.header-nav ul {
	height:auto;
}
.dropdown {
	width:100%;
}
.drawer-menu__lists li:first-child {
margin-bottom: 0;
}
.header-nav-last form {
	width:100%;
}
.menu-title{
padding: 1rem 1.5rem;
}
.mega-menu {
position: static;
display: block;
width: 100%;
transform: none;
left: 0;
box-shadow: none;
border: none;
padding: 0;
}
.mega-menu ul {
grid-template-columns: 1fr;
gap: 0;
}
.mega-menu ul li a {
padding: 1rem 1.5rem 1rem 3rem;
}
.mega-menu ul li a img {
	display: none;
}
}

.drawer-menu {
	display: flex;
	height: auto;
	position: static;
	padding:0;
}
.drawer-menu .sec05 {
	display: none;
}
.header-nav{ 
	position: relative;
}
.drawer-menu__lists {
	flex-direction: row;
}

@media only screen and (max-width: 767px) {
.headerContent .cont70{
	padding:10px 0;
}
.header__menu {
	display: none;
}
.menu-title {
white-space: nowrap;
}
.header-nav-last form,
.header-nav-last input {
	width:100%;
}
.mega-menu {
	display: none;
position: absolute;
width: 100vw;
left: -10px;
overflow-y: auto;
max-height: calc(100vh - 50px);
}
.dropdown {
	width:auto;
}
}
.brand_archive_item {
    background-color: #eee;
    height: 100%;
    display: flex;
    flex-direction: column;min-width: 0;
}
.brand_archive_item__image {
	background-color:#fff;
}
.brand_archive_item__name--title,
.brand_archive_item__name--code {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.brand_archive_item__date {
	margin-top:auto;
}

/* cuts20251109 */
.header-nav{
position: relative;
}

.bt20{
margin-bottom: 20px;
}

@media only screen and (min-width: 1080px) {
.header-nav::after{
content: "その時計、欲しい人がすでにいるので高く買えます";
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 220px;
font-weight: 600;
font-size: 18px;
}
.x_txt{
display: none;
}
}
@media only screen and (max-width: 1080px) {
.x_txt{
padding-left: 3rem;
padding-right: 3rem;
font-weight: 600;
font-size: 18px;	
}
.h_logo {
    padding: 20px 0 0px;
}
}
@media only screen and (min-width: 768px) {

}

@media only screen and (max-width: 767px) {
.single {
        margin-top: 96.48px;
padding-top: 0;
}
.x_txt{
        padding-left: 0rem;
        padding-right: 0rem;
font-weight: 600;
font-size: 14px;
}
	.x_txt p{
text-align: center;
	}
}
