@charset "UTF-8";
/*========================
 add module
===========================*/
:root {
  --color-yellow: #e5a32c;
  --color-yellow-2: #fbefdb;
  --color-green: #76A340;
  --color-green-2: #eff0e6;
  --color-orange: #d14f28;
  --color-blue: #5f98d1;
  --color-white: #fff;
  --color-purple: #c694c3;
  --color-pink: #e18fbd;
  --color-masenta: #d7499a;
}

/* text */
.text-yellow {
  color: var(--color-yellow);
}

.text-green {
  color: var(--color-green);
}

.text-blue {
  color: var(--color-blue);
}

.text-white {
  color: var(--color-white);
}

.text-masenta {
  color: var(--color-masenta);
}

/* background */
.bg-orange {
  background: var(--color-orange);
}

.bg-yellow {
  background: var(--color-yellow-2);
}

.bg-yellow-deep {
  background: var(--color-yellow);
}

.bg-green {
  background: var(--color-green-2);
}

.bg-green-deep {
  background: var(--color-green);
}

.bg-purple {
  background: var(--color-purple);
}

.bg-pink {
  background: var(--color-pink);
}

.bg-blue {
  background: var(--color-blue);
}

.bg-masenta {
  background: var(--color-masenta);
}

/* border-bottom */
.bb-blue-3 {
  border-bottom: solid 3px var(--color-blue);
}

/*========================
 #title
===========================*/
#title {
  background: url(../img/bg_title_mob.png) no-repeat top center;
  background-size: contain;
}

#title nav li {
  height: 80px;
  /* width: 32%; */
  width: 46%;
  margin-left: 1.5%;
  margin-right: 1.5%;
  margin-bottom: 10px;
}

#title nav li a {
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-white);
  background-color: var(--color-purple);
  display: flex;
  justify-content: center;
  align-items: center;
}

#title nav li:nth-child(even) a {
  color: var(--color-white);
  background-color: var(--color-pink);
}

#title .bg-white-77 {
  background: rgba(255, 255, 255, 0.77);
  box-shadow: 1px 0 5px 1px #aaa;
}

@media screen and (min-width: 1280px) {
  #title nav li {
    height: 100px;
    width: 23%;
    margin-bottom: 0;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media screen and (min-width: 640px) {
  #title {
    background: url(../img/bg_title_pc.png) no-repeat top center;
  }
  #title .shop-logo {
    width: 378px;
  }
  #title nav li a {
    font-size: 20px;
  }
}
/*========================
 #contents
===========================*/
#contents {
  background: #76A340;
}

/*========================
 .item-lineup
===========================*/
.item-lineup .item {
  width: 95%;
  margin: 0 auto 30px;
  border: #ddd thin solid;
}

.item-lineup .item figure,
.item-lineup .item .txt {
  padding: 15px;
}

@media screen and (min-width: 900px) {
  .item-lineup .item {
    width: 31.5%;
    margin: 0 10px 30px;
    /*height: 680px;
    margin-left: .75%;
    margin-right: .75%;*/
  }
  .maintenance.item-lineup .item {
    margin: 0 0 30px;
  }
}
/*========================
 .marker .scrollmarker
===========================*/
.marker {
  font-weight: bold;
  background: linear-gradient(left, rgb(255, 233, 50) 50%, transparent 50%);
  background-repeat: no-repeat;
  background-size: 200% 0.8em;
  background-position: 100% 0.5em;
  transition: 2s;
  display: inline-block;
}

.marker.is-active {
  background-position: 0% 0.5em;
}

/*========================
 .goods .item-lineup
===========================*/
.goods.item-lineup .item {
  width: 48%;
  height: 240px;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 10px;
}

@media screen and (min-width: 900px) {
  .goods.item-lineup .item {
    width: 24%;
    height: 340px;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 30px;
  }
}
/*========================
 #address
===========================*/
#address .map {
  width: 90%;
  margin: auto;
}

#address .map iframe {
  width: 100%;
  height: 400px;
  margin: auto;
}

