@charset "UTF-8";
/*================================
* フォントサイズ
=================================*/
/*

Theme Name: matome
Theme URI: https://kaitori-matome.com/
Description: 買取まとめサイトです。

*/
/* /////////////////////////////////////////////////////////////////
01.リセット
02.ヘッダー
03.ナビゲーション
04.フッター
05.パンくず
06.お問い合わせ(中盤)
07.お問い合わせ(フッター)
08.メインエリア
09.サイドエリア
10.タイトル、見出し
11.ページ送り
/////////////////////////////////////////////////////////////////*/
/* /////////////////////////////////////////////////////////////////
01.リセット
/////////////////////////////////////////////////////////////////*/
/* YUI 3.5.0 reset.css (http://developer.yahoo.com/yui/3/cssreset/) - http://cssreset.com */
:root {
  --main-color: #0092c7;
  --sub-color:#F2F2F2;
  --text-color:#222;
  --color-gld:#D9C15F;
}
.readmore-area{
    display: none;
}
html {
  color: var(--text-color);
  background: #FFF;
  margin:0 !important;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: bold;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  font-size: 100%;
}

legend {
  color: var(--text-color);
}

#yui3-css-stamp.cssreset {
  display: none;
}

html,
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.03em;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  background: #fff;
}
@media (max-width: 599px) {
  html,
  body {
    line-height: 1.6;
  }
}

a {
  transition: opacity 0.2s;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  cursor: pointer;
  outline: none;
  color: var(--text-color);
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  opacity: 0.75;
  cursor: pointer;
  outline: none;
}

a:focus {
  outline: none;
}

*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
}
.bg-gry {
  background: var(--sub-color);
}

.c-red {
  color: var(--main-color);
}

.googleMap {
  border: 1px solid #d1d1d1;
}
.googleMap iframe {
  display: block;
  aspect-ratio: 560/315;
  width: 100%;
  height: auto;
}

/* /////////////////////////////////////////////////////////////////
02.ヘッダー
/////////////////////////////////////////////////////////////////*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4%;
  border-bottom: 2px solid var(--main-color);
  position: relative;
}
@media (max-width: 599px) {
  .header {
    padding: 10px 4%;
  }
}
.header-logo {
  font-size: 14px;
  font-size: clamp(14px, 1.4641288433vw, 20px);
  font-weight: bold;
}
.header-nav {
  flex: 1 0 auto;
}
@media (max-width: 820px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3%;
  margin-right: 5%;
}
.header-nav ul li i {
  color: var(--main-color);
  margin-right: 0.5em;
}

/*-----ハンバーガーメニュー------------*/
.button {
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 4%;
  height: 40px;
  width: 24px;
  cursor: pointer;
  transition: opacity 0.25s ease;
  z-index: 200;
}

.button.active .top {
  transform: translateY(9px) translateX(0) rotate(45deg);
  background: #fff;
}

.button.active .middle_1 {
  transform: translateX(-100%);
  background: #fff;
}

.button.active .middle_2 {
  transform: translateX(100%);
  background: #fff;
}

.button.active .bottom {
  transform: translateY(-9px) translateX(0) rotate(-45deg);
  background: #fff;
}

.button:hover {
  opacity: 0.7;
}

.button span {
  background: var(--main-color);
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transition: all 0.35s ease;
  border-radius: 4px;
}

.button span:nth-of-type(2) {
  top: 9px;
  border-radius: 4px;
}

.button span:nth-of-type(3) {
  top: 9px;
  border-radius: 4px;
}

.button span:nth-of-type(4) {
  top: 18px;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 0%;
  opacity: 0;
  background: #4B4B4B;
  transition: opacity 0.35s ease, visibility 0.35s ease, width 0.35s ease;
  visibility: hidden;
  z-index: 100;
}

.overlay.open {
  opacity: 0.9;
  visibility: visible;
  width: 40%;
}
@media (max-width: 599px) {
  .overlay.open {
    width: 80%;
  }
}

.overlay.open li {
  animation: menuFade 0.5s ease forwards;
  animation-delay: 0.35s;
}

.overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}

.overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}

.overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}

.overlay nav {
  margin-top: 15%;
}

.overlay ul {
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
  width: 100%;
  text-align: left;
  overflow-y: auto;
}

.overlay ul li {
  font-size: 14px;
  font-size: clamp(14px, 1.4641288433vw, 20px);
  font-weight: bold;
  display: block;
  position: relative;
  opacity: 0;
  color: #fff;
  padding: 3% 0;
}
.overlay ul li.overlay-item {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 2% 0;
  margin: 20px 0 0;
}

