/* ----------------------------------------------------------
General Settings
---------------------------------------------------------- */


/* ----------------------------------------------------------
Style for PCs
---------------------------------------------------------- */
@media screen and (min-width: 1025px) {

.shoplist {
  width: 100%;
  height: auto;
  display: block;
  padding:50px 5% 100px;
  background-image: url(../img-group/index/jpmap.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 60% auto;
}
.shoplist_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.shoplist_title h2 {
  font-size:28px;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.3em;
  order:2;
}
.shoplist_title h3 {
  font-size:40px;
  font-family: var(--font-en);
  color:var(--color-1st);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1em;
  margin-bottom: 0.05em;
  order:1;
}
.shoplist_title p {
  font-size:14px;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 2em;
  order:3;
}

.shoplist_tab {
  width:fit-content;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 0 auto 40px auto;
}

.shoplist_tab li {
  font-size: 14px;
  line-height: 1em;
  cursor: pointer;
}
.shoplist_tab li a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0.4em 2em 0.5em;
  border:1px solid var(--color-ccc);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
}
.shoplist_tab li a:hover {
  color:var(--color-white);
  background-color: var(--color-3rd);
}

.shoplist_tab li a.slt_selected {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0.4em 2em 0.5em;
  border:1px solid var(--color-ccc);
  color:var(--color-white);
  background-color: var(--color-1st);
  border-radius: 3px;
}

.shoplist_content {
  display: none;
  opacity: 0;
  transition: opacity .4s;
}

.shoplist_content.active {
  display: block;
  opacity: 1;
}

.shoplist_content ul {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.shoplist_content ul li {
  width: 31.3333333333%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  box-shadow:0px 5px 10px rgba(0,0,0,0.2);
  margin:0 1% 2%;
}
.slc_img {
  width: 100%;
  height: auto;
  display: block;
}
.slc_cc {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:2em 1em;
}
.slc_cc h3 {
  width: fit-content;
  height: auto;
  display: block;
  font-size: clamp(20px, 1.5vw, 30px);
  font-weight: 700;
  line-height: 1.25em;
  letter-spacing: -0.5px;
  color:var(--color-1st);
  margin-bottom: 0.5em;
}
.slc_cc h3 a {
  width: 100%;
  height: auto;
  display: block;
  color:var(--color-1st);
  text-decoration: none;
}
.slc_cc h3 a:hover {
  color:var(--color-3rd);
}
.slc_cc p.slcp01 {
  font-size:14px;
  line-height: 1.5em;
  color:var(--color-black);
  margin-bottom: 0.5em;
}
.slc_cc p.slcp_tel {
  width: fit-content;
  height: auto;
  display: block;
  font-size:30px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 40px;
  color:var(--color-black);
  margin-bottom: 0.2em;
}
.slc_cc p.slcp_tel a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0 0 0 45px;
  background-image: url(../img-group/header/ic-freedial_b.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 40px;
}
.slc_cc p.slcp02 {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5em;
  color:var(--color-black);
  text-align: center;
  margin-bottom: 1em;
}
.slc_cc p.slcp_bn {
  width:fit-content;
  height: 30px;
  display: block;
  font-size:12px;
  margin:0;
}
.slc_cc p.slcp_bn a {
  width:100%;
  height: 30px;
  display: block;
  text-decoration: none;
  padding:0em 2em 0em 1em;
  line-height: 30px;
  border-radius: 5px;
  color:var(--color-white);
  background-color: var(--color-1st);
  background-image: url(../img-group/header/ic-ar_h_w.webp);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: auto 16px;
    transition: .4s all;
}
.slc_cc p.slcp_bn a:hover {
  background-color: var(--color-3rd);
}

}

/* ----------------------------------------------------------
Style for iPad Pro
---------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {

.shoplist {
  width: 100%;
  height: auto;
  display: block;
  padding:50px 5% 100px;
  background-image: url(../img-group/index/jpmap.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 60% auto;
}
.shoplist_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.shoplist_title h2 {
  font-size:24px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 0.3em;
  order:2;
}
.shoplist_title h3 {
  font-size:20px;
  font-family: var(--font-en);
  color:var(--color-1st);
  font-weight: 400;
  line-height: 1em;
  letter-spacing: -0.03em;
  margin-bottom: 0.05em;
  order:1;
}
.shoplist_title p {
  font-size:14px;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 2em;
  order:3;
}

.shoplist_tab {
  width:fit-content;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 0 auto 40px auto;
}

.shoplist_tab li {
  font-size: 14px;
  line-height: 1em;
  cursor: pointer;
}
.shoplist_tab li a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0.4em 2em 0.5em;
  border:1px solid var(--color-ccc);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
}
.shoplist_tab li a:hover {
  color:var(--color-white);
  background-color: var(--color-3rd);
}

.shoplist_tab li a.slt_selected {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0.4em 2em 0.5em;
  border:1px solid var(--color-ccc);
  color:var(--color-white);
  background-color: var(--color-1st);
  border-radius: 3px;
}

.shoplist_content {
  display: none;
  opacity: 0;
  transition: opacity .4s;
}

.shoplist_content.active {
  display: block;
  opacity: 1;
}

.shoplist_content ul {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.shoplist_content ul li {
  width: 48%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  box-shadow:0px 5px 10px rgba(0,0,0,0.2);
  margin:0 1% 2%;
}
.slc_img {
  width: 100%;
  height: auto;
  display: block;
}
.slc_cc {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:2em 1em;
}
.slc_cc h3 {
  width: fit-content;
  height: auto;
  display: block;
  font-size: clamp(20px, 1.5vw, 30px);
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.5px;
  color:var(--color-1st);
  margin-bottom: 0.5em;
}
.slc_cc h3 a {
  width: 100%;
  height: auto;
  display: block;
  color:var(--color-1st);
  text-decoration: none;
}
.slc_cc h3 a:hover {
  color:var(--color-3rd);
}
.slc_cc p.slcp01 {
  font-size:14px;
  line-height: 1.5em;
  color:var(--color-black);
  margin-bottom: 0.5em;
}
.slc_cc p.slcp_tel {
  width: fit-content;
  height: auto;
  display: block;
  font-size:24px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 40px;
  color:var(--color-black);
  margin-bottom: 0.2em;
}
.slc_cc p.slcp_tel a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0 0 0 35px;
  background-image: url(../img-group/header/ic-freedial_b.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 30px;
}
.slc_cc p.slcp02 {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5em;
  color:var(--color-black);
  text-align: center;
  margin-bottom: 1em;
}
.slc_cc p.slcp_bn {
  width:fit-content;
  height: 30px;
  display: block;
  font-size:12px;
  margin:0;
}
.slc_cc p.slcp_bn a {
  width:100%;
  height: 30px;
  display: block;
  text-decoration: none;
  padding:0em 2em 0em 1em;
  line-height: 30px;
  border-radius: 5px;
  color:var(--color-white);
  background-color: var(--color-1st);
  background-image: url(../img-group/header/ic-ar_h_w.webp);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: auto 16px;
    transition: .4s all;
}
.slc_cc p.slcp_bn a:hover {
  background-color: var(--color-3rd);
}

}


/* ----------------------------------------------------------
Style for Smartphone
---------------------------------------------------------- */
@media screen and (max-width: 768px) {

  .shoplist {
  width: 100%;
  height: auto;
  display: block;
  padding:50px 5% 50px;
  background-image: url(../img-group/index/jpmap.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 60% auto;
}
.shoplist_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.shoplist_title h2 {
  font-size:20px;
  font-weight: 700;
  line-height: 1.25em;
  margin-bottom: 0.3em;
  order:2;
}
.shoplist_title h3 {
  font-size:16px;
  font-family: var(--font-en);
  color:var(--color-1st);
  font-weight: 500;
  line-height: 1em;
  letter-spacing: -0.03em;
  margin-bottom: 0.5em;
  order:1;
}
.shoplist_title p {
  font-size:14px;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 2em;
  order:3;
}

.shoplist_tab {
  width:fit-content;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 5px;
  padding: 0;
  margin: 0 auto 40px auto;
}

.shoplist_tab li {
  width:30.3333333333%;
  height: auto;
  display: block;
  font-size: 14px;
  line-height: 1em;
  cursor: pointer;
}
.shoplist_tab li a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  text-align: center;
  padding:0.4em 0em 0.5em;
  border:1px solid var(--color-ccc);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
}
.shoplist_tab li a:hover {
  color:var(--color-white);
  background-color: var(--color-3rd);
}

.shoplist_tab li a.slt_selected {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0.4em 2em 0.5em;
  border:1px solid var(--color-ccc);
  color:var(--color-white);
  background-color: var(--color-1st);
  border-radius: 3px;
}

.shoplist_content {
  display: none;
  opacity: 0;
  transition: opacity .4s;
}

.shoplist_content.active {
  display: block;
  opacity: 1;
}

.shoplist_content ul {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.shoplist_content ul li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background-color: var(--color-white);
  box-shadow:0px 5px 10px rgba(0,0,0,0.2);
  margin:0 0 30px;
}
.slc_img {
  width: 100%;
  height: auto;
  display: block;
}
.slc_cc {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding:2em 1em;
}
.slc_cc h3 {
  width: fit-content;
  height: auto;
  display: block;
  font-size: clamp(20px, 1.5vw, 30px);
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.5px;
  color:var(--color-1st);
  margin-bottom: 0.5em;
}
.slc_cc h3 a {
  width: 100%;
  height: auto;
  display: block;
  color:var(--color-1st);
  text-decoration: none;
}
.slc_cc h3 a:hover {
  color:var(--color-3rd);
}
.slc_cc p.slcp01 {
  font-size:14px;
  line-height: 1.5em;
  color:var(--color-black);
  margin-bottom: 0.5em;
}
.slc_cc p.slcp_tel {
  width: fit-content;
  height: auto;
  display: block;
  font-size:24px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 40px;
  color:var(--color-black);
  margin-bottom: 0.2em;
}
.slc_cc p.slcp_tel a {
  width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  padding:0 0 0 35px;
  background-image: url(../img-group/header/ic-freedial_b.webp);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 30px;
}
.slc_cc p.slcp02 {
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.5em;
  color:var(--color-black);
  text-align: center;
  margin-bottom: 1em;
}
.slc_cc p.slcp_bn {
  width:fit-content;
  height: 30px;
  display: block;
  font-size:12px;
  margin:0;
}
.slc_cc p.slcp_bn a {
  width:100%;
  height: 30px;
  display: block;
  text-decoration: none;
  padding:0em 2em 0em 1em;
  line-height: 30px;
  border-radius: 5px;
  color:var(--color-white);
  background-color: var(--color-1st);
  background-image: url(../img-group/header/ic-ar_h_w.webp);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: auto 16px;
    transition: .4s all;
}
.slc_cc p.slcp_bn a:hover {
  background-color: var(--color-3rd);
}

}