/*====================================================
	advance_notice
=====================================================*/
.advance_notice {
  font-size: 1.4rem;
  text-align: center;
  background: #fff;
  padding: 10em 0 5em;
}

.advance_notice img {
  width: 200px;
}

.advance_notice p {
  margin-bottom: 1em;
}

/*=====================
	// 202510 追記分
=======================*/
.is-pc {
  display: block;
}
@media screen and (max-width: 999px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .is-sp {
    display: block;
  }
}

.loading {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
}

.main.is-loaded {
  opacity: 1;
  visibility: visible;
}

main #title {
  background: url(../img/bg.jpg) no-repeat top center;
  background-size: cover;
}
main #title .lead {
  background: #fffce2;
  position: relative;
}
main #title .lead::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  width: 20px;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
main #title nav ul li {
  position: relative;
  width: 23%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}
@media screen and (max-width: 999px) {
  main #title nav ul li {
    width: 47.4%;
    margin-left: 1.3%;
    margin-right: 1.3%;
  }
}
main #title nav ul li::before, main #title nav ul li::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  width: 100%;
  height: 10px;
  z-index: 2;
  left: 0;
}
main #title nav ul li::before {
  top: -10px;
}
main #title nav ul li::after {
  bottom: -10px;
}
main #title nav ul li div {
  height: 100%;
  position: relative;
}
main #title nav ul li div a {
  position: relative;
  z-index: 2;
}
main #title nav ul li div a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0%, 100% 0%, 0% 100%, 0% 100%);
  background-color: #f00;
  z-index: 1;
}
main #title nav ul li div span {
  z-index: 2;
  font-size: 18px;
  line-height: 30px;
}
@media screen and (max-width: 999px) {
  main #title nav ul li div span {
    font-size: 13px;
    line-height: 24px;
  }
}
main #title nav ul li:nth-of-type(1) div a {
  background: linear-gradient(90deg, #0ad68e, #009762 99%);
}
main #title nav ul li:nth-of-type(1) div a::before {
  background: linear-gradient(90deg, #009762, #0ad68e 99%);
}
@media screen and (max-width: 999px) {
  main #title nav ul li:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
main #title nav ul li:nth-of-type(2) div a {
  background: linear-gradient(90deg, #ec3131, #d11010 99%);
}
main #title nav ul li:nth-of-type(2) div a::before {
  background: linear-gradient(90deg, #d11010, #ec3131 99%);
}
@media screen and (max-width: 999px) {
  main #title nav ul li:nth-of-type(2) {
    margin-bottom: 40px;
  }
}
main #title nav ul li:nth-of-type(3) div a {
  background: linear-gradient(90deg, #11bbd1, #00899a 99%);
}
main #title nav ul li:nth-of-type(3) div a::before {
  background: linear-gradient(90deg, #00899a, #11bbd1 99%);
}
main #title nav ul li:nth-of-type(4) div a {
  background: linear-gradient(90deg, #fabf29, #e08e00 99%);
}
main #title nav ul li:nth-of-type(4) div a::before {
  background: linear-gradient(90deg, #e08e00, #fabf29 99%);
}
main #lcl_nav {
  background: #add2ef;
  margin-top: 100px;
  padding: 16px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