.overlay ul li a {
  font-size: 14px;
  font-size: clamp(14px, 1.4641288433vw, 20px);
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  font-weight: bold;
}

.overlay ul li a i {
  display: inline-block;
  padding: 0 0.5rem 4px 0;
  font-size: 70%;
  vertical-align: middle;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
  width: 100%;
}

.overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 1px;
  background: #fff;
  transition: 0.35s;
}
@keyframes menuFade {
  0% {
    opacity: 0;
    right: -25%;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}
/* /////////////////////////////////////////////////////////////////
04.フッター
/////////////////////////////////////////////////////////////////*/
.pagetop-btn {
  display: block;
  position: absolute;
  right: 5%;
  bottom: 100%;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: var(--main-color);
  padding: 10px;
  width: 170px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .pagetop-btn {
    font-size: 14px;
    width: 100px;
  }
}
.pagetop-btn:hover {
  opacity: 1;
  bottom: 101%;
}

.footer {
  color: #fff;
  background: #4B4B4B;
  border-top: 10px solid var(--main-color);
  position: relative;
  margin-top: 80px;
}
.footer .m-inner {
  padding: 50px 2% 20px;
}
@media (max-width: 599px) {
  .footer .m-inner {
    padding: 50px 3% 20px;
  }
}
.footer-ttl {
  font-size: 14px;
  font-size: clamp(14px, 1.4641288433vw, 20px);
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  border-left: 6px solid var(--main-color);
  padding-left: 1rem;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .footer-ttl {
    font-size: 16px;
    padding-left: 0.5rem;
  }
}
.footer-area_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  .footer-area_list {
    margin-bottom: 15px;
  }
}
.footer-area_list dt {
  flex: 0 0 auto;
  border-right: 1px solid #fff;
  padding-right: 20px;
  margin-right: 20px;
  line-height: 1.5;
}
@media (max-width: 599px) {
  .footer-area_list dt {
    padding-right: 10px;
    margin-right: 10px;
  }
}
.footer-area_list dt a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 599px) {
  .footer-area_list dt a {
    font-size: 14px;
  }
}
.footer-area_list dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.footer-area_list dd ul a {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  padding: 0 5px;
}
@media (max-width: 599px) {
  .footer-area_list dd ul a {
    font-size: 13px;
  }
}
.footer-copy {
  display: block;
  font-size: 12px;
  text-align: center;
  padding-top: 20px;
}

/* /////////////////////////////////////////////////////////////////
05.パンくず
/////////////////////////////////////////////////////////////////*/
.breadcrumb_head_outer {
  width: 100%;
  margin: 0 0 20px 0;
}
@media (max-width: 599px) {
  .breadcrumb_head_outer {
    margin: 0 0 10px 0;
  }
}

#breadcrumb_head {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 5px 0 5px 10px;
  display: flex;
  align-items: center;
}

#breadcrumb_head li {
  padding: 0 6px 0 0;
  font-size: 12px;
  overflow: hidden;
  max-width: 650px;
  color: #4a4a4a;
}
@media (max-width: 599px) {
  #breadcrumb_head li {
    font-size: 10px;
  }
}
#breadcrumb_head li::before {
  content: ">";
  display: inline-block;
}

#breadcrumb_head li a {
  font-size: 12px;
  text-decoration: none;
}
@media (max-width: 599px) {
  #breadcrumb_head li a {
    font-size: 10px;
  }
}

#breadcrumb_head li p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#breadcrumb_head .breadcrumb-top::before {
  display: none;
}

#breadcrumb_head li.current,
#breadcrumb_head li.current a {
  color: var(--main-color);
}
#breadcrumb_head li.current::before,
#breadcrumb_head li.current a::before {
  color: var(--text-color);
}

/* /////////////////////////////////////////////////////////////////
08.メインエリア
/////////////////////////////////////////////////////////////////*/
.m-inner {
  max-width: 1100px;
  padding: 0 5%;
  margin: 0 auto;
}