main #lcl_nav.is-show {
  opacity: 1;
  visibility: visible;
}
main #lcl_nav ul {
  max-width: 1400px;
  margin: 0 auto;
}
main #lcl_nav ul li {
  position: relative;
  width: 23%;
  margin-left: 0.5%;
  margin-right: 0.5%;
}
@media screen and (max-width: 999px) {
  main #lcl_nav ul li {
    width: 46%;
    margin-left: 1.5%;
    margin-right: 1.5%;
  }
}
main #lcl_nav ul li::before, main #lcl_nav ul li::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  width: 100%;
  height: 6px;
  z-index: 2;
  left: 0;
}
main #lcl_nav ul li::before {
  top: -6px;
}
main #lcl_nav ul li::after {
  bottom: -6px;
}
main #lcl_nav ul li div {
  height: 100%;
  position: relative;
}
main #lcl_nav ul li div a {
  padding: 6px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  color: var(--color-white);
  background-color: var(--color-purple);
  display: flex;
  justify-content: center;
  align-items: center;
}
main #lcl_nav ul li div a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0%, 100% 0%, 0% 100%, 0% 100%);
  background-color: #f00;
  z-index: 1;
}
main #lcl_nav ul li div span {
  z-index: 2;
  font-size: 13px;
  line-height: 24px;
}
@media screen and (max-width: 999px) {
  main #lcl_nav ul li div span {
    font-size: 12px;
    line-height: 20px;
  }
}
main #lcl_nav ul li:nth-of-type(1) div a {
  background: linear-gradient(90deg, #0ad68e, #009762 99%);
}
main #lcl_nav ul li:nth-of-type(1) div a::before {
  background: linear-gradient(90deg, #009762, #0ad68e 99%);
}
@media screen and (max-width: 999px) {
  main #lcl_nav ul li:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
main #lcl_nav ul li:nth-of-type(2) div a {
  background: linear-gradient(90deg, #ec3131, #d11010 99%);
}
main #lcl_nav ul li:nth-of-type(2) div a::before {
  background: linear-gradient(90deg, #d11010, #ec3131 99%);
}
@media screen and (max-width: 999px) {
  main #lcl_nav ul li:nth-of-type(2) {
    margin-bottom: 40px;
  }
}
main #lcl_nav ul li:nth-of-type(3) div a {
  background: linear-gradient(90deg, #11bbd1, #00899a 99%);
}
main #lcl_nav ul li:nth-of-type(3) div a::before {
  background: linear-gradient(90deg, #00899a, #11bbd1 99%);
}
main #lcl_nav ul li:nth-of-type(4) div a {
  background: linear-gradient(90deg, #fabf29, #e08e00 99%);
}
main #lcl_nav ul li:nth-of-type(4) div a::before {
  background: linear-gradient(90deg, #e08e00, #fabf29 99%);
}
main .menu-btn {
  position: fixed;
  top: 80px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #3584bb;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in;
}
main .menu-btn.is-show {
  opacity: 1;
  visibility: visible;
}
main .menu-btn span,
main .menu-btn span:before,
main .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.2s ease-in;
}
main .menu-btn span:before {
  bottom: 8px;
}
main .menu-btn span:after {
  top: 8px;
}
main #menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
main #menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
main #menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
main #menu-btn-check {
  display: none;
}
main .menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 80;
  background-color: #c8e8ff;
  transition: all 0.5s;
}
main .menu-content ul {
  padding: 70px 10px 0;
  margin-top: 80px;
}
main .menu-content ul li {
  list-style: none;
  position: relative;
  margin-bottom: 10px;
}
main .menu-content ul li::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  width: 10px;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
main .menu-content ul li:nth-of-type(1) {
  background: #009762;
}
main .menu-content ul li:nth-of-type(2) {
  background: #d11010;
}
main .menu-content ul li:nth-of-type(3) {
  background: #00899a;
}
main .menu-content ul li:nth-of-type(4) {
  background: #e08e00;
}
main .menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  padding-left: 20px;
}
main .menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
main #menu-btn-check:checked ~ .menu-content {
  left: 0;
}
main #contents {
  background: #ebfbfb;
}
main #contents section {
  background: #fffce2;
}
main #contents h3 {
  position: relative;
}
@media screen and (max-width: 999px) {
  main #contents h3 {
    padding: 20px 20px 20px 40px;
    font-size: 20px;
  }
}
main #contents h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0%, 100% 0%, 0% 100%, 0% 100%);
  background-color: #f00;
  z-index: 1;
}
main #contents h3::after {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  width: 20px;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
main #contents h3 span {
  position: relative;
  z-index: 2;
}
main #contents #seminar h3 {
  background: linear-gradient(90deg, #0ad68e, #009762 99%);
}
main #contents #seminar h3::before {
  background: linear-gradient(90deg, #009762, #0ad68e 99%);
}
main #contents #mkc .mkc_link a {
  display: block;
  position: relative;
  background: #7e1c1e;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 40px;
  border-radius: 20px;
}
main #contents #mkc .mkc_link a span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left: 8px solid #fff;
}
main #contents #sale-lineup h3 {
  background: linear-gradient(90deg, #ec3131, #d11010 99%);
}
main #contents #sale-lineup h3::before {
  background: linear-gradient(90deg, #d11010, #ec3131 99%);
}
main #contents #sale-lineup .item-lineup .item {
  width: 31.3%;
  margin: 0 1% 30px;
  background: #fff;
}
main #contents #sale-lineup .item-lineup .item .normprice {
  position: relative;
}
main #contents #sale-lineup .item-lineup .item .normprice::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 1px;
  background: #f00;
  transform: rotate(-15deg);
}
@media screen and (max-width: 999px) {
  main #contents #sale-lineup .item-lineup .item {
    width: 48%;
    margin: 0 1% 20px;
  }
}
@media screen and (max-width: 767px) {
  main #contents #sale-lineup .item-lineup .item {
    width: 96%;
    margin: 0 2% 20px;
  }
}
main #contents #sale-lineup .present {
  padding: 20px;
  position: relative;
  background: #18aeb7;
  color: #fff;
  padding-left: 40px;
}
main #contents #sale-lineup .present::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 100%);
  width: 20px;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