.top-highlight {
  max-width: 730px;
  margin: 0 auto;
  border: 2px solid var(--main-color);
  background: #fff;
  position: relative;
}
.top-highlight::before {
  content: "";
  display: block;
  background: url(img/ico-highlight.svg) no-repeat 50% 50%/100%;
  width: 73px;
  width: clamp(50px, 5.3440702782vw, 73px);
  height: 89px;
  height: clamp(61px, 6.5153733529vw, 89px);
  position: absolute;
  left: 5%;
  top: -10px;
  z-index: 10;
}
@media (max-width: 599px) {
  .top-highlight::before {
    left: 3%;
    top: -7px;
  }
}
.top-highlight::after {
  content: "";
  display: block;
  background: url(img/top-highlight_img.svg) no-repeat 50% 50%/100%;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -2px;
  right: -2px;
}
.top-highlight a {
  display: block;
  padding: 40px;
  box-shadow: -5px 5px 4px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
@media (max-width: 599px) {
  .top-highlight a {
    padding: 40px 20px 20px;
  }
}
.top-highlight a:hover {
  opacity: 1;
  filter: brightness(110%);
  box-shadow: none;
}
.top-highlight_ttl {
  position: relative;
  z-index: 10;
  padding: 0 10px;
}
.top-highlight_ttl::after {
  content: "";
  display: block;
  width: 23px;
  height: 12px;
  background: var(--main-color);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  margin: 10px auto 0;
}
.top-highlight_img {
  max-width: 420px;
  margin: 0 auto 20px;
  aspect-ratio: 420/252;
}
@media (max-width: 599px) {
  .top-highlight_img {
    margin: 0 auto 10px;
  }
}
.top-highlight_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-highlight_text {
  font-size: 14px;
  font-size: clamp(14px, 1.4641288433vw, 20px);
  text-align: left;
}

.top-areaMap {
  max-width: 642px;
  margin: 0 auto;
  position: relative;
}
.top-areaMap_ttl img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.top-areaMap_text {
  background: #fff;
  border: 2px solid var(--main-color);
  padding: 30px 35px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 3%;
  top: 18%;
}
@media (max-width: 599px) {
  .top-areaMap_text {
    padding: 15px 17px;
    top: 22%;
  }
}
.top-areaMap_text--date {
  font-size: 14px;
  font-size: clamp(14px, 1.4641288433vw, 20px);
  font-weight: bold;
}
.top-areaMap_text--count {
  font-size: 18px;
  font-size: clamp(18px, 1.9033674963vw, 26px);
  font-weight: bold;
  line-height: 1;
}
.top-areaMap_text--count span {
  font-size: 35px;
  font-size: clamp(35px, 3.6603221083vw, 50px);
  margin: 0 0.3rem 0 0.5rem;
}
.top-areaMap_img {
  max-width: 642px;
  margin: 0 auto;
}
@media (max-width: 599px) {
  .top-areaMap_img {
    padding: 20px 0 0;
  }
}
.top-areaMap_img img {
  display: block;
  width: 100%;
  height: auto;
}

.area-wrap {
  padding: 0 4.5%;
  margin-top: 80px;
}
@media (max-width: 599px) {
  .area-wrap {
    padding: 0;
    margin-top: 40px;
  }
}
.area-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
@media (max-width: 599px) {
  .area-box {
    padding: 20px 15px;
    margin-bottom: 15px;
  }
}
.area-head {
  font-size: 17px;
  font-size: clamp(17px, 1.756954612vw, 24px);
  font-weight: bold;
  color: #fff;
  background: var(--main-color);
  padding: 5px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.area-head img {
  display: inline-block;
  margin-right: 0.5rem;
}
.area-list {
  display: flex;
  border-bottom: 1px solid #D1D1D1;
  padding: 13px;
}
@media (max-width: 599px) {
  .area-list {
    padding: 10px 0;
  }
}
.area-list:nth-of-type(1) {
  border-top: 1px solid #D1D1D1;
}
.area-list dt {
  flex-basis: 15%;
  border-right: 1px solid #D1D1D1;
}
@media (max-width: 599px) {
  .area-list dt {
    flex-basis: 25%;
  }
}
.area-list dt a {
  font-size: 13px;
  font-size: clamp(13px, 1.317715959vw, 18px);
  font-weight: bold;
  color: var(--main-color);
}
@media (max-width: 599px) {
  .area-list dt a {
    font-size: 16px;
  }
}
.area-list dd {
  flex-basis: 85%;
  padding-left: 15px;
}
.area-list dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 599px) {
  .area-list dd ul {
    gap: 8px;
  }
}
.area-list dd ul li a {
  font-size: clamp(13px, 1.1713030747vw, 16px);
  display: inline-block;
  border: 1px solid #d1d1d1;
  border-radius: 3px;
  padding: 0 13px;
  transition: 0.3s;
}
@media (max-width: 599px) {
  .area-list dd ul li a {
    padding: 2px 6px;
  }
}
.area-list dd ul li a:hover {
  opacity: 1;
  border-color: var(--main-color);
  color: var(--main-color);
}

/* /////////////////////////////////////////////////////////////////
10.タイトル・見出し
/////////////////////////////////////////////////////////////////*/
.m-ttl_1 {
  font-size: 24px;
  font-size: clamp(24px, 2.4890190337vw, 34px);
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  background: var(--main-color);
  padding: 20px 13px 10px;
  max-width: 455px;
  margin: 0 auto 50px;
}
@media (max-width: 599px) {
  .m-ttl_1 {
    font-size: 22px;
    padding: 5px;
    margin: 0 auto 20px;
  }
}
.m-ttl_1 span {
  display: block;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
}
.m-ttl_2 {
  font-size: 20px;
  font-size: clamp(21px, 2.196193265vw, 30px);
  font-weight: bold;
  color: var(--main-color);
  text-align: center;
  line-height: 1.2;
  margin: 0 auto;
}
.m-ttl_2 a{
    font-weight: bold;
}
@media (max-width: 599px) {
  .m-ttl_2 {
    font-size: 16px;
  }
}
.m-ttl_3 {
  font-size: 17px;
  font-size: clamp(17px, 1.756954612vw, 24px);
  font-weight: bold;
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
  display: flex;
  align-items: center;
  margin: 20px 0;
}
.m-ttl_3 img {
  display: block;
  width: auto;
  height: 1.6rem;
  margin-right: 0.5rem;
}
@media (max-width: 599px) {
  .m-ttl_3 img {
    height: 1.2rem;
  }
}
.m-ttl_4 {
  font-size: 13px;
  font-size: clamp(13px, 1.317715959vw, 18px);
  font-weight: bold;
}

/* /////////////////////////////////////////////////////////////////
下層ページ
/////////////////////////////////////////////////////////////////*/
.m-tag_list {
  display: flex;
  flex-wrap: wrap;
}
.m-tag_list li::after {
  content: "・";
  display: inline-block;
}
.m-tag_list li:last-child::after {
  display: none;
}

.m-btn {
  text-align: center;
}
.m-btn a {
  font-size: 13px;
  font-size: clamp(13px, 1.317715959vw, 18px);
  font-weight: bold;
  color: var(--main-color);
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 3px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}
.m-btn a::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5em;
}
.m-btn a:hover {
  opacity: 1;
  color: #fff;
  background: var(--main-color);
}

.m-table {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 10px;
}
.m-table dt {
  font-weight: bold;
  flex: 1 0 20%;
  border-right: 1px solid #d1d1d1;
}
@media (max-width: 599px) {
  .m-table dt {
    line-height: 1.4;
  }
}
.m-table dd {
  flex: 1 0 75%;
}
@media (max-width: 599px) {
  .m-table dd {
    flex: 1 0 70%;
  }
}
.m-table dd a {
  text-decoration: underline;
}
.m-table dd img {
  display: block;
}
.m-table dd img + img {
  margin-top: 10px;
}
.m-table dd iframe {
  display: block;
  aspect-ratio: 560/315;
  width: 100%;
  height: auto;
}
@media (max-width: 599px) {
  .m-table-col_1 {
    display: block;
  }
  .m-table-col_1 dt {
    border-right: none;
    border-bottom: 1px solid #d1d1d1;
    margin: 16px 0 5px 0;
  }
}

.swiper-container {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  overflow: visible;
}

.table_of_contents {
  display: block;
  width: 50%;
  margin: 0 auto 20px auto;
  padding: 1em 1em 1em 2em;
  border: 1px solid #d1d1d1;
}
@media (max-width: 599px) {
  .table_of_contents {
    width: 90%;
    padding: 10px 15px;
  }
}
.table_of_contents div {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 5px 0;
}
.table_of_contents div .table_of_contents-head {
  font-weight: bold;
  font-size: 18px;
  margin-right: 10px;
}
@media (max-width: 599px) {
  .table_of_contents div .table_of_contents-head {
    font-size: 16px;
  }
}
.table_of_contents > ul {
  height: 0;
}
.table_of_contents:has(:checked) > ul {
  height: auto;
}
.table_of_contents input {
  display: none;
}
.table_of_contents label {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  max-width: 100%;
}
.table_of_contents label::after {
  content: "[ 開く ]";
  margin-left: 5px;
  font-size: 0.8em;
  color: var(--main-color);
  cursor: pointer;
}
.table_of_contents ul {
  list-style-type: disc;
  margin: 0;
  padding: 0 0 0 1.2em;
  overflow: hidden;
  display: block !important;
}
.table_of_contents ul li {
  padding: 5px 0;
  display: list-item;
}
.table_of_contents ul li a {
  color: var(--main-color);
}