main #contents #sale-lineup .present h4 {
  color: #ffffff;
  -webkit-text-stroke: 6px #e9a219;
  paint-order: stroke;
  font-size: 26px;
}
main #contents #sale-lineup .present div {
  text-align: center;
  padding: 20px;
  background: #fff;
  color: #000;
}
main #contents #sale-lineup .present div:nth-of-type(1) {
  margin-bottom: 20px;
}
main #contents #sale-lineup .present div h5 {
  margin-bottom: 10px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
main #contents #maintenance h3 {
  background: linear-gradient(90deg, #d75f95, #cc3578 99%);
}
main #contents #maintenance h3::before {
  background: linear-gradient(90deg, #cc3578, #d75f95 99%);
}
@media screen and (max-width: 999px) {
  main #contents #maintenance figure {
    max-width: initial;
    width: 70%;
    margin: 0 auto 20px;
  }
}
main #contents #mkc h3 {
  background: linear-gradient(90deg, #a23f41, #7e1c1e 99%);
}
main #contents #mkc h3::before {
  background: linear-gradient(90deg, #7e1c1e, #a23f41 99%);
}
main #contents #acce h3 {
  background: linear-gradient(90deg, #11bbd1, #00899a 99%);
}
main #contents #acce h3::before {
  background: linear-gradient(90deg, #00899a, #11bbd1 99%);
}
@media screen and (max-width: 999px) {
  main #contents #acce figure {
    max-width: initial;
    width: 70%;
    margin: 0 auto 20px;
  }
}
main #contents #acce .goods .item {
  height: initial;
  background: #fff;
}
@media screen and (max-width: 999px) {
  main #contents #acce .goods .item h4 {
    font-size: 13px;
  }
}
main #contents #acce .maintenance .item {
  background: #fff;
  width: 24%;
  margin: 0 0.5%;
}
@media screen and (max-width: 999px) {
  main #contents #acce .maintenance .item {
    width: 100%;
    margin: 0 0 20px;
  }
  main #contents #acce .maintenance .item:nth-of-type(4) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 999px) {
  main #contents #acce .maintenance .item figure {
    margin: 0 auto;
  }
}
main #contents #address {
  padding-top: 60px;
  margin-top: -60px;
}
main #contents #address h3 {
  background: linear-gradient(90deg, #fabf29, #e08e00 99%);
}
main #contents #address h3::before {
  background: linear-gradient(90deg, #e08e00, #fabf29 99%);
}

dd.price:has(.used) {
  color: #d14f28;
}
dd.price:has(.used) s {
  text-decoration: none;
}/*# sourceMappingURL=styles.css.map */