.shop-wrap {
  background:white;
  padding:0;
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .shop-wrap {
    font-size: 14px;
  }
}
.shop-wrap .-ribon {
  font-size: 17px;
  font-size: clamp(17px, 1.756954612vw, 24px);
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  background: #d9c15f;
  height: clamp(60px, 8.78477306vw, 120px);
  clip-path: polygon(100% 0, 100% 100%, 50% 87%, 0 100%, 0 0);
  padding: 6px;
  position: absolute;
  left: 20px;
  top: -20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 599px) {
  .shop-wrap .-ribon {
    font-size: 12px;
    height: 53px;
    top: -10px;
  }
}
.shop-wrap .-ribon span {
  display: block;
}
.shop-wrap .m-ttl_2 {
  background: none;
  padding: 10px;
}
.shop-inner {
  margin-bottom: 30px;
}
.shop-box {
  display: flex;
  align-items: flex-start;
  gap: 3%;
}
@media (max-width: 599px) {
  .shop-box {
    display: block;
  }
}
.shop-box_slide {
  width: 40%;
  border-radius: 10px;
  position: relative;
  overflow: visible;
}
@media (max-width: 599px) {
  .shop-box_slide {
    width: 100%;
  }
}
.shop-box_info {
  width: 60%;
}
@media (max-width: 599px) {
  .shop-box_info {
    width: 100%;
  }
  .shop-box_info dt {
    flex: 1 0 28%;
  }
  .shop-box_info dd {
    flex: 1 0 60%;
  }
}
.shop-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
}
.shop-slider .swiper-slide {
  max-width: 472px;
  max-height: 472px;
  border-radius: 10px;
  overflow: hidden;
}
.shop-slider .swiper-slide a {
  display: block;
  transition: 0.5s;
}
.shop-slider .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border-radius: 10px;
}
.shop-slider .swiper-slide a:hover {
  opacity: 1;
  filter: brightness(80%);
}
.shop-slider .swiper-slide a:hover img {
  transform: scale(1.1);
}
.shop-slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
}
/* .shop-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.5;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  transition: all 0.3s ease;
} */
/* .shop-slider .swiper-pagination-bullet-active {
  background: var(--main-color);
  opacity: 1;
  transform: scale(1.2);
} */
.swiper-pagination{
    text-align: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 0.5;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color);
  opacity: 1;
  transform: scale(1.2);
}

.shop-desc_2--text a {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */
.closed_p{
    font-size: clamp(13px, 1.31772vw, 18px);
    font-weight: bold;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    padding: 10px 20px;
    background: rgb(231, 231, 231);
    border: 2px solid black;
    border-radius: 3px;
    transition: 0.3s;
    margin: 0px auto;
}
p.free_link a {
    color: blue !important;
}
dl.list-table{
    width: 100%;
}
dl.list-table dt{
    color:var(--main-color);
    font-size:16px !important;
    font-weight:bold;
    line-height: 1.4;
    padding:5px 0;
}
dl.list-table dd{
    font-size:16px !important;
}
.shop-data h2{
    font-size:18px !important;
    font-weight: bold;
    text-align: center;
    padding:5px 0;
    color:white !important;
    background:var(--main-color) !important;
}
.line_button{
    font-size:16px;
    font-weight:bold;
    display: block;
    width: 100%;
    margin: 0 auto;
    color:white;
    text-align: center;
    padding:5px 15px 10px 15px;
    border: 1px solid #70ca0e;
    -webkit-box-shadow: 0 -4px 0 #549c02 inset;
    border-radius: 5px;
    box-shadow: 0 -4px 0 #549c02 inset;
    text-shadow: 1px 1px 1px rgba(71, 71, 71, .3);
    background: #66cf5a;
    background: -webkit-gradient(linear, left top, left bottom, from(#73DC00), to(#61B501));
    background: -webkit-linear-gradient(top, #73DC00 0, #61B501 100%);
    background: linear-gradient(to bottom, #73DC00 0, #61B501 100%);
}
.line_icon{
    width:1.2em !important;
    vertical-align: text-bottom;
    margin-right:0.5em;
}
.grad-btn a,.grad-btn span{
    color: #0092c7;
    display: block;
    text-align: center;    
    padding:10px 0;
}
.grad-btn a:after,.grad-btn span:after {
    content: "\f107";
    font-family: FontAwesome;
    padding-left: 5px;
}

.readmore-area {
    display: none;
}

.stars img{
    padding: 0 0.1em;
}