@charset "UTF-8";
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
html {
  font-size: 100%;
  line-height: 1.5em;
}

/*=======================================
 ■Foundation
=======================================*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* =========================================================
base - 基本設定
========================================================= */
html {
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  font-size: 1rem;
  color: #333333;
  letter-spacing: 1.3px;
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
  padding: vr();
  line-height: vr();
  position: relative;
}

/*LINK*/
a {
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
@media screen and (min-width: 812px) {
  a {
    transition: .3s;
    cursor: pointer;
  }
  a:hover {
    opacity: .7;
  }
}
a img {
  display: inline-block;
}

/*PCとSPの見え方切り替え*/
.pc-show {
  display: none !important;
}
@media screen and (min-width: 812px) {
  .pc-show {
    display: block !important;
  }
}

@media screen and (min-width: 812px) {
  .sp-show {
    display: none !important;
  }
}

/*clearfix*/
.clearfix, .c-basic-txt, .p-basic-list__item, .p-ol-list__item, .p-ol-list--sub__item, .p-ol-list--kana__item {
  clear: both;
  display: block;
  float: none;
}
.clearfix:after, .c-basic-txt:after, .p-basic-list__item:after, .p-ol-list__item:after, .p-ol-list--sub__item:after, .p-ol-list--kana__item:after {
  content: ".";
  clear: both;
  display: block;
  font-size: 0;
  height: 0px;
}

/* =======================================
 ■Layout
=======================================*/
/* =========================================================
section - コンテンツの大枠
========================================================= */
/*  ■コンテンツの大枠
===============================*/
/*=============
メイン幅
◆1000pxでロック
=============*/
.l-container, .l-main--col2, .l-main--col3 {
  width: 100%;
  padding-right: 5px;
  padding-left: 5px;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .l-container, .l-main--col2, .l-main--col3 {
    padding: 0;
    max-width: 1000px;
  }
}

/*=============
メイン幅
◆100％
=============*/
.l-container--full {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* =========================================================
共通のコンテンツ間隔
========================================================= */
.l-grid {
  padding: 20px 0;
}
@media screen and (min-width: 812px) {
  .l-grid {
    padding: 40px 0;
  }
}

/* =========================================================
独自のグリッドシステム
========================================================= */
/* オリジナルグリッドシステム */
.l-row {
  display: block;
}
@media screen and (min-width: 576px) {
  .l-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 812px) {
  .l-row {
    margin-right: -5px;
    margin-left: -5px;
  }
}

.l-col4 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .l-col4 {
    width: 50%;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (min-width: 812px) {
  .l-col4 {
    width: 25%;
    padding-right: 5px;
    padding-left: 5px;
  }
}

.l-col5 {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .l-col5 {
    width: 50%;
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media screen and (min-width: 812px) {
  .l-col5 {
    width: 20%;
    padding-right: 5px;
    padding-left: 5px;
  }
}

.l-col2 {
  width: 100%;
}
@media screen and (min-width: 812px) {
  .l-col2 {
    width: 50%;
    padding-right: 5px;
    padding-left: 5px;
  }
}

.l-col3 {
  width: 100%;
}
@media screen and (min-width: 812px) {
  .l-col3 {
    width: 33.33333%;
    padding-right: 5px;
    padding-left: 5px;
  }
}

.l-col__in {
  word-break: break-all;
  width: 100%;
}

/* =========================================================
header - ヘッダー
========================================================= */
/*======
ヘッダーイベント
=======*/
.l-head-event {
  background: #4BA0B8;
}
.l-head-event a {
  display: inline-block;
  vertical-align: bottom;
}
.l-head-event img {
  display: inline-block;
  vertical-align: bottom;
}

.l-header {
  position: relative;
}

.jq-head-fix {
  background: #ffffff;
  z-index: 100;
  border-bottom: 1px solid #4BA0B8;
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

/*========
黒
=========*/
.l-header-sub {
  background: #333333;
  display: none;
}
@media screen and (min-width: 812px) {
  .l-header-sub {
    display: block;
  }
}
.l-header-sub__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.l-header-sub .l-header-h1 {
  padding: 10px 0;
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 812px) {
  .l-header-sub .l-header-h1 {
    font-size: 11px;
    font-size: 0.6875rem;
    width: 60%;
  }
}

/*サブメニュー======*/
.l-sub-menu {
  width: 40%;
  display: none;
}
@media screen and (min-width: 812px) {
  .l-sub-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.l-sub-menu__item {
  width: 33.3%;
  text-align: center;
}
.l-sub-menu__link {
  width: 100%;
  display: block;
  padding: 10px;
  transition: .3s;
  background: #333333;
}
.l-sub-menu__link:hover {
  background: #000000;
  opacity: 1;
}
.l-sub-menu__link:hover .in {
  border-bottom: 1px solid #ffffff;
}
.l-sub-menu__link .in {
  display: inline-block;
  vertical-align: middle;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat left center;
  background-size: 8px 8px;
  padding-left: 13px;
  color: #ffffff;
  font-size: 11px;
  font-size: 0.6875rem;
  padding-bottom: 2px;
  border-bottom: 1px solid #333333;
}

/*mein======*/
.l-header-main {
  position: relative;
}
.l-header-main__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  min-height: 60px;
}
@media screen and (min-width: 812px) {
  .l-header-main__in {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.l-header-main__logo {
  max-width: 100px;
  width: 100%;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .l-header-main__logo {
    max-width: 186px;
  }
}
.l-header-main__logo a {
  display: inline-block;
  width: 100%;
}
.l-header-main__logo img {
  max-width: 100%;
}
@media screen and (min-width: 812px) {
  .l-header-main__logo img {
    max-width: 186px;
  }
}
.l-header-main .l-header-main-h1 {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 0 5px;
  line-height: 1.2;
  letter-spacing: -1px;
  width: calc(100% - 60px);
}
@media screen and (min-width: 812px) {
  .l-header-main .l-header-main-h1 {
    display: none;
  }
}
.l-header-main__contents {
  display: none;
}
@media screen and (min-width: 812px) {
  .l-header-main__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.l-header-main .l-header-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-left: 15px;
}
.l-header-main .l-header-link__item {
  width: 70px;
  height: 70px;
  margin-left: 5px;
}
.l-header-main .l-header-link__item.login .l-header-link__link {
  background: #EBF5EC;
}
.l-header-main .l-header-link__item.line .l-header-link__link {
  background: #00B900;
}
.l-header-main .l-header-link__item.line .l-header-link__name {
  color: #ffffff;
}
.l-header-main .l-header-link__item.mail .l-header-link__link {
  background: #4BA0B8;
}
.l-header-main .l-header-link__item.mail .l-header-link__name {
  color: #ffffff;
}
.l-header-main .l-header-link__link {
  display: block;
  width: 100%;
  height: 100%;
  background: #DAF3FA;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.l-header-main .l-header-link__link img {
  width: 20px;
  height: 20px;
}
.l-header-main .l-header-link__name {
  padding-top: 8px;
  color: #4BA0B8;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: bold;
}
.l-header-main .l-gnav-sp__btn {
  position: absolute;
  top: 0;
  right: 0;
}
.l-header-main__att {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  text-align: left;
  color: #8e8e8e;
  padding: 0 5px;
  line-height: 1.2;
  letter-spacing: -1px;
  width: calc(100% - 60px);
}
@media screen and (min-width: 812px) {
  .l-header-main__att {
    display: none;
  }
}

.l-header-bnr {
  display: none;
}
@media screen and (min-width: 812px) {
  .l-header-bnr {
    display: block;
  }
}
.l-header-bnr__item {
  margin: 0 0 10px;
}
.l-header-bnr__item:first-of-type {
  margin: 10px 0;
}
.l-header-bnr__item.covid19-bnr {
  background: #CBEDF7;
  padding: 18px 0;
  text-align: center;
}
.l-header-bnr__item.covid19-bnr .title {
  border-bottom: 1px solid;
  display: inline-block;
  font-weight: bold;
  padding: 0 0 3px;
  margin: 0 0 9px;
}


/* =========================================================
main - メイン
========================================================= */
/* 1カラム
============*/
.l-main {
  background: #ffffff;
margin: 20px auto 0;
}

/* 2カラム
============*/
.l-main--col2 {
  padding-bottom: 120px;
}
@media screen and (min-width: 812px) {
  .l-main--col2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 812px) {
  .l-main--col2.reverse {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media screen and (min-width: 812px) {
  .l-main--col2.reverse .l-main {
    width: calc(100% - 180px);
  }
}
.l-main--col2 .l-main {
  padding-bottom: 0;
}
@media screen and (min-width: 812px) {
  .l-main--col2 .l-main {
    width: calc(100% - 240px);
  }
}
@media screen and (min-width: 812px) {
  .l-main--col2 .l-side--left {
    width: 200px;
  }
}
@media screen and (min-width: 812px) {
  .l-main--col2 .l-side--right {
    width: 160px;
  }
}

/* 3カラム
============*/
.l-main--col3 {
  padding-bottom: 50px;
}
@media screen and (min-width: 812px) {
  .l-main--col3 {
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 812px) {
  .l-main--col3 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.l-main--col3 .l-main {
  padding-bottom: 50px;
}
@media screen and (min-width: 812px) {
  .l-main--col3 .l-main {
    width: calc(100% - 360px);
    padding: 0 20px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -moz-order: 2;
    -ms-flex-order: 2;
    order: 2;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .l-main--col3 .l-side--left {
    width: 200px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
@media screen and (min-width: 812px) {
  .l-main--col3 .l-side--right {
    width: 160px;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -moz-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}

/* その他
============*/
.l-main--narrow {
  max-width: 900px;
  margin: 0 auto;
}

.l-main--mini {
  max-width: 650px;
  margin: 0 auto;
}

/* =========================================================
side - サイド
========================================================= */
/*menu
=============*/
.l-side-menu-main {
  margin-bottom: 20px;
}
.l-side-menu-main.bg-color {
  background: #F9F9F9;
  padding-bottom: 10px;
}
.l-side-menu__ttl {
  background: #4BA0B8;
  color: #ffffff;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px;
  text-align: center;
}
.l-side-menu__link {
  display: block;
  padding: 12px 10px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_gray.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
  color: #333333;
  transition: .3s;
  font-size: 15px;
  font-size: 0.9375rem;
}
.l-side-menu__link:hover {
  color: #4BA0B8;
  text-decoration: underline;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
.l-side-menu-sub {
  margin: 10px 10px 0;
  border: 1px solid #E5E5E5;
  padding: 10px;
}
.l-side-menu-sub__ttl {
  text-align: center;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding: 10px 0 12px;
  font-size: 20px;
  font-size: 1.25rem;
}
.l-side-menu-sub__ttl.lady {
  color: #fe5ead;
}
.l-side-menu-sub__ttl.men {
  color: #1d4c86;
}
.l-side-menu__btn {
  padding-top: 10px;
  text-align: center;
}
.l-side-menu__btn .c-basic-btn {
  padding: 10px;
}
.l-side-menu__btn .c-basic-btn__in {
  font-size: 13px;
  font-size: 0.8125rem;
}

/*bnr*/
.l-side-bnr {
  margin-bottom: 20px;
  text-align: center;
}
.l-side-bnr .in {
  display: inline-block;
  vertical-align: bottom;
}

/*注目買取商品
=============*/
.l-side-price {
  border: 1px solid #F2F2F2;
  background: #F9F9F9;
  padding: 10px;
  margin-bottom: 20px;
}
.l-side-price__ttl {
  color: #8e8e8e;
  text-align: center;
  padding: 10px 0;
}
.l-side-price__ttl .sub {
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .l-side-price__ttl .sub {
    display: block;
  }
}
.l-side-price__ttl .main {
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 10px;
}
@media screen and (min-width: 812px) {
  .l-side-price__ttl .main {
    display: block;
    font-size: 24px;
    font-size: 1.5rem;
    padding-left: 0;
  }
}
.l-side-price__main {
  background: #ffffff;
  padding: 5px;
}
.l-side-price__copy {
  text-align: center;
  padding: 10px 0;
  color: #000000;
}
.l-side-price__copy .sub {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 5px;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .l-side-price__copy .sub {
    display: block;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.l-side-price__copy .main {
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 5px;
}
@media screen and (min-width: 812px) {
  .l-side-price__copy .main {
    display: block;
    padding-left: 0;
  }
}
.l-side-price__img {
  text-align: center;
  margin-bottom: 10px;
}
.l-side-price__name {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #333333;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.6;
}
.l-side-price__price {
  font-size: 12px;
  font-size: 0.75rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

/*本日の買取価格
=============*/
.l-side-rate {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/side/bg_rate.jpg);
  margin-bottom: 30px;
  padding: 10px;
}
.l-side-rate__ttl {
  text-align: center;
  color: #583006;
  padding: 10px 0;
  margin-bottom: 10px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .l-side-rate__ttl {
    display: block;
  }
}
.l-side-rate__ttl img {
  max-width: 140px;
  margin-right: 10px;
}
@media screen and (min-width: 812px) {
  .l-side-rate__ttl img {
    width: 100%;
    margin-right: 0;
  }
}
.l-side-rate__ttl .in {
  max-width: 60%;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .l-side-rate__ttl .in {
    width: 100%;
  }
}
.l-side-rate__ttl .main {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 812px) {
  .l-side-rate__ttl .main {
    padding-top: 15px;
  }
}
.l-side-rate__ttl .sub {
  display: block;
  padding-top: 10px;
  font-size: 20px;
  font-size: 1.25rem;
}
.l-side-rate__ttl .sub .small {
  font-size: 15px;
  font-size: 0.9375rem;
}
.l-side-rate__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  max-width: 330px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .l-side-rate__list {
    display: block;
  }
}
.l-side-rate__item {
  border: 1px solid #583006;
  padding: 10px;
  margin-bottom: 15px;
  width: 90%;
  max-width: 140px;
  position: relative;
  transition: .3s;
  cursor: pointer;
}
.l-side-rate__item a.a100:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 5;
}
.l-side-rate__item a.a100.in-link {
  position: relative;
  z-index: 5;
}
.l-side-rate__item:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .l-side-rate__item {
    padding: 5px;
    width: 100%;
  }
}
.l-side-rate__photo {
  text-align: center;
}
.l-side-rate__text {
  color: #583006;
  text-align: center;
  line-height: 1.3;
}
.l-side-rate__text .name {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 5px;
}
.l-side-rate__text .pay {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 5px;
}
.l-side-rate__text .comparison {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 5px;
}
.l-side-rate__link {
  text-align: center;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_brown.svg) no-repeat center bottom;
  padding: 5px 0;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .l-side-rate__link {
    margin-top: 10px;
  }
}
.l-side-rate__link .in {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #583006;
  font-size: 16px;
  font-size: 1rem;
}
.l-side-rate__date {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #583006;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .l-side-rate__date .day {
    display: block;
  }
}
.l-side-rate__date .time {
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .l-side-rate__date .time {
    display: block;
  }
}

/*ニュース
=============*/
.l-side-news__item {
  margin-top: 10px;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 10px;
}
.l-side-news__time {
  display: block;
  color: #a3a3a3;
  font-size: 12px;
  font-size: 0.75rem;
  padding-bottom: 5px;
}
.l-side-news__main {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
}
.l-side-news__main a {
  color: #4BA0B8;
  text-decoration: underline;
}

/*SNS
=============*/
.l-side-sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.l-side-sns__item {
  margin: 10px 5px 0;
}
.l-side-sns__item.twitter .l-side-sns__link {
  background: #2CA7E0;
}
.l-side-sns__item.facebook .l-side-sns__link {
  background: #1877F2;
}
.l-side-sns__item.instagram .l-side-sns__link {
  background: linear-gradient(45deg, #4d64d4 0%, #cf2f93 33%, #f16939 66%, #ffdd83 100%);
}
.l-side-sns__item.youtube .l-side-sns__link {
  background: #FF0000;
}
.l-side-sns__item.blog .l-side-sns__link {
  background: #3DB7A4;
}
.l-side-sns__link {
  width: 40px;
  height: 40px;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  background: #4BA0B8;
  text-align: center;
  padding: 8px;
}

/* =========================================================
footer - フッターのレイアウト
========================================================= */
/*pagetop*/
.l-foot-pagetop {
  background: #4BA0B8;
  margin-bottom: 35px;
}
.l-foot-pagetop__btn {
  text-align: center;
  display: block;
  padding: 10px 10px 15px;
}
.l-foot-pagetop__btn .in {
  display: inline-block;
  color: #ffffff;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_up_w.svg) no-repeat top center;
  background-size: 25px 25px;
  padding-top: 30px;
  font-size: 12px;
  font-size: 0.75rem;
}

.l-footer {
  background: #F9F9F9;
  padding: 0 0 20px;
  margin-bottom: 70px;
}
@media screen and (min-width: 812px) {
  .l-footer {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .l-footer__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}

.l-foot-logo {
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .l-foot-logo {
    margin-bottom: 0;
    max-width: 200px;
  }
}
.l-foot-logo__link {
  display: inline-block;
  max-width: 186px;
  width: 100%;
}
.l-foot-logo__link img {
  width: 100%;
}
.l-foot-nav {
  margin: 0 -5px 20px;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .l-foot-nav {
    margin-bottom: 0;
    margin: 0 10px;
    max-width: 500px;
  }
}
.l-foot-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #D5D5D5;
}
@media screen and (min-width: 812px) {
  .l-foot-nav__list {
    border-top: none;
  }
}
.l-foot-nav__item {
  width: 50%;
  border-bottom: 1px solid #D5D5D5;
  border-right: 1px solid #D5D5D5;
}
@media screen and (min-width: 812px) {
  .l-foot-nav__item {
    width: 33.3%;
    border: none;
  }
}
.l-foot-nav__item:nth-child(even) {
  border-right: none;
}
.l-foot-nav__link {
  display: block;
  width: 100%;
  padding: 15px 10px;
}
@media screen and (min-width: 812px) {
  .l-foot-nav__link {
    padding: 0 5px 20px;
  }
}
.l-foot-nav__link .in {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #000000;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
  width: 100%;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .l-foot-nav__link .in {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_black.svg) no-repeat left center;
    background-size: 12px 12px;
    padding-left: 17px;
    padding-right: 0;
  }
}
.l-foot__contents {
  width: 100%;
}
@media screen and (min-width: 812px) {
  .l-foot__contents {
    max-width: 300px;
  }
}
.l-foot__contents .l-foot-tel {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .l-foot__contents .l-foot-tel {
    margin-bottom: 20px;
  }
}
.l-foot__contents .l-foot-tel .p-free-dial-compact {
  max-width: 300px;
  margin: 0 auto;
  flex-direction: column;
}
@media screen and (min-width: 812px) {
  .l-foot__contents .l-foot-tel .p-free-dial-compact {
    max-width: 300px;
  }
}
.l-foot__contents .l-foot-tel .p-free-dial-compact__text {
  font-size: 12px;
  font-size: 0.75rem;
  width: 100% !important;
}
.l-foot__contents .l-foot-kouan {
  text-align: center;
}
.l-foot__contents .l-foot-kouan__item {
  font-size: 10px;
  font-size: 0.625rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .l-foot__contents .l-foot-kouan__item {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.l-foot__contents .l-foot-kouan__item .in {
  display: inline-block;
  text-align: left;
  min-width: 140px;
}
@media screen and (min-width: 812px) {
  .l-foot__contents .l-foot-kouan__item .in {
    min-width: 160px;
  }
}

/* =========================================================
	copyright - コピーライト
========================================================= */
.l-footer-copylight {
  padding: 20px 0 0;
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #D5D5D5;
}
@media screen and (min-width: 812px) {
  .l-footer-copylight {
    border-top: none;
  }
}
.l-footer-copylight__text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #333333;
  letter-spacing: 1px;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .l-footer-copylight__text {
    font-size: 12px;
    font-size: 0.75rem;
  }
}


/* =======================================
  ■Object
=======================================*/
/* Component
======================================= */
/* =========================================================
navigation - グローバルナビなど
========================================================= */
/* =================================
  ■【PC】グローバルナビ
=================================*/
.l-gnav {
  display: none;
}
@media screen and (min-width: 812px) {
  .l-gnav {
    display: block;
    margin: 10px auto;
  }
}
.l-gnav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.l-gnav__item {
  position: relative;
}
.l-gnav__item .js-open.hover:hover > .js-open-body {
  display: block;
}
.l-gnav__item .js-open-body {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  min-width: 180px;
  background: #ffffff;
  -moz-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.l-gnav__link {
  padding: 10px;
  text-align: center;
}
.l-gnav__link .main {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #333333;
}
.l-gnav__link .sub {
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  color: #4BA0B8;
  margin-top: 5px;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
}
.l-gnav__btn {
  display: block;
  padding: 10px 15px;
  text-align: center;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_shop_w.svg) no-repeat left 15px center;
  background-size: 15px 15px;
  padding-left: 30px;
  background-color: #F6A716;
  width: 100%;
}
.l-gnav__btn .in {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
  color: #ffffff;
  min-width: 115px;
}

.l-gnav-sub__item {
  width: 100%;
  margin-bottom: 1px;
}
.l-gnav-sub__item:last-of-type {
  margin-bottom: 0;
}
.l-gnav-sub__link {
  display: block;
  width: 100%;
  padding: 12px 10px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
  background-color: #4BA0B8;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}

/*ヘッダーのSPメニューボタン*/
.l-gnav-sp__btn {
  display: block;
  background: #333333;
  width: 60px;
  height: 60px;
  font-size: 10px;
  font-weight: bold;
  color: #c0c0c0;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  transition: .3s;
  cursor: pointer;
}
.l-gnav-sp__btn:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .l-gnav-sp__btn {
    display: none;
  }
}
.l-gnav-sp__btn .in {
  position: relative;
  display: block;
  width: 42px;
  height: 25px;
  padding-top: 24px;
  border-top: 2px solid #C0C0C0;
  color: #c0c0c0;
}
.l-gnav-sp__btn .in::before {
  content: '';
  width: 42px;
  height: 2px;
  background: #C0C0C0;
  position: absolute;
  left: 0;
  top: 7px;
}
.l-gnav-sp__btn .in::after {
  content: '';
  width: 42px;
  height: 2px;
  background: #C0C0C0;
  position: absolute;
  top: 16px;
  left: 0;
}

/*====================
横スライドメニュー
====================*/
.c-slide-menu {
  width: 90%;
}
.c-slide-menu__in {
  background: #ffffff;
}
.c-slide-menu__head {
  padding: 10px 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
.c-slide-menu__logo {
  max-width: 25%;
  width: 100%;
}
.c-slide-menu__logo .logo-link {
  display: inline-block;
  width: 100%;
}
.c-slide-menu .p-free-dial-compact {
  background: none;
  padding-left: 0;
}
.c-slide-menu .p-free-dial-compact__dial {
  font-size: 25px;
  font-size: 1.5625rem;
}
.c-slide-menu__search {
  padding: 0 10px 10px;
}

.c-smenu-main__ttl {
  background: #4C4C4C;
  color: #ffffff;
  padding: 5px 10px;
  font-size: 12px;
  font-size: 0.75rem;
}
.c-smenu-main__open {
  display: block;
  padding: 15px 10px;
  color: #333333;
  border-top: 1px solid #C5C5C5;
  cursor: pointer;
  font-size: 13px;
  font-size: 0.8125rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_minus_main.svg) no-repeat right 6px center;
  background-size: 12px 12px;
  padding-right: 24px;
}
.c-smenu-main__open.rotate {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_plus_main.svg) no-repeat right 6px center;
  background-size: 12px 12px;
  padding-right: 24px;
}
.c-smenu-main__open .lady {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #fe5ead;
  padding-left: 10px;
}
.c-smenu-main__open .men {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #1d4c86;
  padding-left: 10px;
}
.c-smenu-main__list {
  background: #F9F9F9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-smenu-main__list .c-smenu-main__item {
  border-top: 1px solid #C5C5C5;
  border-bottom: none;
  width: 50%;
}
.c-smenu-main__list .c-smenu-main__item:nth-child(odd) {
  border-right: 1px solid #C5C5C5;
}
.c-smenu-main__item {
  border-bottom: 1px solid #C5C5C5;
}
.c-smenu-main__item:last-of-type {
  border-bottom: none;
}
.c-smenu-main__link {
  display: block;
  padding: 15px 10px;
  color: #333333;
  font-size: 13px;
  font-size: 0.8125rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg) no-repeat right 6px center;
  background-size: 12px 12px;
  padding-right: 24px;
  line-height: 1.3;
}
.c-smenu-main__btn {
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid #C5C5C5;
}
.c-smenu-main__btn .c-basic-btn {
  padding: 15px;
}

.c-slide-menu-close {
  padding: 30px;
  text-align: center;
}
.c-slide-menu-close__icon {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  border: 1px solid #ffffff;
  padding: 15px;
  max-width: 300px;
  width: 100%;
}
.c-slide-menu-close__icon .in {
  display: inline-block;
  text-align: center;
  width: 100%;
  color: #ffffff;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_multiply_w.svg) no-repeat right 6.5px center;
  background-size: 13px 13px;
  padding-right: 26px;
}

/*====================
ブロックボタン
====================*/
.c-simple-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.c-simple-menu__item {
  width: 20%;
  max-height: 70px;
}
.c-simple-menu__link {
  display: block;
  width: 100%;
  padding: 5px;
  text-align: center;
  background: #4BA0B8;
  transition: .3s;
  cursor: pointer;
}
.c-simple-menu__link:hover {
  opacity: .7;
}
.c-simple-menu__link.serch {
  background: #F39802;
}
.c-simple-menu__link.line {
  background: #00B900;
}
.c-simple-menu__link.tel {
  background: #FFED00;
}
.c-simple-menu__link.sokuhou {
  background: #0071bf;
}
.c-simple-menu__link.delivery {
  background: #D14481;
}
.c-simple-menu__link img {
  max-height: 60px;
}

/*　SP下固定メニュー
====================*/
.c-fix-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  max-height: 70px;
}
@media screen and (min-width: 812px) {
  .c-fix-menu {
    display: none;
  }
}

/* =========================================================
navigation - グローバルナビなど
========================================================= */
.c-nav-global {
  position: relative;
  width: 100%;
}
.c-nav-menulist {
  background: #222222;
  background: -webkit-linear-gradient(bottom, #222222 0%, #222222 30%, #1b1b1b 49%, #2d2d2d 100%);
  background: -o-linear-gradient(bottom, #222222 0%, #222222 30%, #1b1b1b 49%, #2d2d2d 100%);
  background: linear-gradient(to top, #222222 0%, #222222 30%, #1b1b1b 49%, #2d2d2d 100%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 0 0 0 40px;
}
.c-nav-menulist > li {
  border-right: 1px double #363636;
  position: relative;
  text-align: center;
  width: 98%;
  width: -webkit-calc((100% - 39px) / 6);
  width: calc((100% - 39px) / 6);
  transition: .4s;
}
.c-nav-menulist > li:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.c-nav-menulist > li > a {
  color: #fff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 10px;
}
.c-nav-menulist > li > a:after {
  background-color: #fff;
  content: '';
  height: 2px;
  width: 20%;
  min-width: 60px;
  opacity: 0;
  transition: .4s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-nav-menulist > li > a:hover {
  position: relative;
}
.c-nav-menulist > li > a:hover:after {
  opacity: 1;
}
.c-nav-menulist--child {
  background-color: #fff;
  border: 1px solid #bcbcbc;
  border-radius: 10px;
  box-shadow: 4px 4px 4px rgba(0, 23, 49, 0.16);
  padding: 10px 25px;
  text-align: left;
}
.c-nav-menulist--child > li {
  margin: 0 0 10px;
}
.c-nav-menulist--child > li:last-of-type {
  margin: 0;
}
.c-nav-menulist--child > li > a {
  color: #333;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 0 0 0 16px;
  position: relative;
}
.c-nav-menulist--child > li > a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-nav-menulist--child > li > a:hover {
  text-decoration: underline;
}
.c-nav-menulist--wrap {
  padding: 20px 0 0;
  transition: 1s top, 1s opacity;
  position: absolute;
  top: 80%;
  left: 0;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  z-index: 10;
}
.c-nav-menulist--wrap:before, .c-nav-menulist--wrap:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 13px 12px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.c-nav-menulist--wrap:before {
  border-color: transparent transparent #bcbcbc transparent;
  top: 8px;
}
.c-nav-menulist--wrap:after {
  border-color: transparent transparent #fff transparent;
  top: 10px;
}
.c-nav-menulist--wrap.assessment {
  min-width: 210px;
}
.c-nav-menulist--wrap.shop {
  min-width: 210px;
}
.c-nav-menulist--wrap.mypage {
  min-width: 140px;
  right: 0;
  left: inherit;
}
.c-nav-menulist--wrap.mypage:before, .c-nav-menulist--wrap.mypage:after {
  right: 10px;
  left: inherit;
}
.c-nav-menulist li:hover .c-nav-menulist--wrap {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.c-nav-menulist .c-nav-menulist--mypage {
  background-color: #9d8256;
  width: 40px;
}
.c-nav-menulist .c-nav-menulist--mypage:hover {
  background-color: #b1976c;
}
.c-nav-menulist .c-nav-menulist--mypage > a:after {
  background-color: #7a5f34;
  height: 2px;
  min-width: 40px;
}
.c-nav-menulist .c-nav-menulist--mypage > a img {
  width: 17px;
}
.c-nav-sidenav {
  display: none;
  max-width: 280px;
  width: 23%;
  width: -webkit-calc(((100 / 30) * 7) / 100 *1200);
  width: calc(((100 / 30) * 7) / 100 *1200);
}
@media screen and (min-width: 1000px) {
  .c-nav-sidenav {
    display: block;
  }
}
.c-nav-sidenav_h3 {
  color: #9d8256;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .1rem;
}
.c-nav-sidenav_h3--decoration {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #333;
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1rem;
  margin: 0 0 6px;
}
.c-nav-sidenav_h3--decoration:before, .c-nav-sidenav_h3--decoration:after {
  background-color: #d1c0a5;
  content: '';
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 5px;
}
.c-nav-sidenav_h3--decoration:before {
  transform: rotate(45deg);
}
.c-nav-sidenav_h3--decoration:after {
  transform: rotate(-45deg);
}
.c-nav-sidenav_h3--small {
  font-size: 16px;
  font-size: 1rem;
}
.c-nav-sidenav_linklist {
  margin: 18px auto 0;
}
.c-nav-sidenav_linklist li {
  margin: 0 0 10px;
}
.c-nav-sidenav_linklist li a {
  background-color: #f7f7f7;
  border: 1px solid #818181;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 16px;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
  padding: 6.5px 0;
  position: relative;
}
.c-nav-sidenav_linklist li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 9px;
  height: 9px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-nav-sidenav_linklist li a:hover {
  background-color: #d7d7d7;
}
.c-nav-sidenav_linklist li a:hover:before {
  right: 11px;
}
.c-nav-sidenav_linklist li a span {
  margin: 0 0 0 8px;
}
.c-nav-sidenav_linklist--acd li {
  border-bottom: 1px solid #d2d2d2;
}
.c-nav-sidenav_linklist--acd li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0;
  padding: 7px 0;
  position: relative;
}
.c-nav-sidenav_linklist--acd li a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-nav-sidenav_linklist--acd li a:hover {
  background-color: #fbfbfb;
}
.c-nav-sidenav_linklist--acd li a:hover:before {
  right: 11px;
}
.c-nav-sidenav_linklist--acd li a span {
  margin: 0 0 0 8px;
}
.c-nav-sidenav_acd {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
}
.c-nav-sidenav_acd--checkbrand, .c-nav-sidenav_acd--checkitem {
  display: none;
}
.c-nav-sidenav_acd--label {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  transition: 1s;
  text-align: center;
  padding: 40px 0 0;
  position: relative;
}
.c-nav-sidenav_acd--label:hover {
  cursor: pointer;
}
.c-nav-sidenav_acd--label:before, .c-nav-sidenav_acd--label:after {
  background-color: #9d8256;
  content: "";
  display: block;
  height: 1px;
  width: 60px;
  position: absolute;
  top: 20px;
  margin: auto;
  transition: .4s;
}
.c-nav-sidenav_acd--label:before {
  left: 0;
  right: 52px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.c-nav-sidenav_acd--label:after {
  left: 52px;
  right: 0;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.c-nav-sidenav_acd--label span:before {
  content: 'もっと見る';
}
.c-nav-sidenav_acd--content {
  height: 0;
  opacity: 0;
  transition: 1s;
  visibility: hidden;
  overflow: hidden;
}
.c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label:before, .c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label:after, .c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label:before, .c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label:after {
  width: 100px;
  top: 30px;
}
.c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label:before, .c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label:before {
  left: 0;
  right: 85px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}
.c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label:after, .c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label:after {
  left: 85px;
  right: 0;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label span:before, .c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label span:before {
  content: '折りたたむ';
}
.c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label + .c-nav-sidenav_acd--content, .c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label + .c-nav-sidenav_acd--content {
  opacity: 1;
  visibility: visible;
}
.c-nav-sidenav_acd--checkbrand:checked + .c-nav-sidenav_acd--label + .c-nav-sidenav_acd--content {
  height: 660px;
}
.c-nav-sidenav_acd--checkitem:checked + .c-nav-sidenav_acd--label + .c-nav-sidenav_acd--content {
  height: 720px;
}
.c-nav-sidenav_assessment {
  background: #dedede;
  background: -webkit-linear-gradient(bottom left, #dedede 0%, #f7f7f7 77%);
  background: -o-linear-gradient(bottom left, #dedede 0%, #f7f7f7 77%);
  background: linear-gradient(to top right, #dedede 0%, #f7f7f7 77%);
  padding: 20px 15px 25px;
  position: relative;
}
.c-nav-sidenav_assessment:before {
  border: 1px solid #cdcdcd;
  content: '';
  display: block;
  height: 98%;
  height: -webkit-calc(100% - 10px);
  height: calc(100% - 10px);
  width: 98%;
  width: -webkit-calc(100% - 10px);
  width: calc(100% - 10px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-nav-sidenav_assessment_linklist {
  margin: auto;
}
.c-nav-sidenav_assessment_linklist li {
  margin: 10px auto 0;
}
.c-nav-sidenav_assessment_linklist li.shop a {
  background: #fb9d2b;
  /*background: rgb(196,107,0);
  background: -webkit-linear-gradient(bottom, rgba(196,107,0,1) 0%, rgba(231,126,0,1) 50%, rgba(240,131,0,1) 100%);
  background: -o-linear-gradient(bottom, rgba(196,107,0,1) 0%, rgba(231,126,0,1) 50%, rgba(240,131,0,1) 100%);
  background: linear-gradient(to top, rgba(196,107,0,1) 0%, rgba(231,126,0,1) 50%, rgba(240,131,0,1) 100%);*/
}
.c-nav-sidenav_assessment_linklist li.line-assess a {
  background: #289728;
  /*background: rgb(0,151,0);
  background: -webkit-linear-gradient(bottom, rgba(0,151,0,1) 0%, rgba(0,179,0,1) 50%, rgba(0,185,0,1) 100%);
  background: -o-linear-gradient(bottom, rgba(0,151,0,1) 0%, rgba(0,179,0,1) 50%, rgba(0,185,0,1) 100%);
  background: linear-gradient(to top, rgba(0,151,0,1) 0%, rgba(0,179,0,1) 50%, rgba(0,185,0,1) 100%);*/
}
.c-nav-sidenav_assessment_linklist li.delivery {
  position: relative;
}
.c-nav-sidenav_assessment_linklist li.delivery:before {
  /*background-image: url(../images_22/common/icon_ttl_comm.png);
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0 0 0 10px;
  content: '';
  display: block;
  height: 50px;
  width: 107px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;*/
}
.c-nav-sidenav_assessment_linklist li.delivery a {
  background: #d55377;
}
.c-nav-sidenav_assessment_linklist li.bulgeout a {
  background: #488c9f;
}
.c-nav-sidenav_metalsrate {
  margin: 35px auto 0;
}
.c-nav-sidenav_metalsrate--update {
  color: #919191;
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 3px auto 0;
  text-align: center;
}
.c-nav-sidenav_metalsrate_goldrate {
  background-image: url(../images_22/common/sidenavi/bg_sidenav_gold.jpg);
  border: 5px solid #f2ece3;
  margin: 5px auto 0;
}
.c-nav-sidenav_metalsrate_goldrate .c-nav-sidenav_metalsrate--btn a {
  background-color: #9d8256;
}
.c-nav-sidenav_metalsrate_platinumrate {
  background-image: url(../images_22/common/sidenavi/bg_sidenav_platinum.jpg);
  border: 5px solid #e5e5e5;
  margin: 10px auto 0;
}
.c-nav-sidenav_metalsrate_platinumrate .c-nav-sidenav_metalsrate--btn a {
  background-color: #818181;
}
.c-nav-sidenav_metalsrate figcaption {
  padding: 0 0 15px;
}
.c-nav-sidenav_metalsrate--class {
  font-size: 15px;
  font-size: 0.9375rem;
  margin: 15px auto 0;
  text-align: center;
}
.c-nav-sidenav_metalsrate--class span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
}
.c-nav-sidenav_metalsrate--price {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin: 6px auto 0;
  text-align: center;
}
.c-nav-sidenav_metalsrate--price span {
  color: #df443f;
  font-size: 26px;
  font-size: 1.625rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
.c-nav-sidenav_metalsrate--difference {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}
.c-nav-sidenav_metalsrate--difference span {
  color: #df443f;
}
.c-nav-sidenav_metalsrate--btn {
  margin: 9px auto 0;
}
.c-nav-sidenav_metalsrate--btn a {
  margin: auto;
  max-width: 230px;
  padding: 12px 0;
}
.c-nav-sidenav_brand {
  margin: 35px auto 0;
}
.c-nav-sidenav_brand .c-nav-sidenav_linklist a {
  background-color: #f4f0e9;
  border: 1px solid #d1c0a5;
}
.c-nav-sidenav_brand .c-nav-sidenav_linklist a:hover {
  background-color: #e7e0d5;
}
.c-nav-sidenav_item {
  margin: 35px auto 0;
}
.c-nav-sidenav_about {
  background: #dedede;
  background: -webkit-linear-gradient(bottom left, #dedede 0%, #f7f7f7 77%);
  background: -o-linear-gradient(bottom left, #dedede 0%, #f7f7f7 77%);
  background: linear-gradient(to top right, #dedede 0%, #f7f7f7 77%);
  margin: 35px auto 0;
  padding: 20px 15px 25px;
  position: relative;
}
.c-nav-sidenav_about:before {
  border: 1px solid #cdcdcd;
  content: '';
  display: block;
  height: 98%;
  height: -webkit-calc(100% - 10px);
  height: calc(100% - 10px);
  width: 98%;
  width: -webkit-calc(100% - 10px);
  width: calc(100% - 10px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-nav-sidenav_about_linklist {
  margin: auto;
}
.c-nav-sidenav_about_linklist li {
  margin: 10px auto 0;
}
.c-nav-sidenav_about_linklist li.marukaquality a {
  background-color: #0099d9;
}
.c-nav-sidenav_about_linklist li.merit a {
  background-color: #4aa0b8;
}
.c-nav-sidenav_about_linklist li.voice a {
  background-color: #4ab8aa;
}
.c-nav-sidenav_about_linklist li.qa a {
  background-color: #4ab883;
}
.c-nav-sidenav_about_linklist li.customer-center a {
  background-color: #4cb6b5;
}
.c-nav-sidenav_about_linklist li.magazine a {
  background-color: #00599a;
}
.c-nav-sidenav_bnrarea {
  background: #dedede;
  background: -webkit-linear-gradient(bottom left, #dedede 0%, #f7f7f7 77%);
  background: -o-linear-gradient(bottom left, #dedede 0%, #f7f7f7 77%);
  background: linear-gradient(to top right, #dedede 0%, #f7f7f7 77%);
  margin: 35px auto 0;
  padding: 20px 35px;
  position: relative;
}
.c-nav-sidenav_bnrarea:before {
  border: 1px solid #cdcdcd;
  content: '';
  display: block;
  height: 98%;
  height: -webkit-calc(100% - 10px);
  height: calc(100% - 10px);
  width: 98%;
  width: -webkit-calc(100% - 10px);
  width: calc(100% - 10px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-nav-sidenav_bnrarea ul li {
  margin: 0 0 13px;
}
.c-nav-sidenav_bnrarea ul li:last-of-type {
  margin: 0;
}

/* =========================================================
drawer - ドロワーのスタイルなど
========================================================= */
.c-drawer_open {
  z-index: 101;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #003359;
  transition: background 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: block;
}
@media screen and (min-width: 1000px) {
  .c-drawer_open {
    display: none;
  }
}
.c-drawer_open:before, .c-drawer_open:after {
  content: "";
}
.c-drawer_open span, .c-drawer_open:before, .c-drawer_open:after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 30%;
  width: 40%;
  border-bottom: 2px solid white;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.c-drawer_open span:before {
  content: 'menu';
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  position: absolute;
  bottom: -30px;
  left: -10px;
  margin: auto;
}
.c-drawer_open:before {
  transform: translateY(-8px);
}
.c-drawer_open:after {
  transform: translateY(8px);
}
.c-drawer_close {
  z-index: 99;
  inset: 0;
  pointer-events: none;
  transition: background .6s;
  display: block;
}
@media screen and (min-width: 1000px) {
  .c-drawer_close {
    display: none;
  }
}
.c-drawer_menu {
  padding: 0 0 85px;
  z-index: 99;
  position: fixed;
  overflow: auto;
  top: 60px;
  right: 0;
  max-width: 400px;
  min-width: 375px;
  width: 40vw;
  height: 93%;
  height: -webkit-calc(100% - 60px);
  height: calc(100% - 60px);
  margin: 0;
  box-sizing: border-box;
  background: #f0f0f0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: block;
}
@media screen and (min-width: 1000px) {
  .c-drawer_menu {
    display: none;
  }
}
.c-drawer_menu .c-nav-sidenav_mypage {
  background-color: #9d8256;
}
.c-drawer_menu .c-nav-sidenav_mypage a {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 17px;
  font-size: 1.0625rem;
  letter-spacing: .1rem;
  padding: 14px 10px;
  position: relative;
}
.c-drawer_menu .c-nav-sidenav_mypage a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-drawer_menu .c-nav-sidenav_mypage a img {
  margin: 0 2px 0 0;
  max-width: 18px;
}
.c-drawer_menu .c-nav-sidenav_assessment {
  background: #dedede;
  padding: 30px 15px 25px;
}
.c-drawer_menu .c-nav-sidenav_assessment:before {
  border: none;
}
.c-drawer_menu .c-nav-sidenav_assessment_linklist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: none;
  margin: 20px auto 0;
}
.c-drawer_menu .c-nav-sidenav_assessment_linklist li {
  margin: 0 1% 8px;
  width: 48%;
}
.c-drawer_menu .c-nav-sidenav_assessment_linklist li.delivery:before {
  height: 38px;
  width: 76px;
}
.c-drawer_menu .c-nav-sidenav_assessment_linklist li a {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 11px 0;
}
.c-drawer_menu .c-nav-sidenav_assessment_linklist li a:after {
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-drawer_menu .c-nav-sidenav_linklist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 12px;
}
.c-drawer_menu .c-nav-sidenav_linklist li {
  margin: 0 1% 8px;
  width: 48%;
}
.c-drawer_menu .c-nav-sidenav_linklist li a {
  font-size: 14px;
  font-size: 0.875rem;
  flex-direction: column;
}
.c-drawer_menu .c-nav-sidenav_linklist li a:before {
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.c-drawer_menu .c-nav-sidenav_linklist li a span {
  margin: 3px 0;
}
.c-drawer_menu .c-nav-sidenav_acd {
  padding: 0 12px;
}
.c-drawer_menu .c-nav-sidenav_about {
  background: #dedede;
  padding: 20px 15px 50px;
}
.c-drawer_menu .c-nav-sidenav_about:before {
  border: none;
}
.c-drawer_menu .c-nav-sidenav_about_linklist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: none;
}
.c-drawer_menu .c-nav-sidenav_about_linklist li {
  margin: 10px 1% 0;
  position: relative;
  width: 48%;
}
.c-drawer_menu .c-nav-sidenav_about_linklist li:before {
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  z-index: 1;
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.marukaquality:before {
  background-image: url(../images_22/common/img_about_marukaquality.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.merit:before {
  background-image: url(../images_22/common/img_about_merit.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.voice:before {
  background-image: url(../images_22/common/img_about_voice.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.qa:before {
  background-image: url(../images_22/common/img_about_qa.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.customer-center:before {
  background-image: url(../images_22/common/img_about_customer-center.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.magazine:before {
  background-image: url(../images_22/common/img_about_magazine.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li a {
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0;
}
.c-drawer_menu .c-nav-sidenav_about_linklist li a:after {
  right: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-drawer_menu .c-nav-sidenav_brand .c-nav-sidenav_linklist li:first-of-type {
  width: 100%;
}
.c-drawer_menu .c-nav-sidenav_brand .c-nav-sidenav_linklist li:first-of-type a {
  font-size: 14px;
  font-size: 0.875rem;
  flex-direction: row;
}
.c-drawer_menu .c-nav-sidenav_brand .c-nav-sidenav_linklist li:first-of-type a:before {
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.c-drawer_menu .c-nav-sidenav_brand .c-nav-sidenav_linklist li:first-of-type a span {
  display: block;
  text-align: center;
  width: 60%;
}
.c-drawer_btn {
  cursor: pointer;
  position: fixed;
}

#drawer {
  display: none;
}
#drawer:checked + .c-drawer_open {
  background: #c03759;
}
#drawer:checked + .c-drawer_open span {
  transform: scaleX(0);
}
#drawer:checked + .c-drawer_open:before {
  top: calc(50% - 1px);
  transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .c-drawer_open:after {
  top: calc(50% - 1px);
  transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .c-drawer_close {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.3);
}
#drawer:checked ~ .c-drawer_menu {
  transform: none;
}

/* =========================================================
pankuzu - パンくず
========================================================= */
/*パンクズarea*/
.c-pankuzu-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 15px;
}
.c-pankuzu-area .c-pankuzu {
  width: 50%;
}
.c-pankuzu-area .c-free-search-box {
  width: 50%;
  padding-left: 5px;
}
.c-pankuzu-area.foot {
  margin-bottom: 0;
}
.c-pankuzu-area.foot .c-pankuzu {
  width: 100%;
}

/*パンクズ＝＝＝＝＝＝＝＝＝＝＝*/
.c-pankuzu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
}
.c-pankuzu__item {
  margin-left: 5px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_black.svg) no-repeat left center;
  background-size: 10px 10px;
  padding-left: 15px;
  background-position: left top 5px;
  max-width: 50%;
}
.c-pankuzu__item:first-of-type {
  margin-left: 0;
  background-image: none;
  padding-left: 0;
  padding-right: 0;
}
.c-pankuzu__item:first-of-type .c-pankuzu__name {
  color: #4BA0B8;
  text-decoration: underline;
}
.c-pankuzu__name {
  color: #333333;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 812px) {
  .c-pankuzu__name {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.c-pankuzu--white .c-pankuzu__item {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg);
}
.c-pankuzu--white .c-pankuzu__item:first-of-type {
  background-image: none;
  padding-left: 0;
  padding-right: 0;
}
.c-pankuzu--white .c-pankuzu__item:first-of-type .c-pankuzu__name {
  color: #ffffff;
}
.c-pankuzu--white .c-pankuzu__name {
  color: #ffffff;
}

/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
/*良く使う2行のタイトル
=============*/
.c-ttl-basic {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-ttl-basic {
    margin-bottom: 40px;
  }
}
.c-ttl-basic .main {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
  line-height: 1.3;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 812px) {
  .c-ttl-basic .main {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.c-ttl-basic .sub {
  color: #bfbfbf;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  display: block;
  padding-top: 10px;
}
@media screen and (min-width: 812px) {
  .c-ttl-basic .sub {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*↑しただけ
=============*/
.c-ttl-mini {
  margin: 0 auto 40px;
  text-align: center;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (min-width: 812px) {
  .c-ttl-mini {
    margin: 0 auto 50px;
  }
}
.c-ttl-mini .in {
  display: inline-block;
  position: relative;
  color: #c2c2c2;
  padding: 0 35px;
  font-size: 20px;
  font-size: 1.25rem;
}
.c-ttl-mini .in::before, .c-ttl-mini .in::after {
  content: '';
  width: 15px;
  height: 2px;
  background: #c2c2c2;
  position: absolute;
  top: calc(50% - 1px);
}
.c-ttl-mini .in::before {
  left: 0;
}
.c-ttl-mini .in::after {
  right: 0;
}
.c-ttl-mini.left {
  text-align: left;
  margin: 0 auto 20px;
}
.c-ttl-mini.left .in {
  padding-left: 0;
}
.c-ttl-mini.left .in::before {
  content: none;
}

/*良く使う2行のタイトル ※ゴシック
=============*/
.c-ttl-gothic {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic {
    margin-bottom: 40px;
  }
}
.c-ttl-gothic .main {
  font-size: 17px;
  font-size: 1.0625rem;
  display: block;
  line-height: 1.3;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic .main {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-ttl-gothic .sub {
  color: #4BA0B8;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: 2px;
  display: block;
  padding-top: 10px;
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic .sub {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.c-ttl-gothic.left {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic.left {
    text-align: left;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic.left .main, .c-ttl-gothic.left .sub {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
  }
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic.left .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .c-ttl-gothic.left .sub {
    padding-left: 10px;
  }
}

/*シンプル
=============*/
.c-ttl-simple {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 20px;
  font-size: 1.25rem;
  color: #a0a0a0;
}
@media screen and (min-width: 812px) {
  .c-ttl-simple {
    font-size: 33px;
    font-size: 2.0625rem;
    margin-bottom: 30px;
  }
}

/*明朝　シンプル
=============*/
.c-ttl-serif {
  margin-bottom: 15px;
  line-height: 1.6;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 812px) {
  .c-ttl-serif {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}

/*「鍵括弧タイトル」
=============*/
.c-ttl-square-brackets {
  text-align: center;
  padding: 14px 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .c-ttl-square-brackets {
    padding: 24px 0;
    margin-bottom: 40px;
  }
}
.c-ttl-square-brackets__text {
  display: inline-block;
  color: #4BA0B8;
  font-size: 25px;
  font-size: 1.5625rem;
  padding: 0 20px;
  position: relative;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .c-ttl-square-brackets__text {
    font-size: 32px;
    font-size: 2rem;
    padding: 0 40px;
  }
}
.c-ttl-square-brackets__text::before, .c-ttl-square-brackets__text::after {
  display: block;
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
}
@media screen and (min-width: 812px) {
  .c-ttl-square-brackets__text::before, .c-ttl-square-brackets__text::after {
    width: 40px;
    height: 40px;
  }
}
.c-ttl-square-brackets__text::before {
  border-top: 1px solid #4BA0B8;
  border-left: 1px solid #4BA0B8;
  top: -10px;
  left: 0;
}
@media screen and (min-width: 812px) {
  .c-ttl-square-brackets__text::before {
    top: -20px;
  }
}
.c-ttl-square-brackets__text::after {
  border-bottom: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  bottom: -10px;
  right: 0;
}
@media screen and (min-width: 812px) {
  .c-ttl-square-brackets__text::after {
    bottom: -20px;
  }
}

/*スラッシュタイトル
=============*/
.c-ttl-slash {
  text-align: center;
  padding: 14px 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .c-ttl-slash {
    padding: 24px 0;
    margin-bottom: 40px;
  }
}
.c-ttl-slash__text {
  display: inline-block;
  color: #4BA0B8;
  font-size: 25px;
  font-size: 1.5625rem;
  padding: 0 30px;
  position: relative;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .c-ttl-slash__text {
    font-size: 40px;
    font-size: 2.5rem;
    padding: 0 40px;
  }
}
.c-ttl-slash__text::before, .c-ttl-slash__text::after {
  display: block;
  content: '';
  width: 1px;
  height: 50px;
  background: #4BA0B8;
  position: absolute;
  bottom: -13px;
}
@media screen and (min-width: 812px) {
  .c-ttl-slash__text::before, .c-ttl-slash__text::after {
    height: 70px;
    bottom: -15px;
  }
}
.c-ttl-slash__text::before {
  left: 10px;
  transform: rotate(-25deg);
}
.c-ttl-slash__text::after {
  right: 10px;
  transform: rotate(25deg);
}

/*タイトルに黄色い下線の装飾
=============*/
.c-ttl-underline {
  position: relative;
}
.c-ttl-underline::before {
  content: '';
  width: 104%;
  height: 10px;
  background: #FFF100;
  position: absolute;
  bottom: 3px;
  left: -2%;
}
.c-ttl-underline .in {
  position: relative;
  z-index: 5;
}

/*丸のタイトル 【数字だけ】【文字だけ】【文字と数字】
=============*/
.c-ttl-circle {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #4BA0B8;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle {
    width: 70px;
    height: 70px;
  }
}
.c-ttl-circle__in .text {
  margin: 2px auto 0;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle__in .text {
    margin: 4px auto 2px;
  }
}
.c-ttl-circle .number {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle .number {
    font-size: 32px;
    font-size: 2rem;
  }
}
.c-ttl-circle .text {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  color: #4BA0B8;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle .text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*丸付きのタイトル
=============*/
.c-ttl-circle--side {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle--side {
    text-align: left;
  }
}
.c-ttl-circle--side__in {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle--side__in {
    text-align: left;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.c-ttl-circle--side .c-ttl-circle {
  margin: 0 auto 5px;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle--side .c-ttl-circle {
    margin: 0 10px 0 0;
  }
}
.c-ttl-circle--side__num {
  display: inline-block;
  vertical-align: middle;
  color: #4BA0B8;
  font-size: 55px;
  font-size: 3.4375rem;
  position: relative;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle--side__num {
    font-size: 72px;
    font-size: 4.5rem;
    padding-right: 10px;
  }
}
.c-ttl-circle--side__text {
  display: block;
  color: #4BA0B8;
  font-size: 25px;
  font-size: 1.5625rem;
  position: relative;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .c-ttl-circle--side__text {
    display: inline-block;
    vertical-align: middle;
    font-size: 32px;
    font-size: 2rem;
  }
}

/*補助コンテンツのタイトル
=============*/
.c-ttl-asaid {
  font-size: 16px;
  font-size: 1rem;
  color: #4BA0B8;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .c-ttl-asaid {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/*文章内タイトル
=============*/
.c-ttl-txt-in {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  border-left: 3px solid #cccccc;
  padding-left: 5px;
}
.c-ttl-txt-in + .c-basic-txt, .c-ttl-txt-in + .p-basic-list__item, .c-ttl-txt-in + .p-ol-list__item, .c-ttl-txt-in + .p-ol-list--sub__item, .c-ttl-txt-in + .p-ol-list--kana__item {
  margin-bottom: 10px;
}

/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
.c-basic-h2-style01 {
  border-bottom: 1px solid #dcdcdc;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px 25px;
  position: relative;
}
.c-basic-h2-style01:before {
  background-color: #9d8256;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 31px;
  width: 4px;
}

/* =========================================================
text - 共通のテキストなど
========================================================= */
/*＝＝＝＝＝＝＝＝＝＝＝
テキスト
＝＝＝＝＝＝＝＝＝＝＝*/
.c-basic-txt, .p-basic-list__item, .p-ol-list__item, .p-ol-list--sub__item, .p-ol-list--kana__item {
  color: #333333;
  line-height: 1.8;
  letter-spacing: 2px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .c-basic-txt, .p-basic-list__item, .p-ol-list__item, .p-ol-list--sub__item, .p-ol-list--kana__item {
    line-height: 2;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-basic-txt a, .p-basic-list__item a, .p-ol-list__item a, .p-ol-list--sub__item a, .p-ol-list--kana__item a {
  text-decoration: underline;
}
.c-basic-txt strong, .p-basic-list__item strong, .p-ol-list__item strong, .p-ol-list--sub__item strong, .p-ol-list--kana__item strong {
  font-weight: bold;
}
.c-basic-txt p, .p-basic-list__item p, .p-ol-list__item p, .p-ol-list--sub__item p, .p-ol-list--kana__item p {
  margin-bottom: 5px;
}
.c-basic-txt__img {
  text-align: center;
  display: block;
  padding-bottom: 10px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .c-basic-txt__img {
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .c-basic-txt__img.left {
    float: left;
    padding-right: 15px;
  }
}
@media screen and (min-width: 812px) {
  .c-basic-txt__img.right {
    float: right;
    padding-left: 15px;
  }
}
.c-basic-txt.small, .small.p-basic-list__item, .small.p-ol-list__item, .small.p-ol-list--sub__item, .small.p-ol-list--kana__item {
  font-size: 12px;
  font-size: 0.75rem;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
/*=============
  ■メインのボタン 角丸
=============*/
.c-basic-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 320px;
  width: 100%;
  padding: 20px 10px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 10% center;
  background-size: 15px 15px;
  background-color: #4BA0B8;
  text-align: center;
  text-decoration: none;
  text-decoration: none !important;
  transition: .3s;
  cursor: pointer;
}
.c-basic-btn__in {
  display: block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: bold;
  position: relative;
}
.c-basic-btn__in::before {
  content: '';
  width: 23px;
  height: 23px;
  background-size: 23px 23px;
  position: absolute;
  top: calc(50% - 11px);
  left: 0;
}
.c-basic-btn.line {
  background-color: #00B900;
}
.c-basic-btn.line .c-basic-btn__in::before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_line_w.svg);
}
.c-basic-btn.mail .c-basic-btn__in::before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_mail_w.svg);
}
.c-basic-btn.tel {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right.svg);
  background-color: #FFED00;
}
.c-basic-btn.tel .c-basic-btn__in {
  color: #333333;
}
.c-basic-btn.tel .c-basic-btn__in::before {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_tel.svg);
}
.c-basic-btn.shop {
  background-color: #F6A716;
}
.c-basic-btn.shop .c-basic-btn__in::before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_shop_w.svg);
}
.c-basic-btn.bulgeout {
  background-color: #D14481;
}
.c-basic-btn.bulgeout .c-basic-btn__in::before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_business_trip_w.svg);
}
.c-basic-btn.delivery .c-basic-btn__in::before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_moving_w.svg);
}
.c-basic-btn.back {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_left_w.svg) no-repeat left 10% center;
  background-size: 15px 15px;
  background-color: #cccccc;
}
.c-basic-btn.white {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg);
  background-color: #ffffff;
}
.c-basic-btn.white .c-basic-btn__in {
  color: #4BA0B8;
}
.c-basic-btn.red {
  background-color: #BF3559;
}
.c-basic-btn.second {
  background-color: #4BB8B4;
}
.c-basic-btn.fax {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_fax_w.svg);
}
.c-basic-btn.mini {
  max-width: 250px;
  padding: 15px 10px;
  background-size: 12px 12px;
}
.c-basic-btn.mini .c-basic-btn__in {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #ffffff;
}

/*=============
  ■四角　二重線
=============*/
.c-double-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 365px;
  width: 100%;
  height: 65px;
  padding: 4px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 10% center;
  background-size: 15px 15px;
  background-color: #4BA0B8;
  text-align: center;
  text-decoration: none !important;
  transition: .3s;
  cursor: pointer;
}
.c-double-btn::before {
  content: '';
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 3px;
  left: 3px;
}
.c-double-btn .in {
  display: block;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  color: #ffffff;
  font-weight: bold;
}

/*=============
丸い吹き出しボタン
※「p-link-callout」とセット→_link.scss
=============*/
.c-callout-btn {
  display: inline-block;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  max-width: 300px;
  max-height: 300px;
  margin-bottom: 20px;
  background: #F9F9F9;
  /*店頭買取*/
  /*宅配買取・メール*/
  /*出張買取*/
  /*line*/
  /*tel*/
}
.c-callout-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 20px 0 20px;
  border-color: #F9F9F9 transparent transparent transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}
.c-callout-btn__name {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 12%;
  padding-left: 5px;
}
.c-callout-btn__name .in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
}
.c-callout-btn.no-arrow {
  margin-bottom: 0;
}
.c-callout-btn.no-arrow::before {
  content: none;
}
.c-callout-btn.shop {
  background: #F6A716;
}
.c-callout-btn.shop::before {
  border-color: #F6A716 transparent transparent transparent;
}
.c-callout-btn.delivery, .c-callout-btn.mail {
  background: #4BA0B8;
}
.c-callout-btn.delivery::before, .c-callout-btn.mail::before {
  border-color: #4BA0B8 transparent transparent transparent;
}
.c-callout-btn.bulgeout {
  background: #D14481;
}
.c-callout-btn.bulgeout::before {
  border-color: #D14481 transparent transparent transparent;
}
.c-callout-btn.line {
  background: #00B900;
}
.c-callout-btn.line::before {
  border-color: #00B900 transparent transparent transparent;
}
.c-callout-btn.tel {
  background: #FFED00;
}
.c-callout-btn.tel::before {
  border-color: #FFED00 transparent transparent transparent;
}
.c-callout-btn.tel .c-callout-btn__name .in {
  color: #333333;
  background-image: url("../images/icon/icon_arrow_right_black.svg");
}

/*=============
丸ボタン
=============*/
.c-circle-btn {
  text-align: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  background: #F3F3F3;
  width: 100%;
  max-width: 300px;
  height: 300px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-circle-btn .img {
  max-width: 120px;
  width: 100%;
}
.c-circle-btn .text {
  margin-top: 15px;
  color: #333333;
  font-size: 16px;
  font-size: 1rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_black.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
.c-button-style01 {
  max-width: 240px;
}
.c-button-style01 a {
  background-color: #ccc;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: .1rem;
  overflow: hidden;
  padding: 17px 0;
  position: relative;
  text-align: center;
}
.c-button-style01 a:before {
  background-color: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  content: '';
  display: block;
  height: 140%;
  width: 100%;
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
.c-button-style01 a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-button-style01 a:hover {
  opacity: .7;
}
.c-button-style01 a:hover:after {
  right: 15px;
}

/* =========================================================
media - 画像関係のコンポーネント
========================================================= */
.c-responsive-img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}
.c-responsive-img__link {
  width: 100%;
}

.c-circle-img {
  border-radius: 50%;
}

/*=============
高さに合わせてトリミング
==============*/
.c-square-img {
  display: block;
  overflow: hidden;
  width: 100%;
  /* トリミングしたい枠の幅 */
  height: 190px;
  /* トリミングしたい枠の高さ */
  position: relative;
}
.c-square-img__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
}

/* =========================================================
gmap - Google Maps関連
========================================================= */
.c-gmap {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (min-width: 1000px) {
  .c-gmap {
    padding-top: 80%;
  }
}
.c-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.c-ifream {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 130%;
}
@media screen and (min-width: 1000px) {
  .c-ifream {
    padding-top: 30.22%;
  }
}
.c-ifream iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/* =========================================================
pagenation - ページ送り
========================================================= */
.c-pagenation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px 0;
}
.c-pagenation a, .c-pagenation span {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px;
  margin: 0 3px;
  border: 1px solid #4BA0B8;
  border-radius: 50%;
  color: #4BA0B8;
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-pagenation .previouspostslink,
.c-pagenation .nextpostslink {
  background: #ffffff;
  border-color: #cccccc;
  color: #959595;
}
.c-pagenation .page {
  background: #ffffff;
}
.c-pagenation .current {
  background: #4BA0B8;
  color: #ffffff;
}

/* =========================================================
form - フォーム関連
========================================================= */
/*form要素のcssリセット*/
input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  display: inline-block;
}

button,
input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/*サイト内検索
===========*/
.c-free-search.c-form-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-free-search.c-form-content .c-free-search__input.c-form-input {
  -moz-border-radius: 100px 0 0 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px 0 0 100px;
  width: calc(100% - 60px);
  border-right: none;
  margin: 0;
  max-width: 100%;
  border: 1px solid #dddddd;
  padding: 10px 15px;
  height: 42px;
}
.c-free-search.c-form-content .c-free-search__btn {
  display: inline-block;
  vertical-align: bottom;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_search_w.svg) no-repeat center;
  background-size: auto 60%;
  background-color: #4BA0B8;
  -moz-border-radius: 0 100px 100px 0;
  -webkit-border-radius: 0;
  border-radius: 0 100px 100px 0;
  border: 1px solid #dddddd;
  border-left: none;
  height: 42px;
  width: 60px;
}

/*問い合わせ　ステップ
===============*/
.c-form-stepbar {
  position: relative;
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (min-width: 812px) {
  .c-form-stepbar {
    margin: 0 auto 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.c-form-stepbar__item {
  position: relative;
  width: calc(100% - 15px);
  background: #F9F9F9;
  padding: 6px 15px 0 6px;
  margin-right: 15px;
  margin-bottom: 5px;
  height: 30px;
}
@media screen and (min-width: 812px) {
  .c-form-stepbar__item {
    padding: 9px 15px 0 9px;
    margin-bottom: 0;
    width: 33.333%;
    height: 40px;
  }
}
.c-form-stepbar__item::before, .c-form-stepbar__item::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 812px) {
  .c-form-stepbar__item::before, .c-form-stepbar__item::after {
    border-width: 20px 0 20px 15px;
  }
}
.c-form-stepbar__item::before {
  border-color: transparent transparent transparent #ffffff;
  left: 0;
}
.c-form-stepbar__item::after {
  border-color: transparent transparent transparent #F9F9F9;
  right: -15px;
}
.c-form-stepbar__item:first-child::before, .c-form-stepbar__item:last-child::after {
  content: none;
}
.c-form-stepbar__item:last-child {
  width: 100%;
  margin-right: 0;
  padding-right: 15px;
}
@media screen and (min-width: 812px) {
  .c-form-stepbar__item:last-child {
    width: 33.333%;
    padding-right: 0;
  }
}
.c-form-stepbar__item .text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .c-form-stepbar__item .text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-form-stepbar .visited {
  background: #CBEDF7;
}
.c-form-stepbar .visited::after {
  border-color: transparent transparent transparent #CBEDF7;
}

/*===================
formの形
====================*/
.c-form {
  border: 5px solid #CBEDF7;
  padding: 10px;
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .c-form {
    padding: 30px;
  }
}
.c-form .c-form-ttl {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  color: #4BA0B8;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .c-form .c-form-ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.c-form .c-form-ttl .small {
  font-size: 75%;
  margin-left: 10px;
}

.c-form-contents__in {
  border-top: 1px solid #E5E5E5;
  margin-top: 20px;
  padding-top: 20px;
}
@media screen and (min-width: 812px) {
  .c-form-contents__in {
    margin-top: 40px;
    padding-top: 40px;
  }
}
.c-form-contents__ttl {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .c-form-contents__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.c-form .c-form-main {
  max-width: 600px;
  margin: 0 auto;
}
.c-form .c-form-main__in {
  border-bottom: 1px dotted #cccccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .c-form .c-form-main__in {
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-form .c-form-main__in:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.c-form .c-form-main__ttl {
  position: relative;
  padding: 10px 0;
}
@media screen and (min-width: 812px) {
  .c-form .c-form-main__ttl {
    width: 30%;
  }
}
@media screen and (min-width: 812px) {
  .c-form .c-form-main__contents {
    width: 70%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-form .c-form-main__contents .c-form-input,
.c-form .c-form-main__contents .c-form-select {
  margin: 0 auto 5px;
}
@media screen and (min-width: 812px) {
  .c-form .c-form-main__contents .c-form-input,
  .c-form .c-form-main__contents .c-form-select {
    margin: 0 5px 5px;
  }
}
.c-form .c-form-main__contents .num {
  width: 100%;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-form .c-form-main__contents .num .mwform-tel-field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-form .c-form-main__contents .add-text {
  width: 100%;
  margin-top: 10px;
}
.c-form .c-form-main__contents .add-text .c-form-select {
  max-width: 250px;
}
.c-form .c-form-main__contents .add-text .c-form-input {
  margin-top: 10px;
}

/*basic
===============*/
/*セレクトタグ*/
.c-form .c-form-select {
  display: block;
  width: 100%;
  border: 1px solid #959595;
  padding: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_gray.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
  background-color: #ffffff;
  min-height: 36px;
  line-height: 34px;
  cursor: pointer;
}
@media all and (-ms-high-contrast: none) {
  .c-form .c-form-select {
    background: #ffffff;
    padding-right: 5px;
  }
}

/*input*/
.c-form .c-form-input {
  border: 1px solid #dddddd;
  padding: 5px 10px;
  background: #F9F9F9;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  min-height: 36px;
  line-height: 34px;
}
.c-form .c-form-input:focus {
  border-color: #DEE5ED;
  background: #ebf7ff;
}
@media screen and (min-width: 812px) {
  .c-form .c-form-input.mini {
    max-width: 300px;
  }
}
@media screen and (min-width: 812px) {
  .c-form .c-form-input.mini2 {
    max-width: 150px;
  }
}
.c-form .c-form-input.mini3 {
  max-width: 90px;
}
@media screen and (min-width: 812px) {
  .c-form .c-form-input.mini3 {
    max-width: 100px;
  }
}

/*input text*/
input[type="text"].c-form-text {
  border: 1px solid #dddddd;
  padding: 5px;
  background: #ffffff;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

/*パスワード*/
@media screen and (min-width: 812px) {
  .c-form-password {
    max-width: 300px;
  }
}

/*ラジオボタン*/
.c-form-radio {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .c-form-radio {
    min-width: 300px;
    word-break: keep-all;
  }
}
.c-form-radio input {
  display: none !important;
}
.c-form-radio label {
  display: block;
  cursor: pointer;
  width: 50%;
  margin: 0;
  padding: 10px;
  color: #959595;
  border-top: 1px solid #959595;
  border-bottom: 1px solid #959595;
  border-right: 1px solid #959595;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
  line-height: 1;
  transition: .2s;
}
.c-form-radio label:first-of-type {
  border-radius: 3px 0 0 3px;
  border-left: 1px solid #959595;
}
.c-form-radio label:last-of-type {
  border-radius: 0 3px 3px 0;
}
@media screen and (min-width: 812px) {
  .c-form-radio label {
    max-width: 200px;
  }
}
.c-form-radio input[type="radio"]:checked + .switch-on {
  background-color: #4BA0B8;
  color: #ffffff;
  border: none;
}
.c-form-radio--long {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #959595;
  border-left: 1px solid #959595;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.c-form-radio--long label {
  max-width: 100%;
  border-top: none;
  border-left: none;
  border-bottom: 1px solid #959595;
  border-right: 1px solid #959595;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.c-form-radio--long label:first-of-type {
  border-left: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.c-form-radio--long label:last-of-type {
  -moz-border-radius: 0 0 5px 0;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 0;
}

/*チェックボタン*/
.c-form-checkbox__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media screen and (min-width: 812px) {
  .c-form-checkbox__list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.c-form-checkbox__list .c-form-checkbox,
.c-form-checkbox__list .mwform-checkbox-field {
  border: 1px solid #959595;
  width: 46%;
  padding: 10px 5px;
  margin: 0 5px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  cursor: pointer;
  text-align: left;
}

.c-form-checkbox,
.mwform-checkbox-field {
  display: block;
  width: 100%;
}
.c-form-checkbox__input,
.mwform-checkbox-field__input {
  display: none !important;
}
.c-form-checkbox__parts,
.c-form-checkbox .mwform-checkbox-field-text,
.mwform-checkbox-field__parts,
.mwform-checkbox-field .mwform-checkbox-field-text {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  word-break: break-all;
  padding-left: 25px;
  display: inline-block;
}
@media screen and (min-width: 812px) {
  .c-form-checkbox__parts,
  .c-form-checkbox .mwform-checkbox-field-text,
  .mwform-checkbox-field__parts,
  .mwform-checkbox-field .mwform-checkbox-field-text {
    padding-left: 30px;
    padding-right: 0;
  }
}
.c-form-checkbox__parts::before,
.c-form-checkbox .mwform-checkbox-field-text::before,
.mwform-checkbox-field__parts::before,
.mwform-checkbox-field .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #959595;
  -moz-border-radius: 4;
  -webkit-border-radius: 4;
  border-radius: 4;
  background: #ffffff;
}
.c-form-checkbox__input:checked + .c-form-checkbox__parts, .c-form-checkbox__input:checked + .mwform-checkbox-field-text,
.mwform-checkbox-field__input:checked + .c-form-checkbox__parts,
.mwform-checkbox-field__input:checked + .mwform-checkbox-field-text, .c-form-checkbox__input:checked +
.mwform-checkbox-field__parts,
.mwform-checkbox-field__input:checked +
.mwform-checkbox-field__parts {
  color: #4BA0B8;
  font-weight: bold;
}
.c-form-checkbox__input:checked + .c-form-checkbox__parts::after, .c-form-checkbox__input:checked + .mwform-checkbox-field-text::after,
.mwform-checkbox-field__input:checked + .c-form-checkbox__parts::after,
.mwform-checkbox-field__input:checked + .mwform-checkbox-field-text::after, .c-form-checkbox__input:checked +
.mwform-checkbox-field__parts::after,
.mwform-checkbox-field__input:checked +
.mwform-checkbox-field__parts::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 7px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #4BA0B8;
  border-right: 3px solid #4BA0B8;
}

/*テキストエリア*/
.c-form-textarea {
  max-width: 400px;
  width: 100%;
  height: 150px;
  margin: 0 auto;
  display: block;
  font-family: sans-serif;
  padding: 3px 10px;
  outline: none;
  background: #F9F9F9;
  border: 1px solid #959595;
  border-radius: 5px;
  font-size: 14px;
  font-size: 0.875rem;
}

/*error必須*/
.c-form-req {
  position: relative;
  padding-right: 50px !important;
  margin-top: 0px;
}
.c-form-req::after {
  content: "必須";
  color: #E84728;
  background: #ffffff;
  font-size: 11px;
  font-size: 0.6875rem;
  position: absolute;
  -moz-border-radius: 3;
  -webkit-border-radius: 3;
  border-radius: 3;
  padding: 4px;
  border: 1px solid #E84728;
}
@media screen and (max-width: 811px) {
  .c-form-req::after {
    top: 7px;
    right: 5px;
  }
}
@media screen and (min-width: 812px) {
  .c-form-req::after {
    right: 10px;
    top: 5px;
  }
}

/*error必須 背景色変更*/
.c-input--req {
  background-color: #ffe8e8;
}
.c-input--req + .c-form-checkbox__parts::before {
  background-color: #ffe8e8;
}

/*error表示*/
.c-form-error {
  margin-bottom: 10px;
  text-align: center;
  display: none !important;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .c-form-error {
    text-align: left;
  }
}
.c-form-error__in {
  color: #E84728;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_exclamation_red.svg) no-repeat left center;
  background-size: 13px 13px;
  padding-left: 18px;
}
.c-form-error.on {
  display: block !important;
}

.c-input--error {
  border-color: #E84728 !important;
}
.c-input--error + .c-form-checkbox__parts::before {
  border-color: #E84728 !important;
}
.c-input--error.c-form-radio {
  border: 1px solid #E84728;
  -moz-border-radius: 5;
  -webkit-border-radius: 5;
  border-radius: 5;
}

/*利用規約に同意*/
.c-form-privacy {
  text-align: center;
  margin-top: 30px;
}
.c-form-privacy__label, .c-form-privacy label {
  display: inline-block;
}
.c-form-privacy__label input, .c-form-privacy label input {
  display: none !important;
}
.c-form-privacy__label .text,
.c-form-privacy__label .mwform-checkbox-field-text, .c-form-privacy label .text,
.c-form-privacy label .mwform-checkbox-field-text {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  word-break: break-all;
  padding-left: 25px;
  display: inline-block;
  transition: .3s;
  cursor: pointer;
}
.c-form-privacy__label .text:hover,
.c-form-privacy__label .mwform-checkbox-field-text:hover, .c-form-privacy label .text:hover,
.c-form-privacy label .mwform-checkbox-field-text:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .c-form-privacy__label .text,
  .c-form-privacy__label .mwform-checkbox-field-text, .c-form-privacy label .text,
  .c-form-privacy label .mwform-checkbox-field-text {
    padding-left: 30px;
    padding-right: 0;
  }
}
.c-form-privacy__label .text::before,
.c-form-privacy__label .mwform-checkbox-field-text::before, .c-form-privacy label .text::before,
.c-form-privacy label .mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #959595;
  -moz-border-radius: 4;
  -webkit-border-radius: 4;
  border-radius: 4;
  background: #ffffff;
}
.c-form-privacy__label input:checked + .text,
.c-form-privacy__label input:checked + .mwform-checkbox-field-text, .c-form-privacy label input:checked + .text,
.c-form-privacy label input:checked + .mwform-checkbox-field-text {
  color: #4BA0B8;
  font-weight: bold;
}
.c-form-privacy__label input:checked + .text::after,
.c-form-privacy__label input:checked + .mwform-checkbox-field-text::after, .c-form-privacy label input:checked + .text::after,
.c-form-privacy label input:checked + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 7px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #4BA0B8;
  border-right: 3px solid #4BA0B8;
}

/*ボタンの並び*/
.c-form-btnarea {
  text-align: center;
  margin: 20px auto;
}
.c-form-btnarea .c-basic-btn {
  display: inline-block;
  max-width: 300px;
  margin: 5px auto;
  border: none;
  color: #ffffff;
  font-weight: bold;
  transition: .3s;
  cursor: pointer;
}
.c-form-btnarea .c-basic-btn:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .c-form-btnarea .c-basic-btn {
    margin: 5px;
  }
}
.c-form-btnarea .c-basic-btn.accent {
  background-color: #F6A716;
}
.c-form-btnarea--reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .c-form-btnarea--reverse {
    display: block;
  }
}

/*mw wp form=================*/
.mw_wp_form .error {
  display: block;
  color: #E84728;
  border-radius: 5px;
  width: 100%;
  background: #ffe8e8;
  padding: 10px;
  margin: 5px auto;
  font-size: 12px;
  font-size: 0.75rem;
}
.mw_wp_form .mw-wp-form_image img {
  display: inline-block;
  max-width: 100%;
}

/*ボタンの並び*/
.c-form-btnarea {
  text-align: center;
}
.c-form-btnarea .c-form-btn {
  display: inline-block;
  max-width: 300px;
  width: 100%;
  margin: 5px auto;
  padding: 20px 10px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 10% center;
  background-size: 15px 15px;
  background-color: #4BA0B8;
  color: #ffffff;
  transition: .3s;
  cursor: pointer;
}
.c-form-btnarea .c-form-btn:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .c-form-btnarea .c-form-btn {
    margin: 5px;
  }
}

/*確認画面
=======================*/
.c-form.confirmation .c-form-main__ttl, .c-form.confirmation .c-form-main__contents {
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .c-form.confirmation .c-form-main__ttl, .c-form.confirmation .c-form-main__contents {
    padding: 10px 0;
  }
}
.c-form.confirmation .p-delivery-form__input .input-text::before {
  content: none;
}

/*大きいエラー表示　通常表示
=======================*/
/*error*/
.c-form-box--error {
  margin: 15px auto;
  padding: 20px;
  border: 6px double #E84728;
  background: #ffdfdf;
}
.c-form-box--error p {
  text-align: center;
  color: #E84728;
  font-weight: bold;
}
.c-form-box--error__title {
  font-size: 120%;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_exclamation_red.svg) no-repeat left center;
  background-size: 20px 20px;
  padding-left: 25px;
  display: inline-block;
}

/*normal*/
.c-form-box--normal {
  margin: 15px auto;
  padding: 20px;
  border: 2px dashed #F18F01;
  background: #e0fffc;
}
.c-form-box--normal p {
  text-align: center;
  color: #F18F01;
  font-weight: bold;
}
.c-form-box--normal__title {
  font-size: 120%;
  display: inline-block;
}

/* ===========================
買取速報検索
==============================*/
.c-free-search .inner {
  display: flex;
  width: 100%;
}
.c-free-search .inner .searchbox {
  flex-grow: 1;
}

/* =========================================================
table.scss - 表
========================================================= */
.c-table {
  background: #F9F9F9;
  border: 1px solid #E5E5E5;
}
@media screen and (min-width: 812px) {
  .c-table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-table .c-th, .c-table .c-td {
  padding: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  border-top: 1px solid #E5E5E5;
  letter-spacing: 1px;
  line-height: 1.8;
  width: 100%;
  min-height: 44px;
}
@media screen and (min-width: 812px) {
  .c-table .c-th, .c-table .c-td {
    padding: 15px 10px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-table .c-th {
  color: #000000;
}
.c-table .c-th:first-of-type {
  border-top: none;
}
@media screen and (min-width: 812px) {
  .c-table .c-th {
    width: 15%;
  }
}
.c-table .c-td {
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .c-table .c-td {
    width: 85%;
  }
  .c-table .c-td:first-of-type {
    border-top: none;
  }
}
@media screen and (max-width: 811px) {
  .c-table--sp-full .c-th, .c-table--sp-full .c-td {
    width: 100%;
  }
}
@media screen and (min-width: 812px) {
  .c-table--col4 .c-th:nth-of-type(2), .c-table--col4 .c-td:nth-of-type(2) {
    border-top: none;
  }
}
.c-table--col4 .c-th:first-of-type {
  border-top: none;
}
@media screen and (min-width: 812px) {
  .c-table--col4 .c-th {
    width: 15%;
  }
}
.c-table--col4 .c-td {
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .c-table--col4 .c-td:first-of-type {
    border-top: none;
  }
}
@media screen and (min-width: 812px) {
  .c-table--col4 .c-td {
    width: 35%;
  }
}
.c-table__width {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 812px) {
  .c-table__width {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }
}
.c-table__width .c-table {
  width: 100%;
  border-top: 1px dashed #dddddd;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .c-table__width .c-table {
    border: none;
    border-right: 1px dashed #dddddd;
  }
}
.c-table__width .c-table:last-of-type {
  border-bottom: 1px dashed #dddddd;
}
@media screen and (min-width: 812px) {
  .c-table__width .c-table:last-of-type {
    border: none;
  }
}
@media screen and (min-width: 812px) {
  .c-table__width .c-table {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 812px) {
  .c-table__width .c-table .c-th, .c-table__width .c-table .c-td {
    width: 100%;
  }
}

/*JS関連*/
/* =========================================================
plugin - jsの追記
========================================================= */
/*=======================
【 js-inview】スクロール位置の取得
headerのfix
*/
.jq-head-fix {
  position: fixed;
  top: -100%;
  left: 0;
  z-index: 100;
  width: 100%;
  transition: .5s;
  opacity: 0;
}
.jq-head-fix.jq-head-fix-on {
  top: 0;
  opacity: 1;
}

/*===================
横から出るメニュー　
*/
article.js-menu_list {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  transition: .4s;
  min-height: 100%;
  height: 100%;
  width: 90%;
  overflow-y: scroll;
}
article.js-menu_list.active {
  right: 0;
}
article.js-menu_list div.g-menu_contents {
  height: 100%;
}
article.js-menu_list.active .g-menu_close {
  left: 1em;
}

article.back_curtain {
  display: none;
  height: 100vh;
  width: 100vw;
  background: url("../images/icon/icon_multiply_w.svg") no-repeat;
  background-size: 8% auto;
  background-position: left 1% top 5px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  position: fixed;
  top: 0;
}

.js-menu_open,
.js-image-menu-open {
  cursor: pointer;
}

/*======================
【js-open】検索サイド　スマホの処理
======================*/
@media screen and (max-width: 811px) {
  .js-open {
    position: fixed;
    left: 0;
    bottom: calc(-100% + 55px);
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: .3s;
  }
}
@media screen and (min-width: 812px) {
  .js-open .js-open-btn,
  .js-open .js-open-close {
    display: none;
  }
}
.js-open.js-clicked {
  bottom: 0;
  overflow-y: scroll;
  height: 100%;
}

/*======================
【js-media-accordion】レスポンシブしたらドロップダウンメニューに
======================*/
.js-media-accordion__btn {
  transition: .3s;
  cursor: pointer;
}
.js-media-accordion__btn:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .js-media-accordion__btn {
    cursor: inherit;
  }
  .js-media-accordion__btn:hover {
    opacity: 1;
  }
}
.js-media-accordion__btn__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_bottom_w.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .js-media-accordion__btn__in {
    background-image: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.js-media-accordion__btn.rotate .js-media-accordion__btn__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_up_w.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
}

.js-media-accordion__body {
  display: none;
}
@media screen and (min-width: 812px) {
  .js-media-accordion__body {
    display: block;
  }
}

/*===================
ボタンクリックで吹き出し表示
*/
.js-click-modal {
  position: relative;
}

.js-click-modal.active .js-click-modal__modal {
  display: block;
}

.js-click-modal__modal {
  display: none;
  opacity: 0;
}

/*===================
【js-click-body】クリックしたら吹き出し closeボタン
*/
.js-click-body {
  display: none;
}
.js-click-body.active {
  display: block;
}

/*======================
【js-slick】物件詳細ページのスライダー
======================*/
.slick-slider {
  opacity: 0;
  transition: 0.3s;
}
.slick-slider.slick-initialized {
  opacity: 1;
}
.slick-slider .slick-track {
  min-width: 100%;
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.js-slick-prev,
.js-slick-next {
  display: block;
  position: absolute;
  top: calc(50% - 27px);
  width: 33px;
  height: 54px;
  background-color: #4BA0B8;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  z-index: 50;
  transition: .3s;
  cursor: pointer;
}
.js-slick-prev:hover,
.js-slick-next:hover {
  opacity: .7;
}

.js-slick-prev {
  left: 0;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_left_w.svg);
  -moz-border-radius: 0 100% 100% 0/50%;
  -webkit-border-radius: 0;
  border-radius: 0 100% 100% 0/50%;
  background-position: left 2px center;
}

.js-slick-next {
  right: 0;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg);
  -moz-border-radius: 100% 0 0 100%/50%;
  -webkit-border-radius: 100%;
  border-radius: 100% 0 0 100%/50%;
  background-position: right 2px center;
}

.slick-dots {
  bottom: -45px;
}
.slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 3px;
}
.slick-dots li .js-slick__dots-item {
  color: #dddddd;
  font-size: 13px;
}
.slick-dots li.slick-active .js-slick__dots-item {
  color: #4BA0B8;
}

.js-slick-fllwidth .slick-dots {
  bottom: -45px;
}
.js-slick-fllwidth .slick-dots li {
  width: 15px;
  height: 15px;
  margin: 0 3px;
}
.js-slick-fllwidth .slick-dots li .js-slick__dots-item {
  color: #D6D6D6;
  font-size: 13px;
}
.js-slick-fllwidth .slick-dots li.slick-active .js-slick__dots-item {
  color: #7D7D7D;
}

/*===================
【js-colorbox】画像のポップアップ
*/
#colorbox #cboxTitle {
  width: 100%;
  color: #4BA0B8;
  font-weight: bold;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
}
#colorbox #cboxClose {
  background: url("../images/icon/icon_multiply_w.svg") no-repeat center;
  background-color: #4BA0B8;
  background-size: 60% 60%;
  width: 32px;
  height: 32px;
  top: -32px;
  right: 0px;
  transition: .3s;
  cursor: pointer;
}
#colorbox #cboxClose:hover {
  opacity: .7;
}
#colorbox #cboxNext {
  background: url("../images/icon/icon_right_w.svg") no-repeat center;
  background-color: #4BA0B8;
  background-size: 70% 70%;
  width: 35px;
  height: 35px;
  top: calc(50% - 17px);
  right: 0;
  border: 1px solid #959595;
  opacity: 0.8;
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px 0 0 5px;
  transition: .3s;
  cursor: pointer;
}
#colorbox #cboxNext:hover {
  opacity: .7;
}
#colorbox #cboxPrevious {
  background: url("../images/icon/icon_left_w.svg") no-repeat center;
  background-color: #4BA0B8;
  background-size: 70% 70%;
  width: 35px;
  height: 35px;
  top: calc(50% - 17px);
  left: 0;
  border: 1px solid #959595;
  opacity: 0.8;
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0;
  border-radius: 0 5px 5px 0;
  transition: .3s;
  cursor: pointer;
}
#colorbox #cboxPrevious:hover {
  opacity: .7;
}

/*===================
【js-foot-on】画像のポップアップ
*/
.js-foot-on {
  bottom: 0;
  transition: .3s;
}
.js-foot-on.none {
  bottom: -100%;
}

/*===================
【js-tab】画像のポップアップ
*/
.js-tab-menu {
  cursor: pointer;
  transition: .3s;
}
.js-tab-menu.js-tab-active {
  cursor: auto;
}
.js-tab-body .js-tab-contents {
  display: none;
}
.js-tab-body .js-tab-contents.js-tab-show {
  display: block;
}

/*Project
======================================= */
/* =========================================================
section - セクションの大枠など
========================================================= */
.p-section {
  margin: 40px auto 0;
}
@media screen and (min-width: 812px) {
  .p-section {
    margin: 100px auto 0;
  }
}
.p-section.bg-circle--top-w {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_w.svg) no-repeat top -1px center;
  background-size: contain;
}
.p-section.bg-circle--top-glay {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_glay.svg) no-repeat top -1px center;
  background-size: contain;
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-section.bg-circle--top-glay {
    padding: 70px 0;
  }
}
.p-section.bg-circle--bottom-glay {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_bottom_glay.svg) no-repeat bottom -1px center;
  background-size: contain;
  padding: 0 0 40px;
}
@media screen and (min-width: 812px) {
  .p-section.bg-circle--bottom-glay {
    padding: 0 0 70px;
  }
}
.p-section.bg-main {
  background-color: #4BA0B8;
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-section.bg-main {
    padding: 70px 0;
  }
}
.p-section.bg-color01 {
  background-color: #F9F9F9;
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-section.bg-color01 {
    padding: 70px 0;
  }
}
.p-section.bg-color02 {
  background-color: #F1F1F1;
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-section.bg-color02 {
    padding: 70px 0;
  }
}
.p-section.border-top {
  padding: 40px 0 0;
  border-top: 1px solid #E5E5E5;
}
@media screen and (min-width: 812px) {
  .p-section.border-top {
    padding: 70px 0 0;
  }
}

@media screen\0 {
  .p-section.bg-circle--top-w {
    background-image: none;
    padding-top: 40px;
  }

  .bg-circle--bottom-glay {
    background-image: none;
    padding-bottom: 40px;
  }
}
.p-section__in {
  padding: 0 0 40px;
}
@media screen and (min-width: 812px) {
  .p-section__in {
    padding: 0 0 70px;
  }
}

.p-bg-color {
  display: block;
  margin-top: 20px;
  padding: 15px;
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .p-bg-color {
    padding: 25px;
  }
}
.p-bg-color.red {
  background: #FFE1E1;
}
.p-bg-color.red .c-ttl-asaid {
  color: #E84728;
}
.p-bg-color.sub {
  background: #CBEDF7;
}
.p-bg-color.gray {
  background: #E0E0E0;
}
.p-bg-color.gray .c-ttl-asaid {
  color: #000000;
}

/*隣接要素によって隙間の削除*/
.p-root + .p-section.bg-color01 {
  margin-top: 0;
}

/*=======
額縁
========*/
.p-section-frame {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_left_top_gray.svg) no-repeat;
  background-position: left 10px top 10px;
  background-size: 25px 25px;
  background-color: #F9F9F9;
  padding: 10px;
}
.p-section-frame .in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_right_top_gray.svg) no-repeat;
  background-position: right top;
  background-size: 25px 25px;
  padding: 5px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-section-frame .in {
    padding: 20px;
  }
}
.p-section-frame .in::before, .p-section-frame .in::after {
  content: '';
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_left_down_gray.svg) no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 25px;
  position: absolute;
  bottom: 0;
}
.p-section-frame .in::before {
  left: 0;
}
.p-section-frame .in::after {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_right_down_gray.svg) no-repeat;
  right: 0;
}

/*=======
テキストと画像が横並び
レスポンス後、画像下
========*/
@media screen and (min-width: 812px) {
  .p-section-textimg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
@media screen and (min-width: 812px) {
  .p-section-textimg__contents {
    width: 65%;
    padding-right: 30px;
  }
}
.p-section-textimg__img {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 812px) {
  .p-section-textimg__img {
    margin-top: 0;
    width: 35%;
  }
}
@media screen and (min-width: 812px) {
  .p-section-textimg.right {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 812px) {
  .p-section-textimg.right .p-section-textimg__contents {
    padding-left: 30px;
    padding-right: 0;
  }
}

.p-section-free {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  line-height: 1.6;
}
.p-section-free p {
  margin: 20px auto;
  text-align: left;
}
.p-section-free p:first-of-type {
  margin-top: 0;
}
.p-section-free h3 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
}
.p-section-free p a {
  text-decoration: underline;
  color: #4BA0B8;
}
.p-section-free img {
  max-width: 100%;
  display: inline-block;
}

/* =========================================================
list - リストのオブジェクト
========================================================= */
/* ====================
	■シンプルなリスト
	=====================*/
.p-basic-list {
  display: inline-block;
  text-align: left;
}
.p-basic-list__item {
  display: block;
  text-indent: -1.3rem;
  padding-left: 1rem;
  margin-bottom: 5px;
}
.p-basic-list__item:before {
  content: "・";
  color: #4BA0B8;
}

/* ====================
	■番号付きなリスト
	=====================*/
.p-ol-list {
  display: inline-block;
  text-align: left;
}
.p-ol-list__item {
  display: block;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 5px;
}
.p-ol-list__item > .p-ol-list--sub {
  padding-left: 0;
}

.p-ol-list__item:nth-child(1):before {
  content: "1.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(2):before {
  content: "2.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(3):before {
  content: "3.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(4):before {
  content: "4.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(5):before {
  content: "5.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(6):before {
  content: "6.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(7):before {
  content: "7.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(8):before {
  content: "8.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

.p-ol-list__item:nth-child(9):before {
  content: "9.";
  color: #333333;
  position: absolute;
  top: 0;
  left: 0;
}

/* in==================*/
.p-ol-list--sub {
  display: inline-block;
  text-align: left;
  padding: 10px 0 0 10px;
  margin-left: -14px;
}
.p-ol-list--sub__item {
  display: block;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 5px;
}

.p-ol-list--sub__item:nth-child(1):before {
  content: "【1】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(2):before {
  content: "【2】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(3):before {
  content: "【3】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(4):before {
  content: "【4】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(5):before {
  content: "【5】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(6):before {
  content: "【6】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(7):before {
  content: "【7】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(8):before {
  content: "【8】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(9):before {
  content: "【9】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(10):before {
  content: "【10】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(11):before {
  content: "【11】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(12):before {
  content: "【12】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(13):before {
  content: "【13】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(14):before {
  content: "【14】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(15):before {
  content: "【15】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(16):before {
  content: "【16】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(17):before {
  content: "【17】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(18):before {
  content: "【18】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(19):before {
  content: "【19】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

.p-ol-list--sub__item:nth-child(20):before {
  content: "【20】";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}

/* in==================*/
.p-ol-list--kana {
  display: inline-block;
  text-align: left;
  padding: 5px 0 0 10px;
  margin-left: -10px;
}
.p-ol-list--kana__item {
  display: block;
  position: relative;
  padding-left: 2rem;
  margin-bottom: 5px;
}

.p-ol-list--kana__item:nth-child(1):before {
  content: "ア、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(2):before {
  content: "イ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(3):before {
  content: "ウ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(4):before {
  content: "エ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(5):before {
  content: "オ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(6):before {
  content: "カ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(7):before {
  content: "キ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(8):before {
  content: "ク、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(9):before {
  content: "ケ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(10):before {
  content: "コ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(11):before {
  content: "サ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(12):before {
  content: "シ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(13):before {
  content: "ス、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(14):before {
  content: "セ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(15):before {
  content: "ソ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(16):before {
  content: "タ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(17):before {
  content: "チ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(18):before {
  content: "ツ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(19):before {
  content: "テ、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

.p-ol-list--kana__item:nth-child(20):before {
  content: "ト、";
  color: #4BA0B8;
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  text-align: center;
}

/* ====================
	■文章の前に何か追加できるパターン
	=====================*/
.p-free-list__item {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .p-free-list__item {
    margin-bottom: 15px;
  }
}
.p-free-list__item .icon {
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  vertical-align: baseline;
  color: #4BA0B8;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-right: 5px;
  position: absolute;
  top: -3px;
  left: 0;
}
@media screen and (min-width: 812px) {
  .p-free-list__item .icon {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-free-list__item .main {
  font-size: 16px;
  font-size: 1rem;
  display: inline-block;
  vertical-align: baseline;
  padding-left: 35px;
}
@media screen and (min-width: 812px) {
  .p-free-list__item .main {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/* ====================
	■下線
	=====================*/
.p-line-list__item {
  border-top: 1px solid #cccccc;
  padding: 15px 10px;
}
.p-line-list__item:first-of-type {
  border-top: none;
}

/* =========================================================
top - topページの独自コンテンツ
========================================================= */
/*共通の箱*/
.p-top-box {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid #E5E5E5;
}
.p-top-box:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

/*メインヴィジュアル＝＝＝*/
.p-top-main {
  margin: 0 -5px 80px;
}
@media screen and (min-width: 812px) {
  .p-top-main {
    margin: 0 auto 80px;
  }
}
.p-top-main__link {
  display: block;
  text-align: center;
}
.p-top-main__link img {
  width: 100%;
}
.p-top-main .thumbnail_new .slick-current {
  opacity: 0.3;
}

/*一覧＝＝＝*/
.p-top-list .p-top-list__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-top-list .p-top-list__list .p-bulletin-list__item {
  width: 50%;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-top-list .p-top-list__list .p-bulletin-list__item {
    width: 25%;
  }
}
.p-top-list .p-top-list__list .p-bulletin-list__item .c-square-img {
  height: 150px;
}
.p-top-list .p-top-list__list .p-bulletin-list__item .p-bulletin-list__name,
.p-top-list .p-top-list__list .p-bulletin-list__item .p-bulletin-list__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .p-top-list .p-top-list__list .p-bulletin-list__item:nth-child(-n+3) {
    width: 25%;
  }
  .p-top-list .p-top-list__list .p-bulletin-list__item:nth-child(-n+3) .c-square-img {
    height: 150px;
  }
}

/*高価買取ランキング======*/
@media screen and (min-width: 812px) {
  .p-top-list.ranking .p-bulletin-list__item,
  .p-top-list.coupon .p-bulletin-list__item {
    width: 33.33%;
  }
}
.p-top-list.ranking .p-bulletin-list__item .ranking-icon,
.p-top-list.coupon .p-bulletin-list__item .ranking-icon {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 10px;
  z-index: 10;
}
.p-top-list.ranking .p-bulletin-list__item .ranking-icon img,
.p-top-list.coupon .p-bulletin-list__item .ranking-icon img {
  width: 25px;
}

/* =========================================================
blog - ブログ・お知らせ
========================================================= */
/* =========================================================
not_found -not_foundページの独自コンテンツ
========================================================= */
/* =========================================================
print - プリント表示に対する対応
========================================================= */
/* Page
======================================= */
/*全ページ共通アイテム========*/
/* =========================================================
共通のリンクアイテム
========================================================= */
.p-common-link {
  margin-bottom: 20px;
}

/* 【p-link-area】査定方法・買取方法を選ぶ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-link-area {
  padding: 50px 0;
  border-top: 1px solid #E5E5E5;
}
@media screen and (min-width: 812px) {
  .p-link-area {
    padding: 80px 0;
  }
}
.p-link-area:first-of-type {
  border-top: none;
}
.p-link-area__item {
  text-align: center;
  margin-bottom: 15px;
}
.p-link-area__item .c-basic-btn {
  padding: 25px 10%;
}

/* 【p-link-callout】選べる３つの…
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-link-callout__item {
  margin-bottom: 20px;
}
.p-link-callout__in {
  text-align: center;
}
.p-link-callout__text {
  width: 100%;
  border: 3px solid #E5E5E5;
  background: #ffffff;
  padding: 15px 5px;
  margin: 10px auto 0;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 280px;
}

/* 【p-link-contents】各コンテンツへのリンク
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (min-width: 812px) {
  .p-link-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -10px;
    margin-left: -10px;
  }
}
@media screen and (min-width: 812px) {
  .p-link-contents .l-col {
    width: 33.33333%;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-link-contents__item {
  border: 1px solid #cccccc;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.p-link-contents__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 60px;
  padding-left: 70px;
  margin-bottom: 10px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_delivery.jpg) no-repeat left center;
  background-size: 60px 60px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-align: left;
}
@media screen and (min-width: 812px) {
  .p-link-contents__name {
    height: 80px;
    padding-left: 90px;
    background-size: 80px 80px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-link-contents .c-basic-btn {
  padding: 10px;
  background-size: 13px 13px;
  max-width: 210px;
}
.p-link-contents .c-basic-btn .c-basic-btn__in {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-link-contents .delivery .p-link-contents__name {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_delivery.jpg);
}
.p-link-contents .no .p-link-contents__name {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_no.jpg);
}
.p-link-contents .item .p-link-contents__name {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_item.jpg);
}
.p-link-contents .voice .p-link-contents__name {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_voice.jpg);
}
.p-link-contents .faq .p-link-contents__name {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_faq.jpg);
}
.p-link-contents .shop .p-link-contents__name {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/btn/link_contents_shop.jpg);
}

/* 【p-link-tab】各コンテンツへのリンク 3カラム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-link-tab {
  padding-top: 40px;
}
@media screen and (min-width: 812px) {
  .p-link-tab {
    padding-top: 50px;
  }
}
.p-link-tab__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-link-tab__tab {
  width: 100%;
  padding: 15px 10px;
  border: 2px solid #ffffff;
  border-bottom-color: #4BA0B8;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
  text-align: center;
}
.p-link-tab__tab .in {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 3px 0;
  border-bottom: 1px solid #ffffff;
}
.p-link-tab__tab.js-tab-active {
  border: 2px solid #4BA0B8;
  border-bottom-color: #ffffff;
}
.p-link-tab__tab.js-tab-active .in {
  color: #4BA0B8;
  border-bottom: 1px solid #4BA0B8;
}
.p-link-tab__contents {
  padding: 20px 10px;
}
@media screen and (min-width: 812px) {
  .p-link-tab__contents {
    padding: 30px 10px;
  }
}
.p-link-tab__item {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-link-tab__item {
    margin-bottom: 10px;
  }
}
.p-link-tab__item:last-of-type {
  margin-bottom: 0;
}

/* =========================================================
買取速報
========================================================= */
/* 【p-purchase-bulletin】買取速報
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-purchase-bulletin .p-bulletin-list__item {
  padding: 7px;
}
.p-purchase-bulletin .p-bulletin-list__link {
  display: block;
  text-align: center;
}
.p-purchase-bulletin .p-bulletin-list__link .c-square-img {
  max-width: 200px;
  display: inline-block;
}
.p-purchase-bulletin .p-bulletin-list__text {
  padding-top: 10px;
  line-height: 1.3;
  text-align: center;
}
.p-purchase-bulletin .p-bulletin-list__name {
  display: block;
  color: #333333;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-purchase-bulletin .p-bulletin-list__ttl {
  padding-top: 10px;
  color: #E84728;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-purchase-bulletin .p-bulletin-list__pay {
  display: block;
  padding-top: 3px;
  color: #E84728;
  font-weight: bold;
  font-size: 17px;
  font-size: 1.0625rem;
}
.p-purchase-bulletin .p-bulletin-list__date {
  color: #9c8979;
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: .01rem;
  margin: 0 auto 6px;
  text-align: center;
}
.p-purchase-bulletin .p-bulletin-list__btn {
  text-align: center;
  padding-top: 20px;
}

/*サブブランドの時*/
/* =========================================================
フリーダイヤル
========================================================= */
/* 【p-free-dial-compact】ヘッダー等
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-free-dial-compact {
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  margin: 0 1%;
}
.p-free-dial-compact__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_tel_circle_color.svg) no-repeat left center;
  background-size: 30px 30px;
  padding-left: 35px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-free-dial-compact__in {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_tel_circle_color.svg) no-repeat left center;
    background-size: 52px 52px;
    padding-left: 57px;
    display: inline-block;
    vertical-align: middle;
  }
}
.p-free-dial-compact__ttl {
  font-weight: bold;
  letter-spacing: 4.5px;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 812px) {
  .p-free-dial-compact__ttl {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-free-dial-compact__dial {
  font-weight: bold;
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
}
@media screen and (min-width: 812px) {
  .p-free-dial-compact__dial {
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-free-dial-compact__dial a {
  color: #333333;
}
.p-free-dial-compact__text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #8e8e8e;
}
@media screen and (min-width: 812px) {
  .p-free-dial-compact__text {
    text-align: left;
    font-size: 10px;
    font-size: 0.625rem;
    line-height: 1.5;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
    width: 42%;
  }
}
.p-free-dial-compact__text .show {
  display: none;
}
@media screen and (min-width: 960px) {
  .p-free-dial-compact__text .show {
    display: inline;
  }
}
.p-free-dial-compact__att {
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  width: 100%;
  text-align: left;
  color: #8e8e8e;
}
.p-free-dial-compact__tel {
  width: 50%;
}

/* 【p-free-dial】フリーダイヤル
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-free-dial {
  padding: 4px;
  border: 1px solid #cccccc;
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
}
.p-free-dial__assessment .p-free-dial__ttl,
.p-free-dial__assessment .p-free-dial__dial {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-free-dial__assessment .p-free-dial__ttl,
  .p-free-dial__assessment .p-free-dial__dial {
    margin-bottom: 15px;
  }
}
.p-free-dial__in {
  padding: 15px 0;
  background-color: #F9F9F9;
}
@media screen and (min-width: 812px) {
  .p-free-dial__in {
    padding: 35px 0;
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/free-dial-photo.png) no-repeat right bottom;
  }
}
.p-free-dial__contents {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 812px) {
  .p-free-dial__contents {
    max-width: 680px;
    min-height: 200px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-free-dial__contents__in {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-free-dial__contents__in {
    max-width: 500px;
    padding: 0 10px;
  }
}
.p-free-dial__text {
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}
.p-free-dial__ttl {
  background: #4BA0B8;
  padding: 5px;
  margin-bottom: 5px;
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-free-dial__ttl {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-free-dial__ttl.pattern {
  background: #4BA0B8;
  color: #ffffff;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-free-dial__ttl.pattern {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-free-dial__dial {
  margin-bottom: 5px;
}
.p-free-dial__dial a {
  color: #333333;
}
@media screen and (min-width: 812px) {
  .p-free-dial__dial a {
    text-decoration: none;
  }
}
.p-free-dial__dial .in {
  display: inline-block;
  position: relative;
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_tel_circle_color.svg) no-repeat left center;
  background-size: 30px 30px;
  padding-left: 35px;
}
@media screen and (min-width: 812px) {
  .p-free-dial__dial .in {
    font-size: 62px;
    font-size: 3.875rem;
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_tel_circle_color.svg) no-repeat left center;
    background-size: 65px 65px;
    padding-left: 70px;
  }
}
.p-free-dial__time {
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-free-dial__time {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-free-dial__time.pattern .title {
  display: block;
  background: #E9E9E9;
  padding: 5px;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-free-dial__time.pattern .title {
    display: inline-block;
    width: 125px;
    padding: 10px;
  }
}
.p-free-dial__time.pattern .main {
  display: block;
  background: #f9f9f9;
  padding: 10px;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-free-dial__time.pattern .main {
    display: inline-block;
    width: calc( 100% - 125px);
  }
}

/* =========================================================
詳細ページ最下部のコラム
========================================================= */
/* 【p-details-column】詳細ページ最下部のコラム
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-details-column {
  border: 1px solid #000000;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-details-column {
    padding: 45px;
  }
}
.p-details-column__ttl {
  background-color: #F9F9F9;
  margin: 0 auto 5px;
  transition: .3s;
  cursor: pointer;
}
.p-details-column__ttl:hover {
  opacity: .7;
}
.p-details-column__ttl .in {
  text-align: center;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: bold;
  padding: 10px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_up_black.svg) no-repeat right 6px center;
  background-size: 12px 12px;
  padding-right: 24px;
}
@media screen and (min-width: 812px) {
  .p-details-column__ttl .in {
    padding: 20px;
    font-size: 18px;
    font-size: 1.125rem;
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_up_black.svg) no-repeat right 7.5px center;
    background-size: 15px 15px;
    padding-right: 30px;
  }
}
.p-details-column__ttl .in.rotate {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 6px center;
  background-size: 12px 12px;
  padding-right: 24px;
}
@media screen and (min-width: 812px) {
  .p-details-column__ttl .in.rotate {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 7.5px center;
    background-size: 15px 15px;
    padding-right: 30px;
  }
}
.p-details-column__txt {
  padding: 20px 0 30px;
}

/* =========================================================
ブランド・買取アイテム benefit
※ナンバーと写真
========================================================= */
/* 【p-benefit-brandlist】メインブランド
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-benefit-brandlist__item {
  margin-bottom: 80px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.p-benefit-brandlist__item:nth-child(even) .p-benefit-brandlist__photo img {
  left: auto;
  right: 0;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__item:nth-child(even) .p-benefit-brandlist__contents .txt {
    padding-right: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__item:nth-child(even) .p-benefit-brandlist__contents .sentence {
    padding-right: 0;
    padding-left: 20px;
  }
}
.p-benefit-brandlist__contents {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
  z-index: 10;
  min-height: 70px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents {
    max-width: 542px;
    min-height: 128px;
    margin-bottom: 0;
  }
}
.p-benefit-brandlist__contents .no {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents .no {
    width: 170px;
  }
}
.p-benefit-brandlist__contents .no .icon {
  display: inline-block;
  width: 100px;
  height: 67px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents .no .icon {
    width: 170px;
    height: 115px;
  }
}
.p-benefit-brandlist__contents .txt {
  padding: 15px 0 15px 70px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1.6;
  z-index: 10;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents .txt {
    padding: 15px 15px 15px 110px;
    font-size: 23px;
    font-size: 1.4375rem;
    line-height: 1.8;
    min-width: 110px;
  }
}
.p-benefit-brandlist__contents .sentence {
  width: 100%;
  z-index: 10;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents .sentence {
    padding-right: 20px;
  }
}
.p-benefit-brandlist__photo {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__photo {
    height: 300px;
    width: calc(100% - 542px);
  }
}
.p-benefit-brandlist__photo img {
  display: inline-block;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__photo img {
    max-width: 660px;
    position: absolute;
    top: 0;
    left: 0;
  }
}

/*type2================*/
.p-benefit-brandlist__contents--type2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents--type2 {
    max-width: 542px;
    margin-bottom: 0;
  }
}
.p-benefit-brandlist__contents--type2 .no {
  width: 50px;
  margin-right: 10px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents--type2 .no {
    margin-right: 25px;
    width: 84px;
  }
}
.p-benefit-brandlist__contents--type2 .no .icon {
  width: 50px;
  fill: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents--type2 .no .icon {
    width: 84px;
  }
}
.p-benefit-brandlist__contents--type2 .txt {
  border-bottom: 1px solid #4BA0B8;
  width: calc(100% - 60px);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  padding-bottom: 6px;
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__contents--type2 .txt {
    width: calc(100% - 109px);
    font-size: 20px;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 812px) {
  .p-benefit-brandlist__item:nth-child(even) .p-benefit-brandlist__contents--type2 {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 812px) {
  .p-benefit-brandlist__item:nth-child(even) .p-benefit-brandlist__contents--type2 .txt {
    padding-left: 65px;
  }
}

/*benefit02=============*/
.p-benefit02 figure,
.p-case-example figure {
  text-align: center;
}

/* =========================================================
コラム一覧　※メインブランド　サブブランド
========================================================= */
.p-column-list__contents {
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 0;
}
@media screen and (min-width: 812px) {
  .p-column-list__contents {
    padding: 15px;
  }
}
.p-column-list__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 290px;
  overflow-y: scroll;
}
@media screen and (min-width: 812px) {
  .p-column-list__list {
    height: 370px;
  }
}
.p-column-list__item {
  padding: 5px;
  max-width: 50%;
  width: 100%;
  min-height: 200px;
}
@media screen and (min-width: 812px) {
  .p-column-list__item {
    max-width: 16.6%;
  }
}
.p-column-list__link {
  display: block;
  border: 2px solid #E2E2E2;
  height: 100%;
}
.p-column-list__link:hover .p-column-list__name {
  color: #D14481;
}
.p-column-list__photo {
  height: 150px;
  overflow: hidden;
}
.p-column-list__photo img {
  display: inline-block;
  vertical-align: middle;
}
.p-column-list__name {
  color: #000000;
  padding: 10px 10px 10px 20px;
  line-height: 1.3;
  position: relative;
  word-wrap: break-word;
}
.p-column-list__name::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 7px;
  border-color: transparent transparent transparent #D14481;
  position: absolute;
  top: 12px;
  left: 9px;
}

/* =========================================================
買取強化ブランド一覧 brandlist__list
========================================================= */
.p-brandlist__list {
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 20px 10px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .p-brandlist__list {
    padding: 60px;
  }
}
.p-brandlist__item {
  text-align: center;
  max-width: 50%;
  width: 100%;
  padding: 0 5px;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-brandlist__item {
    max-width: 25%;
  }
}
.p-brandlist__link {
  display: inline-block;
  width: 100%;
}
.p-brandlist__img {
  text-align: center;
}
.p-brandlist__text {
  margin-top: 10px;
}
.p-brandlist__text .in {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_black.svg) no-repeat left center;
  background-size: 8px 8px;
  padding-left: 13px;
  background-position-y: 2px;
}

/* =========================================================
ブランド 【こんな状態でも買取可能です】purchase
========================================================= */
.p-benefit-purchase__ttl {
  font-size: 22px;
  font-size: 1.375rem;
  color: #c2c2c2;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-benefit-purchase__ttl {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.p-benefit-purchase__contents {
  border: 1px solid #cccccc;
  padding: 4px;
}
.p-benefit-purchase .in {
  padding: 20px;
  background: #eeeeee;
}
@media screen and (min-width: 812px) {
  .p-benefit-purchase .in {
    padding: 40px;
  }
}
@media screen and (min-width: 576px) {
  .p-benefit-purchase__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-benefit-purchase__item {
  margin: 0 0 10px;
}
@media screen and (min-width: 576px) {
  .p-benefit-purchase__item {
    width: 50%;
  }
}
@media screen and (min-width: 812px) {
  .p-benefit-purchase__item {
    width: auto;
    max-width: 25%;
    padding: 0 5px;
  }
}
.p-benefit-purchase__photo {
  text-align: center;
}
.p-benefit-purchase__photo img {
  display: inline-block;
  vertical-align: bottom;
}
.p-benefit-purchase__txt {
  text-align: center;
  padding: 10px 5px;
  color: #ffffff;
  max-width: 200px;
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
}

/*===========
リンクバナー
===========*/
.p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.p-brandlist-bnr__link {
  display: block;
  border: 1px solid #4BA0B8;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #4BA0B8 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-brandlist-bnr__text {
  text-align: center;
}
.p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #4BA0B8;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/* =========================================================
comparts - 共通パーツ
========================================================= */
.c-comparts-logo a {
  line-height: 0;
  vertical-align: bottom;
}
.c-comparts-logo img {
  max-width: 165px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1000px) {
  .c-comparts-logo img {
    max-width: 250px;
  }
}
.c-comparts-cs {
  display: none;
}
@media screen and (min-width: 1000px) {
  .c-comparts-cs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.c-comparts-cs_tel--text {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
}
.c-comparts-cs_tel--number {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
.c-comparts-cs_tel--number a {
  color: #c9b089;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: .1rem;
  line-height: 1;
}
.c-comparts-cs_tel--number a:before {
  background-image: url(../images_22/common/icon_tel.svg);
  background-size: cover;
  content: '';
  display: block;
  height: 23px;
  width: 23px;
  margin: 0 5px 0 0;
}
.c-comparts-cs_reception {
  border: 1px solid #bcbcbc;
}
.c-comparts-cs_reception--text {
  background-color: #e8e8e8;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  padding: 3px 28px;
}
.c-comparts-cs_reception--time {
  color: #fff;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
  padding: 4px 28px;
}
.c-comparts-cs_reception--open {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-weight: bold;
}
.c-comparts-cs_cont {
  background-color: #f9f9f9;
  padding: 60px 30px;
}
.c-comparts-cs_cont--wrap {
  background: #fff;
  border: 2px solid #c0af9f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 900px;
  margin: auto;
  padding: 20px 4vw;
}
@media screen and (min-width: 1000px) {
  .c-comparts-cs_cont--wrap {
    padding: 0;
  }
}
.c-comparts-cs_cont--explain {
  flex-grow: 1;
  margin: auto;
  max-width: 490px;
}
.c-comparts-cs_cont--text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-comparts-cs_cont--text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-comparts-cs_cont--title {
  border: 1px solid #c0af9f;
  color: #c0af9f;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  margin: 20px auto 0;
  text-align: center;
}
.c-comparts-cs_cont--number {
  margin: 6px auto 0;
}
.c-comparts-cs_cont--number a {
  color: #c0af9f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 33px;
  font-size: 2.0625rem;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .c-comparts-cs_cont--number a {
    font-size: 45px;
    font-size: 2.8125rem;
  }
}
@media screen and (min-width: 812px) {
  .c-comparts-cs_cont--number a {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 1000px) {
  .c-comparts-cs_cont--number a {
    font-size: 70px;
    font-size: 4.375rem;
  }
}
.c-comparts-cs_cont--number a img {
  margin: 0 6px 0 0;
  max-width: 24px;
}
@media screen and (min-width: 576px) {
  .c-comparts-cs_cont--number a img {
    max-width: 34px;
  }
}
@media screen and (min-width: 812px) {
  .c-comparts-cs_cont--number a img {
    max-width: 47px;
  }
}
.c-comparts-cs_cont--time {
  font-size: 12px;
  font-size: 0.75rem;
  margin: 3px auto 0;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-comparts-cs_cont--time {
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0;
  }
}
.c-comparts-cs_cont--open {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.c-comparts-cs_cont--img {
  display: none;
}
@media screen and (min-width: 812px) {
  .c-comparts-cs_cont--img {
    display: block;
  }
}
.c-comparts-linebtn a {
  background-color: #00b900;
  border-radius: 50%;
  box-shadow: 0 3px #008700;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  padding: 21px 16px;
  transition: .4s;
}
.c-comparts-linebtn a:hover {
  box-shadow: 0 1px #008700;
  opacity: .85;
}
.c-comparts-linebtn a img {
  max-width: 44px;
}
.c-comparts-linebtn a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: 4px 0 0;
  padding: 0 .7rem 0 0;
  position: relative;
}
.c-comparts-linebtn a span:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-comparts-pagetop {
  background-color: #383838;
  text-align: center;
}
.c-comparts-pagetop a {
  color: #fff;
  display: block;
  padding: 33px 0 13px;
  position: relative;
}
.c-comparts-pagetop a:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  margin: auto;
  width: 17px;
  height: 17px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: .4s;
}
.c-comparts-pagetop a:hover:before {
  top: 12px;
}
.c-comparts-floatmenu {
  /*background: rgb(91,91,91);
  background: -webkit-linear-gradient(bottom, rgba(91,91,91,1) 0%, rgba(96,96,96,1) 15%, rgba(232,232,232,1) 71%);
  background: -o-linear-gradient(bottom, rgba(91,91,91,1) 0%, rgba(96,96,96,1) 15%, rgba(232,232,232,1) 71%);
  background: linear-gradient(to top, rgba(91,91,91,1) 0%, rgba(96,96,96,1) 15%, rgba(232,232,232,1) 71%);*/
  background-color: rgba(41, 45, 56, 0.7);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 98;
}
.c-comparts-floatmenu_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: none;
}
.c-comparts-floatmenu_list li {
  margin: 15px 8px;
  max-width: 280px;
  width: 48%;
  width: -webkit-calc((100% - 32px) / 2);
  width: calc((100% - 32px) / 2);
}
@media screen and (min-width: 1000px) {
  .c-comparts-floatmenu_list li {
    margin: 15px 12px;
    width: 48%;
    width: -webkit-calc((100% - 48px) / 2);
    width: calc((100% - 48px) / 2);
  }
}
.c-comparts-floatmenu_list li a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 7px 0 7px 20px;
}
@media screen and (min-width: 576px) {
  .c-comparts-floatmenu_list li a {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 7px 0 7px 15px;
  }
}
.c-comparts-floatmenu_list li a:after {
  background-size: cover;
  background-repeat: no-repeat;
  border: none;
  height: 32px;
  width: 32px;
  right: 0;
  left: -7rem;
  margin: auto;
  transform: none;
}
@media screen and (min-width: 576px) {
  .c-comparts-floatmenu_list li a:after {
    height: 42px;
    width: 42px;
    left: -9rem;
  }
}
@media screen and (min-width: 1000px) {
  .c-comparts-floatmenu_list li a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-comparts-floatmenu_list li a span {
  font-size: 11px;
  font-size: 0.6875rem;
}
@media screen and (min-width: 576px) {
  .c-comparts-floatmenu_list li a span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 1000px) {
  .c-comparts-floatmenu_list li a span {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-comparts-floatmenu_list li.line a {
  background-color: #01af03;
}
.c-comparts-floatmenu_list li.line a:after {
  background-image: url(../images_22/common/icon_float_line.png);
}
.c-comparts-floatmenu_list li.tel a {
  background-color: #f08900;
}
.c-comparts-floatmenu_list li.tel a:after {
  background-image: url(../images_22/common/icon_float_tel.png);
}

/*買取アイテム========*/
/* =========================================================
買取アイテム共通
========================================================= */
/*top====*/
/*===========
買取アイテム一覧
===========*/
.p-itemlist-list {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-itemlist-list__item {
  width: 33.3%;
  margin-bottom: 25px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-list__item {
    width: 16.6%;
  }
}
.p-itemlist-list__link {
  width: 100%;
  display: block;
  text-align: center;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0);
  transform: .3s;
}
.p-itemlist-list__link:hover {
  border: 1px solid #4BA0B8;
}
.p-itemlist-list__name {
  margin-top: 10px;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #333333;
}
.p-itemlist-list__sb-name {
  margin-top: 5px;
  display: block;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  color: #4BA0B8;
  text-align: left;
  line-height: 1.2;
}
.p-itemlist-list__top {
  margin-top: 50px;
}

/*===========
買取アイテム一覧
===========*/
.p-itemlist-table {
  background: #F9F9F9;
  padding: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-table {
    padding: 40px 30px;
    margin-bottom: 20px;
  }
}
.p-itemlist-table__in {
  margin: 0 -5px;
}
.p-itemlist-table__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-itemlist-table__menu .menu-item {
  width: 20%;
  padding: 5px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-table__menu .menu-item {
    width: 10%;
    margin-bottom: 15px;
  }
}
.p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #4BA0B8;
  color: #ffffff;
}
.p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 8.5px 0 8.5px;
  border-color: #4BA0B8 transparent transparent transparent;
  position: absolute;
  bottom: -12px;
  left: calc(50% - 8.5px);
}
.p-itemlist-table__menu .menu-item__in {
  display: block;
  padding: 10px 5px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: #ffffff;
  color: #333333;
  position: relative;
}
.p-itemlist-table__body {
  padding-top: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-table__body {
    padding-top: 25px;
  }
}
@media screen and (min-width: 812px) {
  .p-itemlist-table__contents .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-itemlist-table__item {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-table__item {
    width: 50%;
    margin-bottom: 15px;
  }
}
.p-itemlist-table__item .link {
  color: #333333;
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
  padding-left: 16px;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-itemlist-table__item .link {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-itemlist-table__item .link:hover {
  opacity: 1;
  color: #4BA0B8;
  text-decoration: underline;
}
.p-itemlist-table__item .link::before {
  content: "・";
  display: inline-block;
  vertical-align: baseline;
  position: absolute;
  top: 0;
  left: 0;
}
.p-itemlist-table__item .link span {
  padding-left: 5px;
}

/*===========
売却時に必要な書類
===========*/
.p-itemlist-document__in .c-ttl-simple {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__in .c-ttl-simple {
    margin-bottom: 5px;
  }
}
.p-itemlist-document__contents {
  margin-top: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}
.p-itemlist-document__photo {
  text-align: center;
  padding-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__photo {
    width: 60%;
    padding: 0 0 0 10px;
  }
}
.p-itemlist-document__item {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__item {
    margin-bottom: 20px;
  }
}
.p-itemlist-document__item .number {
  font-size: 25px;
  font-size: 1.5625rem;
  display: inline-block;
  vertical-align: baseline;
  color: #4BA0B8;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-right: 5px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__item .number {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.p-itemlist-document__item .main {
  font-size: 20px;
  font-size: 1.25rem;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__item .main {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-itemlist-document-invalid {
  border: 1px solid #4BA0B8;
  margin-top: 10px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document-invalid {
    margin-top: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.p-itemlist-document-invalid__ttl {
  width: 100%;
  background: #4BA0B8;
  text-align: center;
  color: #ffffff;
  padding: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document-invalid__ttl {
    max-width: 340px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-itemlist-document-invalid__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document-invalid__list {
    max-width: calc(100% - 340px);
  }
}
.p-itemlist-document-invalid__item {
  width: 50%;
  color: #4BA0B8;
  padding: 10px;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document-invalid__item {
    width: auto;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-itemlist-document__attention {
  margin-top: 10px;
  text-align: center;
  color: #E84728;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .p-itemlist-document__attention {
    margin-top: 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-itemlist-document__attention a {
  color: #E84728;
  text-decoration: underline;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.watch .p-section.bg-color01 {
  background-color: #F1EBE1;
}
.watch .c-double-btn,
.watch .c-ttl-mini .in::before, .watch .c-ttl-mini .in::after {
  background-color: #897665;
}
.watch .c-ttl-basic .sub,
.watch .slick-dots li.slick-active .js-slick__dots-item,
.watch .c-ttl-mini .in {
  color: #897665;
}
.watch .p-brandlist__list {
  border-color: #897665;
}
.watch .p-benefit-brandlist__contents .no .icon {
  fill: #E4DDD2;
}

/*===========
内部リンク
===========*/
.watch .p-root {
  border-top: 2px solid #E4DFD7;
  border-bottom: 2px solid #E4DFD7;
  background: #897665;
  position: relative;
}
.watch .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.watch .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dotted #ffffff;
}
@media screen and (min-width: 812px) {
  .watch .p-root-menu__item {
    width: 20%;
    border-bottom: none;
  }
}
.watch .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .watch .p-root-menu__item:first-of-type {
    display: block;
  }
}
.watch .p-root-menu__item:last-of-type {
  border-bottom: none;
}
.watch .p-root-menu__link {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #ffffff;
}
@media screen and (min-width: 812px) {
  .watch .p-root-menu__link {
    padding: 20px 10px;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-root-menu__open .in {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_w.svg) no-repeat right center;
    background-size: 12px 12px;
    padding-right: 17px;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-root-menu__open:hover > .p-root-menu__mega {
    display: block;
  }
}
.watch .p-root-menu__mega {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 2px solid #E4DFD7;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 40px 0;
}
.watch .p-root-menu__mega .menu-mega__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.watch .p-root-menu__mega .menu-mega__item {
  max-width: 33.3%;
  padding: 5px;
  text-align: center;
}
.watch .p-root-menu__mega .menu-mega__item .menu-mega__link {
  display: inline-block;
}
.watch .p-root-menu__mega .p-brandlist__list {
  height: 200px;
  overflow-y: scroll;
}

/*===========
メインイメージ
===========*/
.watch .p-main-img {
  max-width: 1400px;
  margin: 0 auto;
}
.watch .p-main-img__item {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .watch .p-main-img__item {
    float: left;
    width: 50%;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-main-img__item {
    float: left;
    width: 33.33%;
  }
}
.watch .p-main-img__item a {
  width: 100%;
}
.watch .p-main-img__item a img {
  vertical-align: bottom;
  width: 100%;
}

/*===========
高価買取特集
===========*/
.watch .p-case-example__item {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .watch .p-case-example__item {
    margin-bottom: 0;
  }
}

/*金額の比較==============*/
.watch .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .watch .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.watch .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .watch .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.watch .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .watch .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.watch .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .watch .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.watch .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #897665;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #897665;
}
.watch .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.watch .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.watch .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.watch .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .watch .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.watch .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #897665;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .watch .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.watch .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .watch .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.watch .p-ranking__list {
  margin-top: 20px;
}
.watch .p-ranking__item {
  background: #ffffff;
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item {
    padding: 20px;
    min-height: 234px;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.watch .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.watch .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #897665;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.watch .p-ranking__no .text {
  display: inline-block;
  color: #897665;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.watch .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .watch .p-ranking__img {
    height: 130px;
  }
}
.watch .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .watch .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.watch .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .watch .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.watch .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .watch .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
取扱ブランド一覧
===========*/
.watch .p-brand-list__item {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .watch .p-brand-list__item {
    margin-bottom: 30px;
  }
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.watch .p-hospitality__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media screen and (min-width: 812px) {
  .watch .p-hospitality__list {
    margin-bottom: 30px;
  }
}
.watch .p-hospitality__item {
  width: 50%;
  text-align: center;
  padding: 0 5px;
}
@media screen and (min-width: 812px) {
  .watch .p-hospitality__item {
    width: 25%;
  }
}
.watch .p-hospitality__text {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0;
}
@media screen and (min-width: 812px) {
  .watch .p-hospitality__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.watch .p-hospitality__copy {
  background: #897665;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.watch .p-points__item {
  margin-bottom: 15px;
}
.watch .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .watch .p-points__in {
    padding: 40px 10px;
  }
}
.watch .p-points__ttl {
  color: #897665;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .watch .p-points__ttl {
    margin-bottom: 20px;
  }
}
.watch .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.watch .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.watch .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .watch .p-points__img {
    margin: 0 auto 20px;
  }
}
.watch .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .watch .p-points__text {
    max-width: 250px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.bag .c-double-btn,
.bag .c-ttl-mini .in::before, .bag .c-ttl-mini .in::after,
.bag .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in,
.bag .p-itemlist-document-invalid__ttl {
  background-color: #000000;
}
.bag .c-ttl-basic .sub,
.bag .slick-dots li.slick-active .js-slick__dots-item,
.bag .c-ttl-mini .in,
.bag .p-brandlist-bnr__text .sub,
.bag .p-brandlist-bnr__text .main,
.bag .p-itemlist-document-invalid__item {
  color: #000000;
}
.bag .p-brandlist__list,
.bag .p-section.border-top,
.bag .p-brandlist-bnr__link,
.bag .p-itemlist-document-invalid {
  border-color: #000000;
}
.bag .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}
.bag .p-brandlist-bnr__link::after {
  border-color: transparent transparent #000000 transparent;
}
.bag .p-itemlist-document__item .number {
  color: #C9C9C9;
}

/*===========
買取速報
===========*/
.item_list.bag .c-ttl-basic .main,
.bag .c-ttl-basic .sub {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*===========
メインイメージ
===========*/
.bag .p-main-img__in {
  text-align: center;
}
.bag .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.bag .p-root-title {
  text-align: center;
  background: #C9C9C9;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .bag .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.bag .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #cccccc;
  border-bottom: 6px double #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .bag .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.bag .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.bag .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .bag .p-root-menu__list {
    padding: 17px 0;
  }
}
.bag .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .bag .p-root-menu__item {
    width: 16.6%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.bag .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .bag .p-root-menu__item:first-of-type {
    display: block;
  }
}
.bag .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .bag .p-root-menu__item:last-of-type {
    border-right: 1x solid #E5E5E5;
  }
}
.bag .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .bag .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.bag .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.bag .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .bag .p-root-menu__link .name {
    display: block;
  }
}

/*金額の比較==============*/
.bag .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.bag .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.bag .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
.bag .p-omparison__ttl-sub {
  line-height: 1.6;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison__ttl-sub {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
}
.bag .p-omparison .p-omparison-company .other-company {
  margin-top: 10px;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.bag .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.bag .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.bag .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.bag .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.bag .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.bag .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .bag .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.bag .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .bag .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.bag .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .bag .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
ブランドバッグ高価買取のススメ
===========*/
.bag .p-recommendation .p-recommendation03 {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/bag/img_recommendation_bg.png) no-repeat center bottom;
  background-size: cover;
}
@media screen and (min-width: 812px) {
  .bag .p-recommendation .p-recommendation03 {
    background-size: auto;
  }
}
.bag .p-recommendation__list {
  padding: 20px 0 0;
}
@media screen and (min-width: 812px) {
  .bag .p-recommendation__list {
    padding: 100px 0;
  }
}
.bag .p-recommendation__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .bag .p-recommendation__item {
    margin-bottom: 0;
  }
}
.bag .p-recommendation__item:first-of-type .in {
  border-top: none;
}
@media screen and (min-width: 812px) {
  .bag .p-recommendation__item:first-of-type .in {
    border-left: none;
  }
}
.bag .p-recommendation__item .in {
  border-top: 1px solid #E7E7E7;
  text-align: center;
  padding: 15px 0;
}
@media screen and (min-width: 812px) {
  .bag .p-recommendation__item .in {
    padding: 0 5px;
    border-top: none;
    border-left: 1px solid #E7E7E7;
  }
}
.bag .p-recommendation__contents .p-omparison__ttl .sub {
  color: #a0a0a0;
}
.bag .p-recommendation__contents .p-omparison-company .other-company,
.bag .p-recommendation__contents .p-omparison-company .company-maruka {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.bag .p-recommendation__copy {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 10px;
}

/*===========
取扱ブランド一覧
===========*/
.bag .p-brand-list__item {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .bag .p-brand-list__item {
    margin-bottom: 30px;
  }
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.bag .p-hospitality__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media screen and (min-width: 812px) {
  .bag .p-hospitality__list {
    margin-bottom: 30px;
  }
}
.bag .p-hospitality__item {
  width: 50%;
  text-align: center;
  padding: 0 5px;
}
@media screen and (min-width: 812px) {
  .bag .p-hospitality__item {
    width: 25%;
  }
}
.bag .p-hospitality__text {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0;
}
@media screen and (min-width: 812px) {
  .bag .p-hospitality__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.bag .p-hospitality__copy {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.bag .p-points__item {
  margin-bottom: 15px;
}
.bag .p-points__in {
  border: 1px solid #000000;
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .bag .p-points__in {
    padding: 40px 10px;
  }
}
.bag .p-points__ttl {
  color: #C9C9C9;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .bag .p-points__ttl {
    margin-bottom: 20px;
  }
}
.bag .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.bag .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.bag .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .bag .p-points__img {
    margin: 0 auto 20px;
  }
}
.bag .p-points__point {
  text-align: center;
  color: #000000;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .bag .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.bag .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.diamond .c-double-btn,
.diamond .c-ttl-mini .in::before, .diamond .c-ttl-mini .in::after {
  background-color: #2c003f;
}
.diamond .c-ttl-basic .sub,
.diamond .c-ttl-mini .in {
  color: #2c003f;
}
.diamond .p-section.bg-color01 {
  background-color: #F4F4F7;
}

/*===========
メインイメージ
===========*/
.diamond .p-main-img__in {
  text-align: center;
}
.diamond .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.diamond .p-root-title {
  text-align: center;
  background: #F4F4F7;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-title {
    padding: 0px;
    background: #2c003f;
  }
}
.diamond .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #F4F4F7;
  border-bottom: 6px double #F4F4F7;
  border-left: 1px solid #F4F4F7;
  border-right: 1px solid #F4F4F7;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #2c003f;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.diamond .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.diamond .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-menu__list {
    padding: 17px 0;
  }
}
.diamond .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.diamond .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.diamond .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.diamond .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.diamond .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.diamond .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .diamond .p-root-menu__link .name {
    display: block;
  }
}

/*金額の比較==============*/
.diamond .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .diamond .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.diamond .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  color: #2C003F;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (min-width: 812px) {
  .diamond .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.diamond .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .diamond .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.diamond .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .diamond .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.diamond .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #2C003F;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #2C003F;
}
.diamond .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.diamond .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.diamond .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.diamond .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .diamond .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.diamond .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #2C003F;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .diamond .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.diamond .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .diamond .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.diamond .p-ranking__list {
  margin-top: 20px;
}
.diamond .p-ranking__item {
  background: #F4F4F7;
  border: 1px solid #cccccc;
  height: 100%;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item {
    padding: 20px;
    height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.diamond .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.diamond .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #2C003F;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.diamond .p-ranking__no .text {
  display: inline-block;
  color: #2C003F;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.diamond .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .diamond .p-ranking__img {
    height: 130px;
  }
}
.diamond .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .diamond .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.diamond .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .diamond .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.diamond .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .diamond .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
こんな時はマルカにぜひご相談ください!
===========*/
.diamond .p-point .p-free-list__item .icon {
  color: #cccce0;
}
.diamond .p-point .p-benefit-purchase__ttl {
  color: #a0a0a0;
}
.diamond .p-point .p-benefit-purchase .in {
  background: #F4F4F7;
}
.diamond .p-point .p-benefit-purchase__txt {
  color: #000000;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.diamond .p-points__item {
  margin-bottom: 15px;
}
.diamond .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .diamond .p-points__in {
    padding: 40px 10px;
  }
}
.diamond .p-points__ttl {
  color: #2c003f;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .diamond .p-points__ttl {
    margin-bottom: 20px;
  }
}
.diamond .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.diamond .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.diamond .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .diamond .p-points__img {
    margin: 0 auto 20px;
  }
}
.diamond .p-points__point {
  text-align: center;
  color: #2c003f;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .diamond .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.diamond .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .diamond .p-points__text {
    max-width: 250px;
  }
}

/*===========
売却時に必要な書類
===========*/
.diamond .p-itemlist-document__item .number {
  color: #cccce0;
}
.diamond .p-itemlist-document__item .main {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
.diamond .p-itemlist-document-invalid__ttl {
  background: #2c003f;
}
.diamond .p-itemlist-document-invalid__item {
  color: #2c003f;
}
.diamond .p-itemlist-document-invalid {
  border-color: #2c003f;
}

/*===========
	ダイヤモンド買取価格一覧表
===========*/
@media screen and (min-width: 812px) {
  .diamond .p-price-list__table {
    padding: 2px 0;
    border: 1px solid #dddddd;
  }
}
.diamond .p-price-list__table .c-table__width {
  margin-bottom: 15px;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 1px solid #dddddd;
}
@media screen and (min-width: 812px) {
  .diamond .p-price-list__table .c-table__width {
    margin-bottom: 0;
    border-left: none;
    border-bottom: none;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
  }
}
@media screen and (min-width: 812px) {
  .diamond .p-price-list__table .c-table__width:nth-child(even) .c-table .c-td {
    background: #f9f9f9;
  }
}
.diamond .p-price-list__table .c-table__width:last-of-type {
  border-bottom: 1px solid #dddddd;
}
.diamond .p-price-list__table .c-table {
  text-align: center;
  width: 50%;
}
@media screen and (min-width: 812px) {
  .diamond .p-price-list__table .c-table {
    width: 100%;
  }
}
.diamond .p-price-list__table .c-table:last-of-type {
  width: 100%;
}
.diamond .p-price-list__table .c-table:last-of-type .c-td {
  color: #E84728;
  font-weight: bold;
}
.diamond .p-price-list__table .c-table .c-th, .diamond .p-price-list__table .c-table .c-td {
  padding: 10px;
  border-right: 1px solid #dddddd;
}
@media screen and (min-width: 812px) {
  .diamond .p-price-list__table .c-table .c-th, .diamond .p-price-list__table .c-table .c-td {
    border: none;
  }
}
.diamond .p-price-list__table .c-table .c-th {
  background: #F4F4F7;
  color: #2c003f;
}

/*===========
	ダイヤモンド買取価格一覧表
===========*/
.diamond .p-benefit02 .c-ttl-circle--side__num {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #2c003f;
}
.diamond .p-benefit02 .c-ttl-circle--side__text {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .diamond .p-benefit02 .c-ttl-circle--side__text {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

/*===========
	ダイヤモンド以外の宝石査定もお任せください
===========*/
.diamond .p-jewelry-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.diamond .p-jewelry-list__item {
  text-align: center;
  width: 33.3%;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .diamond .p-jewelry-list__item {
    width: 16.6%;
  }
}
.diamond .p-jewelry-list__item a {
  display: inline-block;
}
.diamond .p-jewelry-list__name {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
  color: #000000;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.gold .p-section.bg-main {
  background: #B5A35C;
  margin-top: 0;
}
.gold .c-double-btn {
  background-color: #b5a35c;
}
.gold .c-ttl-slash .c-ttl-slash__text {
  color: #b5a35c;
}
.gold .c-ttl-slash .c-ttl-slash__text::before, .gold .c-ttl-slash .c-ttl-slash__text::after {
  background: #b5a35c;
}
.gold .c-ttl-basic .sub,
.gold .slick-dots li.slick-active .js-slick__dots-item,
.gold .c-ttl-mini .in,
.gold .c-ttl-circle .text,
.gold .c-ttl-circle--side__num,
.gold .c-ttl-circle--side__text {
  color: #b5a35c;
}
.gold .c-ttl-circle {
  border-color: #b5a35c;
}

/*===========
メインイメージ
===========*/
.gold .p-main-img__in {
  text-align: center;
}
.gold .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.gold .p-root-title {
  text-align: center;
  background: #b5a35c;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .gold .p-root-title {
    padding: 10px 0;
  }
}
.gold .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .gold .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.gold .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.gold .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .gold .p-root-menu__list {
    padding: 17px 0;
  }
}
.gold .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #b5a35c;
}
@media screen and (min-width: 812px) {
  .gold .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #b5a35c;
  }
}
.gold .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .gold .p-root-menu__item:last-of-type {
    border-right: 1px solid #b5a35c;
  }
}
.gold .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .gold .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.gold .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.gold .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .gold .p-root-menu__link .name {
    display: block;
  }
}

/*===========
箱
===========*/
.gold .p-box-contents__ttl {
  background: #B5A35C;
  padding: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .gold .p-box-contents__ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.gold .p-box-contents__in {
  border: 4px solid #B5A35C;
  border-top: none;
}

/*===========
今日売ったらいくら？シミュレーションしてみる
===========*/
.gold .p-simulation {
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation {
    padding: 20px;
  }
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
}
.gold .p-simulation__value {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__value {
    margin-bottom: 0;
    width: 100%;
    max-width: 260px;
  }
}
.gold .p-simulation__value .title {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__value .title {
    font-size: 20px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 260px;
  }
}
.gold .p-simulation__value .contents {
  position: relative;
  background: #EDEDED;
  padding: 10px;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__value .contents {
    margin-bottom: 0;
    max-width: 260px;
  }
}
.gold .p-simulation__value .contents input, .gold .p-simulation__value .contents select {
  width: 100%;
  max-width: 100%;
}
.gold .p-simulation__value .contents-text {
  padding: 5px;
}
.gold .p-simulation__value.total {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__value.total {
    font-size: 24px;
    font-size: 1.5rem;
    width: 100%;
  }
}
.gold .p-simulation__value.total .title {
  margin-right: 0;
}
.gold .p-simulation__value.total .contents {
  color: #E84728;
  margin-right: 0;
  padding: 10px;
  display: block;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__value.total .contents {
    padding: 20px;
  }
}
.gold .p-simulation .c-form {
  border: none;
}
.gold .p-simulation__icon {
  display: block;
  width: 100%;
  max-width: 20px;
  margin: 10px auto;
}
@media screen and (min-width: 812px) {
  .gold .p-simulation__icon {
    max-width: 50px;
    margin: 0 10px;
  }
}
.gold .p-simulation__button {
  text-align: center;
  padding-top: 10px;
}
.gold .p-simulation__button .c-basic-btn {
  background-image: none;
}

/*===========
ブランド金高価買取のススメ
============*/
.gold .p-market-price__head {
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__head {
    margin-bottom: 40px;
  }
}
.gold .p-market-price__ttl {
  border-left: 5px solid #B5A35C;
  color: #b5a35c;
  padding-left: 5px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__ttl {
    padding-left: 10px;
    border-left: 10px solid #B5A35C;
  }
}
.gold .p-market-price__ttl .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__ttl .big {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.gold .p-market-price__ttl .small {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  padding-top: 5px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__ttl .small {
    font-size: 23px;
    font-size: 1.4375rem;
    display: inline-block;
    padding-top: 0;
  }
}
.gold .p-market-price__time {
  margin-top: 10px;
  display: block;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_market-price-time.png) no-repeat left center;
  background-size: 14px 14px;
  padding-left: 20px;
  color: #E84728;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__time {
    background-size: 15px 15px;
    margin-top: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.gold .p-market-price__sub-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #b5a35c;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__sub-ttl {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
}
.gold .p-market-price .p-ingot__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price .p-ingot__item {
    margin-bottom: 0;
  }
}
.gold .p-market-price .p-ingot__item.platinum .p-ingot__ttl {
  background: #B5A874;
}
.gold .p-market-price .p-ingot__item.silver .p-ingot__ttl {
  background: #BBBBBB;
}
.gold .p-market-price .p-ingot__in {
  text-align: center;
}
.gold .p-market-price .p-ingot__ttl {
  background: #988539;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price .p-ingot__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.gold .p-market-price .p-ingot__price {
  background: #ffffff;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price .p-ingot__price {
    font-size: 32px;
    font-size: 2rem;
  }
}
.gold .p-market-price__table {
  border-top: 1px solid #b5a35c;
  border-left: 1px solid #b5a35c;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.gold .p-market-price__th, .gold .p-market-price__td {
  border-bottom: 1px solid #b5a35c;
  border-right: 1px solid #b5a35c;
  padding: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__th, .gold .p-market-price__td {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.gold .p-market-price__th {
  color: #b5a35c;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__th {
    width: 60%;
  }
}
.gold .p-market-price__td {
  color: #E84728;
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .gold .p-market-price__td {
    width: 40%;
  }
}
.gold .p-market-price .gold .p-market-price__sub-ttl,
.gold .p-market-price .gold .p-market-price__table,
.gold .p-market-price .gold .p-market-price__th,
.gold .p-market-price .gold .p-market-price__td {
  border-color: #988539;
}
.gold .p-market-price .gold .p-market-price__th {
  color: #988539;
}
.gold .p-market-price .silver .p-market-price__sub-ttl,
.gold .p-market-price .silver .p-market-price__table,
.gold .p-market-price .silver .p-market-price__th,
.gold .p-market-price .silver .p-market-price__td {
  border-color: #BBBBBB;
}
.gold .p-market-price .silver .p-market-price__th {
  color: #BBBBBB;
}

/*===========
マルカの金買取を 比べてください
===========*/
.gold .p-comparison .c-ttl-slash .c-ttl-slash__text {
  color: #ffffff;
}
.gold .p-comparison .c-ttl-slash .c-ttl-slash__text::before, .gold .p-comparison .c-ttl-slash .c-ttl-slash__text::after {
  background: #ffffff;
}
.gold .p-comparison .c-basic-txt, .gold .p-comparison .p-basic-list__item, .gold .p-comparison .p-ol-list__item, .gold .p-comparison .p-ol-list--sub__item, .gold .p-comparison .p-ol-list--kana__item {
  color: #ffffff;
}
.gold .p-comparison .p-comparison-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gold .p-comparison .p-comparison-icon__item {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .gold .p-comparison .p-comparison-icon__item {
    width: 20%;
  }
}
@media screen and (min-width: 812px) {
  .gold .p-comparison .p-comparison-icon__item:first-of-type, .gold .p-comparison .p-comparison-icon__item:last-of-type {
    padding-top: 70px;
  }
}
@media screen and (min-width: 812px) {
  .gold .p-comparison .p-comparison-icon__item:nth-child(2), .gold .p-comparison .p-comparison-icon__item:nth-child(4) {
    padding-top: 20px;
  }
}
.gold .p-comparison .p-comparison-icon__item.zero .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_zero.png);
}
.gold .p-comparison .p-comparison-icon__item.up .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_up.png);
}
.gold .p-comparison .p-comparison-icon__item.scale .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_scale.png);
}
.gold .p-comparison .p-comparison-icon__item.pc .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_pc.png);
}
.gold .p-comparison .p-comparison-icon__item.fax .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_fax.png);
}
.gold .p-comparison .p-comparison-icon .in {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 155px;
  height: 155px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_zero.png) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 812px) {
  .gold .p-comparison .p-comparison-icon .in {
    max-width: 180px;
    height: 180px;
  }
}
.gold .p-comparison .p-comparison-icon__text {
  position: absolute;
  top: 60%;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: #B5A874;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .gold .p-comparison .p-comparison-icon__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.gold .p-comparison__list {
  border-top: 6px double #ffffff;
  border-bottom: 6px double #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 20px 15px;
  margin: 15px auto;
}
.gold .p-comparison__item {
  color: #ffffff;
  position: relative;
  padding-left: 20px;
  padding-bottom: 5px;
}
.gold .p-comparison__item::before {
  content: "〇";
  position: absolute;
  top: 0;
  left: 0;
}

/*===========
金の買取実績実例
===========*/
.p-actual-results__item {
  margin-bottom: 15px;
}
.p-actual-results__item .in {
  max-width: 220px;
  margin: 0 auto;
}
.p-actual-results__photo {
  text-align: center;
  margin-bottom: 10px;
}
.p-actual-results__text {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-actual-results__price {
  color: #E84728;
}
.p-actual-results__price .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__price .big {
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-actual-results__price .small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__price .small {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.p-purchase {
  background: #E1DCC8;
}
.p-purchase__contents {
  background: #ffffff;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-purchase__contents {
    padding: 20px;
  }
}
.p-purchase__item {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-purchase__item {
    margin-bottom: 0;
  }
}
.p-purchase__text {
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-purchase__text {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/photo_purchase_clerk.png) no-repeat bottom right;
    background-size: 30% auto;
    padding: 30px 30% 30px 30px;
  }
}
.p-purchase__link {
  margin-top: 15px;
}
.p-purchase__link a {
  display: inline-block;
}

/*===========
どうして業界最高クラスの 高価買取が出来るの？
===========*/
.p-point-about {
  border-top: 1px solid #E5E5E5;
  padding: 40px 0 0;
  margin: 40px auto 0;
}
@media screen and (min-width: 812px) {
  .p-point-about {
    padding: 70px 0 0;
    margin: 70px auto 0;
  }
}
.p-point-about:first-of-type {
  margin: 0 auto;
  padding: 0;
  border-top: none;
}
@media screen and (min-width: 812px) {
  .p-point-about:first-of-type {
    margin: 0 auto;
    padding: 0;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.platinum .p-section.bg-main {
  background-color: #0071BF;
  margin-top: 0;
}
.platinum .p-section.bg-main .c-ttl-slash .c-ttl-slash__text {
  color: #ffffff;
}
.platinum .p-section.bg-main .c-ttl-slash .c-ttl-slash__text::before, .platinum .p-section.bg-main .c-ttl-slash .c-ttl-slash__text::after {
  background: #ffffff;
}

/*===========
メインイメージ
===========*/
.platinum .p-main-img__in {
  text-align: center;
}
.platinum .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.platinum .p-root-title {
  text-align: center;
  background: #0071BF;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-title {
    padding: 10px 0;
  }
}
.platinum .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.platinum .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.platinum .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-menu__list {
    padding: 17px 0;
  }
}
.platinum .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #0071BF;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-menu__item {
    width: 16.6%;
    border-bottom: none;
    border-left: 1px solid #0071BF;
  }
}
.platinum .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-menu__item:last-of-type {
    border-right: 1px solid #0071BF;
  }
}
.platinum .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.platinum .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.platinum .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.platinum .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .platinum .p-root-menu__link .name {
    display: block;
  }
}

/*===========
箱
===========*/
.platinum .p-box-contents__ttl {
  background: #CBEDF7;
  padding: 10px;
  text-align: center;
  color: #4BA0B8;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .platinum .p-box-contents__ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.platinum .p-box-contents__in {
  border: 4px solid #CBEDF7;
  border-top: none;
}

/*===========
今日売ったらいくら？シミュレーションしてみる
===========*/
.platinum .p-simulation {
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation {
    padding: 20px;
  }
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
}
.platinum .p-simulation__value {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__value {
    margin-bottom: 0;
    width: 100%;
    max-width: 260px;
  }
}
.platinum .p-simulation__value .title {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__value .title {
    font-size: 20px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 260px;
  }
}
.platinum .p-simulation__value .contents {
  position: relative;
  background: #EDEDED;
  padding: 10px;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__value .contents {
    margin-bottom: 0;
    max-width: 260px;
  }
}
.platinum .p-simulation__value .contents input, .platinum .p-simulation__value .contents select {
  width: 100%;
  max-width: 100%;
}
.platinum .p-simulation__value .contents-text {
  padding: 5px;
}
.platinum .p-simulation__value.total {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__value.total {
    font-size: 24px;
    font-size: 1.5rem;
    width: 100%;
  }
}
.platinum .p-simulation__value.total .title {
  margin-right: 0;
}
.platinum .p-simulation__value.total .contents {
  color: #E84728;
  margin-right: 0;
  padding: 10px;
  display: block;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__value.total .contents {
    padding: 16px;
  }
}
.platinum .p-simulation .c-form {
  border: none;
}
.platinum .p-simulation__icon {
  display: block;
  width: 100%;
  max-width: 20px;
  margin: 10px auto;
}
@media screen and (min-width: 812px) {
  .platinum .p-simulation__icon {
    max-width: 50px;
    margin: 0 10px;
  }
}
.platinum .p-simulation__button {
  text-align: center;
  padding-top: 10px;
}
.platinum .p-simulation__button .c-basic-btn {
  background-image: none;
}

/*===========
本日の買取価格相場
============*/
.platinum .p-market-price__head {
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__head {
    margin-bottom: 40px;
  }
}
.platinum .p-market-price__ttl {
  border-left: 5px solid #0071BF;
  color: #0071BF;
  padding-left: 5px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__ttl {
    padding-left: 10px;
    border-left: 10px solid #0071BF;
  }
}
.platinum .p-market-price__ttl .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__ttl .big {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.platinum .p-market-price__ttl .small {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  padding-top: 5px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__ttl .small {
    font-size: 23px;
    font-size: 1.4375rem;
    display: inline-block;
    padding-top: 0;
  }
}
.platinum .p-market-price__time {
  margin-top: 10px;
  display: block;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_market-price-time.png) no-repeat left center;
  background-size: 14px 14px;
  padding-left: 20px;
  color: #E84728;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__time {
    background-size: 15px 15px;
    margin-top: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.platinum .p-market-price__sub-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #0071BF;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__sub-ttl {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
}
.platinum .p-market-price .p-ingot__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price .p-ingot__item {
    margin-bottom: 0;
  }
}
.platinum .p-market-price .p-ingot__item.platinum .p-ingot__ttl {
  background: #B5A874;
}
.platinum .p-market-price .p-ingot__item.silver .p-ingot__ttl {
  background: #BBBBBB;
}
.platinum .p-market-price .p-ingot__in {
  text-align: center;
}
.platinum .p-market-price .p-ingot__ttl {
  background: #988539;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price .p-ingot__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.platinum .p-market-price .p-ingot__price {
  background: #ffffff;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price .p-ingot__price {
    font-size: 32px;
    font-size: 2rem;
  }
}
.platinum .p-market-price__table {
  border-top: 1px solid #0071BF;
  border-left: 1px solid #0071BF;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.platinum .p-market-price__th, .platinum .p-market-price__td {
  border-bottom: 1px solid #0071BF;
  border-right: 1px solid #0071BF;
  padding: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__th, .platinum .p-market-price__td {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.platinum .p-market-price__th {
  color: #0071BF;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__th {
    width: 60%;
  }
}
.platinum .p-market-price__td {
  color: #E84728;
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .platinum .p-market-price__td {
    width: 40%;
  }
}
.platinum .p-market-price .gold .p-market-price__sub-ttl,
.platinum .p-market-price .gold .p-market-price__table,
.platinum .p-market-price .gold .p-market-price__th,
.platinum .p-market-price .gold .p-market-price__td {
  border-color: #988539;
}
.platinum .p-market-price .gold .p-market-price__th {
  color: #988539;
}
.platinum .p-market-price .silver .p-market-price__sub-ttl,
.platinum .p-market-price .silver .p-market-price__table,
.platinum .p-market-price .silver .p-market-price__th,
.platinum .p-market-price .silver .p-market-price__td {
  border-color: #BBBBBB;
}
.platinum .p-market-price .silver .p-market-price__th {
  color: #BBBBBB;
}

/*===========
マルカの金買取を 比べてください
===========*/
.platinum .p-comparison__bg {
  position: relative;
}
@media screen and (min-width: 812px) {
  .platinum .p-comparison__bg {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/photo_purchase_clerk.png) bottom right no-repeat;
    background-size: 40% auto;
  }
}
@media screen and (min-width: 1400px) {
  .platinum .p-comparison__bg {
    background-size: 570px auto;
  }
}
.platinum .p-comparison__bg::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_glay.svg);
  width: 110%;
  position: absolute;
  top: -1px;
  left: -5%;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .platinum .p-comparison__bg::before {
    top: -1%;
  }
}
.platinum .p-comparison__bg::after {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_bottom_w.svg);
  width: 110%;
  position: absolute;
  bottom: -3px;
  left: -5%;
  text-align: center;
  z-index: 50;
}
@media screen and (min-width: 576px) {
  .platinum .p-comparison__bg::after {
    bottom: -1%;
  }
}

.platinum .p-comparison .c-ttl-slash .c-ttl-slash__text {
  color: #ffffff;
}
.platinum .p-comparison .c-ttl-slash .c-ttl-slash__text::before, .platinum .p-comparison .c-ttl-slash .c-ttl-slash__text::after {
  background: #ffffff;
}
.platinum .p-comparison .c-basic-txt, .platinum .p-comparison .p-basic-list__item, .platinum .p-comparison .p-ol-list__item, .platinum .p-comparison .p-ol-list--sub__item, .platinum .p-comparison .p-ol-list--kana__item {
  color: #ffffff;
}
.platinum .p-comparison .p-comparison-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.platinum .p-comparison .p-comparison-icon__item {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .platinum .p-comparison .p-comparison-icon__item {
    width: 20%;
  }
}
@media screen and (min-width: 812px) {
  .platinum .p-comparison .p-comparison-icon__item:first-of-type, .platinum .p-comparison .p-comparison-icon__item:last-of-type {
    padding-top: 70px;
  }
}
@media screen and (min-width: 812px) {
  .platinum .p-comparison .p-comparison-icon__item:nth-child(2), .platinum .p-comparison .p-comparison-icon__item:nth-child(4) {
    padding-top: 20px;
  }
}
.platinum .p-comparison .p-comparison-icon__item.zero .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_zero.png);
}
.platinum .p-comparison .p-comparison-icon__item.up .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_up.png);
}
.platinum .p-comparison .p-comparison-icon__item.g .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_1g.png);
}
.platinum .p-comparison .p-comparison-icon__item.pc .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_pc.png);
}
.platinum .p-comparison .p-comparison-icon__item.sitting .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_sitting.png);
}
.platinum .p-comparison .p-comparison-icon .in {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 155px;
  height: 155px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/icon_zero.png) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 812px) {
  .platinum .p-comparison .p-comparison-icon .in {
    max-width: 180px;
    height: 180px;
  }
}
.platinum .p-comparison .p-comparison-icon__text {
  position: absolute;
  top: 60%;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: #0071BF;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .platinum .p-comparison .p-comparison-icon__text {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

/*===========
買取実績実例
===========*/
@media screen and (min-width: 812px) {
  .p-actual-results .p-section-textimg__contents {
    max-width: calc(100% - 190px);
    width: 100%;
  }
}
@media screen and (min-width: 812px) {
  .p-actual-results .p-section-textimg__img {
    max-width: 190px;
    width: 100%;
  }
}
.p-actual-results .c-basic-txt, .p-actual-results .p-basic-list__item, .p-actual-results .p-ol-list__item, .p-actual-results .p-ol-list--sub__item, .p-actual-results .p-ol-list--kana__item {
  margin-bottom: 15px;
}
.p-actual-results__item {
  margin-bottom: 15px;
}
.p-actual-results__item .in {
  max-width: 220px;
  margin: 0 auto;
}
.p-actual-results__photo {
  text-align: center;
  margin-bottom: 10px;
}
.p-actual-results__text {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-actual-results__price {
  color: #E84728;
}
.p-actual-results__price .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__price .big {
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-actual-results__price .small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__price .small {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.p-purchase-pch__bg {
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-purchase-pch__bg {
    padding-bottom: 0 !important;
  }
}
.p-purchase-pch__bg::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_glay.svg);
  width: 110%;
  position: absolute;
  top: -1px;
  left: -5%;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .p-purchase-pch__bg::before {
    top: -1%;
  }
}
.p-purchase-pch__bg::after {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_bottom_w.svg);
  width: 110%;
  position: absolute;
  bottom: -3px;
  left: -5%;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .p-purchase-pch__bg::after {
    bottom: -1%;
  }
}

.p-purchase-pch__list {
  border-top: 6px double #ffffff;
  border-bottom: 6px double #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__list {
    padding: 15px;
    margin-bottom: 30px;
  }
}
.p-purchase-pch__item {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__item {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__contents {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/platinum/photo_purchase_clerk02.png) bottom right no-repeat;
  }
}
.p-purchase-pch__text {
  position: relative;
  color: #ffffff;
  padding: 15px 0;
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__text {
    position: relative;
    color: #0071BF;
    width: 100%;
    height: 450px;
    max-width: 450px;
    background: #ffffff;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 70px;
  }
}
.p-purchase-pch__text::before {
  content: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 41.5px 0 41.5px 72px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: calc(50% - 41.5px);
  right: -40px;
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__text::before {
    content: '';
  }
}
.p-purchase-pch__text .small {
  width: 100%;
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__text .small {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.p-purchase-pch__text .big {
  width: 100%;
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (min-width: 812px) {
  .p-purchase-pch__text .big {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

/*===========
どうして業界最高クラスの 高価買取が出来るの？
===========*/
.p-point-about {
  border-top: 1px solid #E5E5E5;
  padding: 40px 0 0;
  margin: 40px auto 0;
}
@media screen and (min-width: 812px) {
  .p-point-about {
    padding: 70px 0 0;
    margin: 70px auto 0;
  }
}
.p-point-about:first-of-type {
  margin: 0 auto;
  padding: 0;
  border-top: none;
}
@media screen and (min-width: 812px) {
  .p-point-about:first-of-type {
    margin: 0 auto;
    padding: 0;
  }
}

/*===========
マルカだからできる プラチナ買取4つの約束
===========*/
.p-four-promises__item {
  border: 6px solid #CBEDF7;
  position: relative;
  background: #ffffff;
  padding: 60px 15px 15px;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-four-promises__item {
    padding: 70px 25px 25px;
  }
}
@media screen and (min-width: 812px) {
  .p-four-promises .c-ttl-square-brackets {
    margin-bottom: 20px;
  }
}
.p-four-promises__point {
  display: inline-block;
  border-radius: 0 0 100px 100px;
  background: #CBEDF7;
  width: 120px;
  height: 60px;
  text-align: center;
  padding-top: 5px;
  position: absolute;
  top: 0;
  left: calc(50% - 60px);
}
.p-four-promises__point .small, .p-four-promises__point .big {
  width: 100%;
  display: inline-block;
  color: #4BA0B8;
}
.p-four-promises__point .small {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .p-four-promises__point .small {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-four-promises__point .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .p-four-promises__point .big {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.silver .p-section.bg-main {
  background: #AAAAAA;
  margin-top: 0;
}
.silver .c-double-btn {
  background-color: #AAAAAA;
}
.silver .c-ttl-slash .c-ttl-slash__text {
  color: #AAAAAA;
}
.silver .c-ttl-slash .c-ttl-slash__text::before, .silver .c-ttl-slash .c-ttl-slash__text::after {
  background: #AAAAAA;
}
.silver .c-ttl-basic .sub,
.silver .slick-dots li.slick-active .js-slick__dots-item,
.silver .c-ttl-mini .in,
.silver .c-ttl-circle .text,
.silver .c-ttl-circle--side__num,
.silver .c-ttl-circle--side__text {
  color: #AAAAAA;
}
.silver .c-ttl-circle {
  border-color: #AAAAAA;
}

/*===========
メインイメージ
===========*/
.silver .p-main-img__in {
  text-align: center;
}
.silver .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.silver .p-root-title {
  text-align: center;
  background: #AAAAAA;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .silver .p-root-title {
    padding: 10px 0;
  }
}
.silver .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .silver .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.silver .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.silver .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .silver .p-root-menu__list {
    padding: 17px 0;
  }
}
.silver .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #AAAAAA;
}
@media screen and (min-width: 812px) {
  .silver .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #AAAAAA;
  }
}
.silver .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .silver .p-root-menu__item:last-of-type {
    border-right: 1px solid #AAAAAA;
  }
}
.silver .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .silver .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.silver .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.silver .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .silver .p-root-menu__link .name {
    display: block;
  }
}

/*===========
箱
===========*/
.silver .p-box-contents__ttl {
  background: #AAAAAA;
  padding: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .silver .p-box-contents__ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.silver .p-box-contents__in {
  border: 4px solid #AAAAAA;
  border-top: none;
}

/*bnr*/
.p-box-bnr img {
  width: 100%;
}

/*===========
今日売ったらいくら？シミュレーションしてみる
===========*/
.silver .p-simulation {
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation {
    padding: 20px;
  }
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
}
.silver .p-simulation__value {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__value {
    margin-bottom: 0;
    width: 100%;
    max-width: 260px;
  }
}
.silver .p-simulation__value .title {
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__value .title {
    font-size: 20px;
    font-size: 1.25rem;
    width: 100%;
    max-width: 260px;
  }
}
.silver .p-simulation__value .contents {
  position: relative;
  background: #EDEDED;
  padding: 10px;
  text-align: center;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__value .contents {
    margin-bottom: 0;
    max-width: 260px;
  }
}
.silver .p-simulation__value .contents input, .silver .p-simulation__value .contents select {
  width: 100%;
  max-width: 100%;
}
.silver .p-simulation__value .contents-text {
  padding: 5px;
}
.silver .p-simulation__value.total {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__value.total {
    font-size: 24px;
    font-size: 1.5rem;
    width: 100%;
  }
}
.silver .p-simulation__value.total .title {
  margin-right: 0;
}
.silver .p-simulation__value.total .contents {
  color: #E84728;
  margin-right: 0;
  padding: 10px;
  display: block;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__value.total .contents {
    padding: 20px;
  }
}
.silver .p-simulation .c-form {
  border: none;
}
.silver .p-simulation__icon {
  display: block;
  width: 100%;
  max-width: 20px;
  margin: 10px auto;
}
@media screen and (min-width: 812px) {
  .silver .p-simulation__icon {
    max-width: 50px;
    margin: 0 10px;
  }
}
.silver .p-simulation__button {
  text-align: center;
  padding-top: 10px;
}
.silver .p-simulation__button .c-basic-btn {
  background-image: none;
}

/*===========
ブランド金高価買取のススメ
============*/
.silver .p-market-price__head {
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__head {
    margin-bottom: 40px;
  }
}
.silver .p-market-price__ttl {
  border-left: 5px solid #AAAAAA;
  color: #AAAAAA;
  padding-left: 5px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__ttl {
    padding-left: 10px;
    border-left: 10px solid #AAAAAA;
  }
}
.silver .p-market-price__ttl .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__ttl .big {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
.silver .p-market-price__ttl .small {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  padding-top: 5px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__ttl .small {
    font-size: 23px;
    font-size: 1.4375rem;
    display: inline-block;
    padding-top: 0;
  }
}
.silver .p-market-price__time {
  margin-top: 10px;
  display: block;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/gold/icon_market-price-time.png) no-repeat left center;
  background-size: 14px 14px;
  padding-left: 20px;
  color: #E84728;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__time {
    background-size: 15px 15px;
    margin-top: 15px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.silver .p-market-price__sub-ttl {
  font-size: 18px;
  font-size: 1.125rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #AAAAAA;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__sub-ttl {
    font-size: 20px;
    font-size: 1.25rem;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
}
.silver .p-market-price .p-ingot__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price .p-ingot__item {
    margin-bottom: 0;
  }
}
.silver .p-market-price .p-ingot__item.platinum .p-ingot__ttl {
  background: #B5A874;
}
.silver .p-market-price .p-ingot__item.silver .p-ingot__ttl {
  background: #BBBBBB;
}
.silver .p-market-price .p-ingot__in {
  text-align: center;
}
.silver .p-market-price .p-ingot__ttl {
  background: #988539;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price .p-ingot__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.silver .p-market-price .p-ingot__price {
  background: #ffffff;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price .p-ingot__price {
    font-size: 32px;
    font-size: 2rem;
  }
}
.silver .p-market-price__table {
  border-top: 1px solid #AAAAAA;
  border-left: 1px solid #AAAAAA;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.silver .p-market-price__th, .silver .p-market-price__td {
  border-bottom: 1px solid #AAAAAA;
  border-right: 1px solid #AAAAAA;
  padding: 15px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__th, .silver .p-market-price__td {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.silver .p-market-price__th {
  color: #AAAAAA;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__th {
    width: 60%;
  }
}
.silver .p-market-price__td {
  color: #E84728;
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .silver .p-market-price__td {
    width: 40%;
  }
}
.silver .p-market-price .gold .p-market-price__sub-ttl,
.silver .p-market-price .gold .p-market-price__table,
.silver .p-market-price .gold .p-market-price__th,
.silver .p-market-price .gold .p-market-price__td {
  border-color: #988539;
}
.silver .p-market-price .gold .p-market-price__th {
  color: #988539;
}
.silver .p-market-price .silver .p-market-price__sub-ttl,
.silver .p-market-price .silver .p-market-price__table,
.silver .p-market-price .silver .p-market-price__th,
.silver .p-market-price .silver .p-market-price__td {
  border-color: #BBBBBB;
}
.silver .p-market-price .silver .p-market-price__th {
  color: #BBBBBB;
}

/*===========
宅配買取の注意事項
===========*/
.silver .p-delivery-care__contents {
  padding: 20px 10px;
  margin-bottom: 20px;
  background: #ffffff;
}
@media screen and (min-width: 812px) {
  .silver .p-delivery-care__contents {
    padding: 30px 20px 20px;
    margin-bottom: 50px;
  }
}

/*head========*/
.p-delivery-care-head {
  padding: 20px 10px;
  margin-bottom: 20px;
  background: #FFE1E1;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-head {
    padding: 30px 20px;
    margin-bottom: 50px;
  }
}
.p-delivery-care-head__ttl {
  margin-bottom: 20px;
  text-align: center;
  color: #E84728;
}
.p-delivery-care-head__ttl .main {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_exclamation_red.svg) no-repeat left center;
  background-size: 20px 20px;
  padding-left: 25px;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-head__ttl .main {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_exclamation_red.svg) no-repeat left center;
    background-size: 40px 40px;
    padding-left: 45px;
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.p-delivery-care-head__ttl .small {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-head__ttl .small {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*about============*/
.p-delivery-care-about {
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-about {
    margin-bottom: 40px;
  }
}
.p-delivery-care-about .ttl {
  margin-bottom: 15px;
  color: #4BA0B8;
}
.p-delivery-care-about .text {
  border-left: 2px solid #AAAAAA;
  padding-left: 10px;
  margin-left: 5px;
  margin-bottom: 20px;
}
.p-delivery-care-about .text .main {
  margin-bottom: 5px;
  color: #F6A716;
}

/*example========*/
.p-delivery-care-example__item {
  margin-bottom: 15px;
  border: 1px solid #AAAAAA;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-example__item {
    padding: 20px;
  }
}
.p-delivery-care-example__item .ttl {
  color: #4BA0B8;
  margin-bottom: 10px;
}

/*bottom========*/
.p-delivery-care-bottom {
  padding: 10px 10px;
  background: #FFE1E1;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-bottom {
    padding: 25px 20px;
  }
}
.p-delivery-care-bottom .text {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  color: #E84728;
}
@media screen and (min-width: 812px) {
  .p-delivery-care-bottom .text {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

/*===========
金の買取実績実例
===========*/
.p-actual-results__item {
  margin-bottom: 15px;
}
.p-actual-results__item .in {
  max-width: 220px;
  margin: 0 auto;
}
.p-actual-results__photo {
  text-align: center;
  margin-bottom: 10px;
}
.p-actual-results__text {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__text {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-actual-results__price {
  color: #E84728;
}
.p-actual-results__price .big {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__price .big {
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-actual-results__price .small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-actual-results__price .small {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.p-purchase {
  background: #F9F9F9;
}
.p-purchase__contents {
  background: #ffffff;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-purchase__contents {
    padding: 20px;
  }
}
.p-purchase__item {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-purchase__item {
    margin-bottom: 0;
  }
}
.p-purchase__text {
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-purchase__text {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/silver/photo_purchase_clerk.png) no-repeat bottom right;
    background-size: 30% auto;
    padding: 30px 30% 30px 30px;
  }
}
.p-purchase__link {
  margin-top: 15px;
}
.p-purchase__link a {
  display: inline-block;
}

/*===========
どうして業界最高クラスの 高価買取が出来るの？
===========*/
.p-point-about {
  border-top: 1px solid #E5E5E5;
  padding: 40px 0 0;
  margin: 40px auto 0;
}
@media screen and (min-width: 812px) {
  .p-point-about {
    padding: 70px 0 0;
    margin: 70px auto 0;
  }
}
.p-point-about:first-of-type {
  margin: 0 auto;
  padding: 0;
  border-top: none;
}
@media screen and (min-width: 812px) {
  .p-point-about:first-of-type {
    margin: 0 auto;
    padding: 0;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.jewel .p-section.bg-color01 {
  background: #F4F2EC;
}
.jewel .c-ttl-basic .sub,
.jewel .c-ttl-mini .in,
.jewel .slick-dots li.slick-active .js-slick__dots-item,
.jewel .font-color {
  color: #a99468;
}
.jewel .c-double-btn,
.jewel .c-ttl-mini .in::before,
.jewel .c-ttl-mini .in::after {
  background: #A99468;
}

/*===========
メインイメージ
===========*/
.jewel .p-main-img__in {
  text-align: center;
}
.jewel .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.jewel .p-root-title {
  text-align: center;
  background: #F4F2EC;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-title {
    padding: 0px;
    background: #A99468;
  }
}
.jewel .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #F4F2EC;
  border-bottom: 6px double #F4F2EC;
  border-left: 1px solid #F4F2EC;
  border-right: 1px solid #F4F2EC;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #A99468;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.jewel .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.jewel .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-menu__list {
    padding: 17px 0;
  }
}
.jewel .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.jewel .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.jewel .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.jewel .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.jewel .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.jewel .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .jewel .p-root-menu__link .name {
    display: block;
  }
}

/*===========
benefit 顧客さまの満足度
===========*/
.jewel .p-benefit-exponent {
  margin: 10px auto 10px;
  border-top: 1px solid #a99468;
  border-bottom: 1px solid #a99468;
  /*枠の装飾====*/
}
.jewel .p-benefit-exponent__in {
  margin: -30px 20px;
  border-left: 1px solid #a99468;
  border-right: 1px solid #a99468;
  position: relative;
}
.jewel .p-benefit-exponent__contents {
  margin: 10px;
  padding: 50px 10px;
  text-align: center;
  position: relative;
}
.jewel .p-benefit-exponent__ttl {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #a99468;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .jewel .p-benefit-exponent__ttl {
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 12px;
  }
}
.jewel .p-benefit-exponent__img {
  max-width: 80%;
  margin: 0 auto 10px;
}
@media screen and (min-width: 812px) {
  .jewel .p-benefit-exponent__img {
    max-width: 265px;
  }
}
.jewel .p-benefit-exponent__img svg {
  fill: #a99468;
  max-height: 79px;
}
.jewel .p-benefit-exponent__text {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 12px;
  font-size: 0.75rem;
}
.jewel .p-benefit-exponent__brow {
  position: absolute;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 812px) {
  .jewel .p-benefit-exponent__brow {
    width: 27px;
    height: 27px;
  }
}
.jewel .p-benefit-exponent__brow.left-down {
  left: 0;
  bottom: 30px;
}
.jewel .p-benefit-exponent__brow.left-top {
  left: 0;
  top: 30px;
}
.jewel .p-benefit-exponent__brow.right-down {
  right: 0;
  bottom: 30px;
}
.jewel .p-benefit-exponent__brow.right-top {
  right: 0;
  top: 30px;
}
.jewel .p-benefit-exponent__brow svg {
  fill: #a99468;
}

/*===========
高価買取実績例
===========*/
.jewel .p-case-example {
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example {
    margin-top: 50px;
  }
}
.jewel .p-case-example__item {
  padding: 0 0 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.jewel .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.jewel .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #a99468;
  border-bottom: 6px double #a99468;
  border-left: 1px solid #a99468;
  border-right: 1px solid #a99468;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.jewel .p-case-example__contents .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__contents .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.jewel .p-case-example__contents .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__contents .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 576px) {
  .jewel .p-case-example__contents .p-omparison-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.jewel .p-case-example__contents .p-omparison-company__item {
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__contents .p-omparison-company__item {
    max-width: 230px;
    margin-bottom: 0;
  }
}
.jewel .p-case-example__contents .p-omparison-company__item .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__contents .p-omparison-company__item .company {
    margin-bottom: 15px;
  }
}
.jewel .p-case-example__contents .p-omparison-company__item .company-name {
  border: 1px solid #000000;
  padding: 10px 5px;
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
}
.jewel .p-case-example__contents .p-omparison-company__item .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.jewel .p-case-example__contents .p-omparison-company__item .company-pay__count {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: left;
}
.jewel .p-case-example__contents .p-omparison-company__item .company-pay__count:first-of-type {
  margin-top: 0;
}
.jewel .p-case-example__contents .p-omparison-company__item .company-pay__count .name {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100px;
}
.jewel .p-case-example__contents .p-omparison-company__item .company-pay__count .pay {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  width: calc(100% - 100px);
}
.jewel .p-case-example__contents .p-omparison-company__item .company-pay__count.total {
  margin: 15px auto 0;
  border-top: 1px solid #000000;
  padding-top: 15px;
}
.jewel .p-case-example__contents .p-omparison-company__item.maruka {
  margin-bottom: 0;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__contents .p-omparison-company__item.maruka {
    max-width: 260px;
  }
}
.jewel .p-case-example__contents .p-omparison-company__item.maruka .company-name {
  background: #a99468;
  border-color: #a99468;
  color: #ffffff;
}
.jewel .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count {
  color: #a99468;
}
.jewel .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count.total {
  border-top-color: #a99468;
}
.jewel .p-case-example__goods {
  position: relative;
}
.jewel .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.jewel .p-case-example__goods .goods-omparison {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #a99468;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-top: 70px;
}
.jewel .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.jewel .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.jewel .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .jewel .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.jewel .p-points__item {
  margin-bottom: 15px;
}
.jewel .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .jewel .p-points__in {
    padding: 40px 10px;
  }
}
.jewel .p-points__ttl {
  color: #a99468;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .jewel .p-points__ttl {
    margin-bottom: 20px;
  }
}
.jewel .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.jewel .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.jewel .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .jewel .p-points__img {
    margin: 0 auto 20px;
  }
}
.jewel .p-points__point {
  text-align: center;
  color: #a99468;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .jewel .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.jewel .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .jewel .p-points__text {
    max-width: 250px;
  }
}

/*===========
こんな宝飾品も諦めないで！マルカなら買取可能です。
===========*/
.jewel .p-points .p-benefit-purchase .in {
  background: #E8E3D9;
}
.jewel .p-points .p-benefit-purchase__txt {
  color: #000000;
}

/*===========
どうして業界最高クラスの高価買取が出来るの？
===========*/
.jewel .p-benefit02 .c-ttl-circle--side__num {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #A99468;
}
.jewel .p-benefit02 .c-ttl-circle--side__text {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
}

/*===========
メインイメージ
===========*/
.jewel-item .p-main-img__in {
  text-align: center;
}
.jewel-item .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.jewel-item .p-root-title {
  text-align: center;
  border-top: 2px solid #A99468;
  background: #4BA0B8;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-title {
    padding: 10px 0;
  }
}
.jewel-item .p-root-title .in {
  color: #ffffff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.jewel-item .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.jewel-item .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-menu__list {
    padding: 17px 0;
  }
}
.jewel-item .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.jewel-item .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-menu__item:last-of-type {
    border-right: 1x solid #E5E5E5;
  }
}
.jewel-item .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.jewel-item .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.jewel-item .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-root-menu__link .name {
    display: block;
  }
}

/*===========
高価買取実績例
===========*/
.jewel-item .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.jewel-item .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.jewel-item .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #4BA0B8;
  border-bottom: 6px double #4BA0B8;
  border-left: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.jewel-item .p-case-example__contents .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__contents .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.jewel-item .p-case-example__contents .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__contents .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 1000px) {
  .jewel-item .p-case-example__contents .p-omparison-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.jewel-item .p-case-example__contents .p-omparison-company__item {
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1000px) {
  .jewel-item .p-case-example__contents .p-omparison-company__item {
    width: 100%;
    margin-bottom: 0;
  }
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
@media screen and (min-width: 1000px) {
  .jewel-item .p-case-example__contents .p-omparison-company__item .company {
    margin-bottom: 15px;
  }
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-name {
  border: 1px solid #000000;
  padding: 10px 5px;
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-pay__count {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: left;
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-pay__count:first-of-type {
  margin-top: 0;
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-pay__count .name {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100px;
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-pay__count .pay {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  width: calc(100% - 100px);
  text-align: right;
}
.jewel-item .p-case-example__contents .p-omparison-company__item .company-pay__count.total {
  margin: 15px auto 0;
  border-top: 1px solid #000000;
  padding-top: 15px;
}
.jewel-item .p-case-example__contents .p-omparison-company__item.maruka {
  margin-bottom: 0;
}
@media screen and (min-width: 1000px) {
  .jewel-item .p-case-example__contents .p-omparison-company__item.maruka {
    max-width: 260px;
  }
}
.jewel-item .p-case-example__contents .p-omparison-company__item.maruka .company-name {
  background: #4BA0B8;
  border-color: #4BA0B8;
  color: #ffffff;
}
.jewel-item .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count {
  color: #4BA0B8;
}
.jewel-item .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count.total {
  border-top-color: #4BA0B8;
}
.jewel-item .p-case-example__goods {
  position: relative;
}
.jewel-item .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.jewel-item .p-case-example__goods .goods-omparison {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #4BA0B8;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-top: 70px;
}
.jewel-item .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.jewel-item .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.jewel-item .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
benefit 顧客さまの満足度
===========*/
.jewel-item .p-benefit-exponent {
  margin: 10px auto 10px;
  border-top: 1px solid #4BA0B8;
  border-bottom: 1px solid #4BA0B8;
  /*枠の装飾====*/
}
.jewel-item .p-benefit-exponent__in {
  margin: -30px 20px;
  border-left: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  position: relative;
}
.jewel-item .p-benefit-exponent__contents {
  margin: 10px;
  padding: 50px 10px;
  text-align: center;
  position: relative;
}
.jewel-item .p-benefit-exponent__ttl {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #4BA0B8;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-benefit-exponent__ttl {
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 12px;
  }
}
.jewel-item .p-benefit-exponent__img {
  max-width: 80%;
  margin: 0 auto 10px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-benefit-exponent__img {
    max-width: 265px;
  }
}
.jewel-item .p-benefit-exponent__img svg {
  fill: #4BA0B8;
  max-height: 79px;
}
.jewel-item .p-benefit-exponent__text {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 12px;
  font-size: 0.75rem;
}
.jewel-item .p-benefit-exponent__brow {
  position: absolute;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-benefit-exponent__brow {
    width: 27px;
    height: 27px;
  }
}
.jewel-item .p-benefit-exponent__brow.left-down {
  left: 0;
  bottom: 30px;
}
.jewel-item .p-benefit-exponent__brow.left-top {
  left: 0;
  top: 30px;
}
.jewel-item .p-benefit-exponent__brow.right-down {
  right: 0;
  bottom: 30px;
}
.jewel-item .p-benefit-exponent__brow.right-top {
  right: 0;
  top: 30px;
}
.jewel-item .p-benefit-exponent__brow svg {
  fill: #4BA0B8;
}

/*===========
今月の強化買取アイテム
===========*/
/*===========
宝石買取リスト p-jewel-itemlist
===========*/
.p-jewel-itemlist__contents {
  padding: 0;
}
@media screen and (min-width: 812px) {
  .p-jewel-itemlist__contents {
    padding: 10px;
  }
}
.p-jewel-itemlist__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 290px;
  overflow-y: scroll;
}
@media screen and (min-width: 812px) {
  .p-jewel-itemlist__list {
    height: 370px;
  }
}
.p-jewel-itemlist__item {
  padding: 5px;
  max-width: 50%;
  width: 100%;
  min-height: 200px;
}
@media screen and (min-width: 812px) {
  .p-jewel-itemlist__item {
    max-width: 16.6%;
  }
}
.p-jewel-itemlist__link {
  display: block;
  border: 2px solid #E2E2E2;
  height: 100%;
  position: relative;
  padding-bottom: 34px;
}
.p-jewel-itemlist__link:hover .p-column-list__name {
  color: #D14481;
}
.p-jewel-itemlist__photo {
  height: 150px;
  overflow: hidden;
  text-align: center;
}
.p-jewel-itemlist__photo img {
  display: inline-block;
  vertical-align: middle;
}
.p-jewel-itemlist__name {
  text-align: center;
  color: #000000;
  padding: 10px;
  line-height: 1.3;
  position: relative;
  word-wrap: break-word;
}
.p-jewel-itemlist__more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #AAAAAA;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}

/*===========
宝石買取リスト p-jewel-itemlist
===========*/
.p-jewel-list__item {
  margin-bottom: 10px;
  text-align: center;
}

/*===========
宝石買取リスト p-jewel-itemlist
===========*/
.jewel-item .p-message {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-message {
    background-size: contain;
  }
}
.jewel-item .p-message__in {
  padding: 20px 15px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-message__in {
    padding: 50px;
  }
}
.jewel-item .p-message__contents .contents__in {
  border: 1px solid #CCCCCC;
  background: #F18F01;
  position: relative;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-message__contents .contents__in {
    padding: 50px;
  }
}
.jewel-item .p-message__contents .contents__in::before {
  content: '';
  display: block;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 4px solid #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.jewel-item .p-message__contents .contents__in .c-ttl-serif {
  margin-bottom: 10px;
}

.jewel-item .p-message.col2 {
  background: none;
}
@media screen and (max-width: 811px) {
  .jewel-item .p-message.col2 .l-container, .jewel-item .p-message.col2 .l-main--col2, .jewel-item .p-message.col2 .l-main--col3 {
    padding: 0;
  }
}
.jewel-item .p-message.col2 .p-message__in {
  padding: 0;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-message.col2 .p-message__in {
    padding: 0;
    margin-right: -200px;
  }
}
.jewel-item .p-message.col2 .p-message__contents {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 20px 15px;
}
@media screen and (min-width: 812px) {
  .jewel-item .p-message.col2 .p-message__contents {
    background-size: contain;
    padding: 100px 200px 0 0;
    background-size: 770px auto;
    background-position: right top;
  }
}
@media screen and (min-width: 812px) {
  .jewel-item .p-message.col2 .p-message__contents .contents__in {
    max-width: 700px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.tableware .p-section.bg-color01 {
  background: #F1F1F1;
}
.tableware .c-ttl-basic .sub,
.tableware .c-ttl-mini .in,
.tableware .slick-dots li.slick-active .js-slick__dots-item,
.tableware .font-color {
  color: #8ed1f0;
}
.tableware .c-double-btn,
.tableware .c-ttl-mini .in::before,
.tableware .c-ttl-mini .in::after,
.tableware .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #8ed1f0;
}
.tableware .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #8ed1f0 transparent transparent transparent;
}

/*===========
メインイメージ
===========*/
.tableware .p-main-img__in {
  text-align: center;
}
.tableware .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.tableware .p-root-title {
  border-top: 1px solid #e5e5e5;
  text-align: center;
  background: #8ed1f0;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-title {
    padding: 10px 0;
  }
}
.tableware .p-root-title .in {
  color: #000000;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.tableware .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.tableware .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-menu__list {
    padding: 17px 0;
  }
}
.tableware .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-menu__item {
    width: 25%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.tableware .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-menu__item:first-of-type {
    display: block;
  }
}
.tableware .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.tableware .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.tableware .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.tableware .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.tableware .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .tableware .p-root-menu__link .name {
    display: block;
  }
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.tableware .p-points__item {
  margin-bottom: 15px;
}
.tableware .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tableware .p-points__in {
    padding: 40px 10px;
  }
}
.tableware .p-points__ttl {
  color: #8ed1f0;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tableware .p-points__ttl {
    margin-bottom: 20px;
  }
}
.tableware .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tableware .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tableware .p-points__img {
  max-width: 380px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .tableware .p-points__img {
    margin: 0 auto 20px;
  }
}
.tableware .p-points__point {
  text-align: center;
  color: #8ed1f0;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .tableware .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tableware .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.kimono .p-section.bg-color01 {
  background: #F1F1F1;
}
.kimono .p-section.bg-color02 {
  background: #F8E8E7;
}
.kimono .c-ttl-basic .sub,
.kimono .c-ttl-mini .in,
.kimono .c-ttl-mini .in::before,
.kimono .c-ttl-mini .in::after,
.kimono .slick-dots li.slick-active .js-slick__dots-item,
.kimono .font-color {
  color: #9b813a;
}
.kimono .c-double-btn,
.kimono .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #B33430;
}
.kimono .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #8ed1f0 transparent transparent transparent;
}

/*===========
メインイメージ
===========*/
.kimono .p-main-img__in {
  text-align: center;
}
.kimono .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.kimono .p-root-title {
  border-top: 1px solid #9B813A;
  text-align: center;
  background: #B33430;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-title {
    padding: 10px 0;
  }
}
.kimono .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.kimono .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.kimono .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-menu__list {
    padding: 17px 0;
  }
}
.kimono .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.kimono .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.kimono .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.kimono .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.kimono .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.kimono .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .kimono .p-root-menu__link .name {
    display: block;
  }
}

/*金額の比較==============*/
.kimono .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .kimono .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.kimono .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .kimono .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.kimono .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .kimono .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.kimono .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .kimono .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.kimono .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #B33430;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #B33430;
}
.kimono .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.kimono .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.kimono .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.kimono .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .kimono .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.kimono .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #B33430;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .kimono .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.kimono .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .kimono .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.kimono .p-ranking__list {
  margin-top: 20px;
}
.kimono .p-ranking__item {
  background: #ffffff;
  border: 1px solid #cccccc;
  height: auto;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item {
    padding: 20px;
    height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.kimono .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.kimono .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #9B813A;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.kimono .p-ranking__no .text {
  display: inline-block;
  color: #9B813A;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.kimono .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .kimono .p-ranking__img {
    height: 130px;
  }
}
.kimono .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .kimono .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.kimono .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .kimono .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.kimono .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .kimono .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
着物の買取アイテム一覧 p-kimono-itemlist
===========*/
.p-kimono-itemlist__contents {
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-top: 20px;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-kimono-itemlist__contents {
    padding: 35px;
  }
}
.p-kimono-itemlist__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-kimono-itemlist__item {
  padding: 5px;
  max-width: 33.3%;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-kimono-itemlist__item {
    max-width: 25%;
  }
}
.p-kimono-itemlist__link {
  display: block;
  height: 100%;
  position: relative;
  padding-bottom: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-kimono-itemlist__link {
    padding-bottom: 20px;
  }
}
.p-kimono-itemlist__link:hover .p-column-list__name {
  color: #D14481;
}
.p-kimono-itemlist__photo {
  overflow: hidden;
  text-align: center;
}
.p-kimono-itemlist__photo img {
  display: inline-block;
  vertical-align: middle;
}
.p-kimono-itemlist__name {
  display: inline-block;
  text-align: center;
  color: #000000;
  padding: 10px 0;
  line-height: 1.3;
  position: relative;
  word-wrap: break-word;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .p-kimono-itemlist__name {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
着物の買取アイテム一覧 補足 p-kimono-supplement
===========*/
.p-kimono-supplement__item {
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .p-kimono-supplement__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-kimono-supplement__ttl {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.p-kimono-supplement__ttl::before {
  display: block;
  content: '';
  width: 100px;
  height: 100px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #B33430;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
.p-kimono-supplement__ttl::after {
  display: block;
  content: '';
  width: 90px;
  height: 90px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #ffffff;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}
.p-kimono-supplement__ttl .in {
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  color: #ffffff;
}
.p-kimono-supplement__ttl.type2::before {
  background: #9B813A;
}
.p-kimono-supplement__txt {
  margin: 10px auto 0;
}
@media screen and (min-width: 812px) {
  .p-kimono-supplement__txt {
    margin-left: 10px;
    width: calc(100% - 200px);
  }
}
.p-kimono-supplement__box .c-ttl-simple {
  color: #B33430;
}
.p-kimono-supplement__box .c-basic-txt, .p-kimono-supplement__box .p-basic-list__item, .p-kimono-supplement__box .p-ol-list__item, .p-kimono-supplement__box .p-ol-list--sub__item, .p-kimono-supplement__box .p-ol-list--kana__item {
  border-top: 6px double #B33430;
  border-bottom: 6px double #B33430;
  border-left: 1px solid #B33430;
  border-right: 1px solid #B33430;
  padding: 15px;
}

/*===========
着物高価買取ならマルカ
===========*/
.kimono .p-benefit-brandlist__contents .no .icon {
  fill: #9b813a;
  opacity: 0.3;
}
.kimono .p-benefit-brandlist__contents .txt {
  color: #B33430;
}

/*===========
着物高価買取ならマルカ
===========*/
.kimono .p-benefit-purchase__contents {
  border-top: 6px double #B33430;
  border-bottom: 6px double #B33430;
  border-left: 1px solid #B33430;
  border-right: 1px solid #B33430;
  padding: 15px;
  margin-top: 20px;
}
.kimono .p-benefit-purchase__photo img {
  max-width: 200px;
}
.kimono .p-benefit-purchase__txt {
  background: #000000;
}

/*===========
出張査定 p-itemlist-bulgeout
===========*/
.kimono .p-itemlist-point {
  border: 1px solid #9B813A;
  padding: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-point {
    padding: 20px;
  }
}
.kimono .p-itemlist-point__contents {
  padding-top: 20px;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-point__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.kimono .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
  }
}
.kimono .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.kimono .p-itemlist-point__item .line {
  color: #B33430;
  text-decoration: underline;
}
.kimono .p-itemlist-point .c-ttl-simple {
  color: #9B813A;
}
.kimono .p-itemlist-pickup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-pickup {
    padding-left: 20px;
  }
}
.kimono .p-itemlist-pickup__item {
  position: relative;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.kimono .p-itemlist-pickup__item::before {
  display: block;
  content: '';
  width: 100px;
  height: 100px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #9B813A;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
.kimono .p-itemlist-pickup__item::after {
  display: block;
  content: '';
  width: 90px;
  height: 90px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #ffffff;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}
.kimono .p-itemlist-pickup__item .in {
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}
.kimono .p-itemlist-pickup__item.on::before {
  border: 1px solid #9B813A;
  background: #ffffff;
}
.kimono .p-itemlist-pickup__item.on::after {
  border: 1px solid #9B813A;
}
.kimono .p-itemlist-pickup__item.on .in {
  color: #9B813A;
}
.kimono .p-itemlist-pickup__item.off .in {
  color: #ffffff;
}

/*===========
出張見積の流れ p-itemlist-root
===========*/
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-root__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.kimono .p-itemlist-root__item {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-root__item {
    width: 25%;
    margin-bottom: 0;
  }
}
.kimono .p-itemlist-root__arrow {
  margin: 10px auto 5px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 21px 0 21px;
  border-color: #94753D transparent transparent transparent;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-root__arrow {
    position: absolute;
    top: calc(50% - 20px);
    right: -10px;
    border-width: 21px 0 21px 20px;
    border-color: transparent transparent transparent #94753D;
  }
}
.kimono .p-itemlist-root__no {
  margin-bottom: 10px;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.kimono .p-itemlist-root__icon {
  margin: 0 auto;
  text-align: center;
  background: #F3E3C7;
  max-width: 180px;
  min-height: 180px;
  width: 100%;
  height: 180px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.kimono .p-itemlist-root__svg svg {
  width: 50px;
  height: 50px;
  fill: #9B813A;
}
.kimono .p-itemlist-root__txt {
  margin-top: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #9B813A;
}
.kimono .p-itemlist-root__ttl {
  margin-top: 20px;
  font-size: 18px;
  font-size: 1.125rem;
}

/*===========
着物の価値を知りたいと思っている方
===========*/
.kimono .p-itemlist-recommend__box {
  padding: 15px;
  background: #ffffff;
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-recommend__box {
    padding: 35px;
  }
}
.kimono .p-itemlist-recommend .c-ttl-simple {
  color: #B33430;
}
.kimono .p-itemlist-recommend .p-itemlist-point__list {
  margin-bottom: 25px;
}
.kimono .p-itemlist-recommend .p-section-textimg__contents {
  border-top: 6px double #B33430;
  border-bottom: 6px double #B33430;
  border-left: 1px solid #B33430;
  border-right: 1px solid #B33430;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .kimono .p-itemlist-recommend .p-section-textimg__contents {
    padding: 25px;
  }
}
.kimono .p-itemlist-recommend__ttl {
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}
.kimono .p-itemlist-recommend__ttl .in {
  display: block;
  color: #B33430;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: bold;
}
.kimono .p-itemlist-recommend .p-itemlist-recommend__box.type2 .c-ttl-simple,
.kimono .p-itemlist-recommend .p-itemlist-recommend__box.type2 .p-itemlist-point__item .line,
.kimono .p-itemlist-recommend .p-itemlist-recommend__box.type2 .p-itemlist-recommend__ttl .in {
  color: #9B813A;
}
.kimono .p-itemlist-recommend .p-itemlist-recommend__box.type2 .p-section-textimg__contents {
  border-color: #9b813a;
}

.antique-top .c-ttl-basic .sub,
.antique-top .c-ttl-simple {
  color: #543d00;
}

.antique-top .c-double-btn {
  background-color: #1F4900;
}

.antique-top.p-section.bg-color01 {
  background: #D0D5CD;
}

/*===========
メインイメージ
===========*/
.antique-top .p-main-img__in {
  text-align: center;
}
.antique-top .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.antique-top .p-root-title {
  text-align: center;
  border-top: 1px solid #6A5621;
  background: #1F4900;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-title {
    padding: 10px 0;
  }
}
.antique-top .p-root-title .in {
  color: #ffffff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.antique-top .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.antique-top .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-menu__list {
    padding: 17px 0;
  }
}
.antique-top .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.antique-top .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-menu__item:last-of-type {
    border-right: 1x solid #E5E5E5;
  }
}
.antique-top .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-menu__link {
    font-size: 16px;
    font-size: 1rem;
    background: none;
    padding: 10px;
  }
}
.antique-top .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.antique-top .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .antique-top .p-root-menu__link .name {
    display: block;
  }
}

/*===========
高価買取ランキング p-ranking-col1
===========*/
.antique-top .p-ranking-col1__item {
  margin-bottom: 35px;
  padding: 35px 20px 20px;
  border: 1px solid #cccccc;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__item {
    margin-bottom: 50px;
    padding: 40px;
  }
}
.antique-top .p-ranking-col1__no {
  display: block;
  position: absolute;
  top: -20px;
  left: calc(50% - 20px);
  background: #1F4900;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-size: 1.5rem;
  color: #ffffff;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-top: 7px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.antique-top .p-ranking-col1__photo {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__photo {
    width: 40%;
    margin-bottom: 0;
    padding-right: 20px;
  }
}
.antique-top .p-ranking-col1__contents {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__contents {
    width: 60%;
    text-align: left;
  }
}
.antique-top .p-ranking-col1__ttl {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__ttl {
    text-align: left;
  }
}
.antique-top .p-ranking-col1__ttl .main {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__ttl .main {
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
}
.antique-top .p-ranking-col1__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__ttl .sub {
    display: inline-block;
    vertical-align: middle;
    margin-left: 15px;
  }
}
.antique-top .p-ranking-col1__btn {
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__btn {
    text-align: left;
  }
}
.antique-top .p-ranking-col1__btn .c-double-btn {
  background-color: #543D00;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  max-width: 450px;
}
.antique-top .p-ranking-col1__btn .c-double-btn .open {
  display: none;
}
@media screen and (min-width: 812px) {
  .antique-top .p-ranking-col1__btn .c-double-btn .open {
    display: inline-block;
  }
}

/*===========
骨董品買取リスト p-antique-toplist
===========*/
.p-antique-toplist__contents {
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-top: 20px;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-antique-toplist__contents {
    padding: 35px;
  }
}
.p-antique-toplist__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-antique-toplist__item {
  padding: 5px;
  max-width: 33.3%;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-antique-toplist__item {
    max-width: 25%;
  }
}
.p-antique-toplist__link {
  display: block;
  height: 100%;
  position: relative;
  padding-bottom: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-antique-toplist__link {
    padding-bottom: 20px;
  }
}
.p-antique-toplist__link:hover .p-column-list__name {
  color: #D14481;
}
.p-antique-toplist__photo {
  overflow: hidden;
  text-align: center;
}
.p-antique-toplist__photo img {
  display: inline-block;
  vertical-align: middle;
}
.p-antique-toplist__name {
  display: inline-block;
  text-align: center;
  color: #000000;
  padding: 10px 0;
  line-height: 1.3;
  position: relative;
  word-wrap: break-word;
  font-size: 12px;
  font-size: 0.75rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_gray.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
}
@media screen and (min-width: 812px) {
  .p-antique-toplist__name {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
美術品高価買取ならマルカ
===========*/
.antique-top .p-benefit-brandlist .p-benefit-brandlist__contents .no .icon {
  opacity: 0.2;
  fill: #1F4900;
}

/*===========
出張査定 p-itemlist-bulgeout
===========*/
.antique-top .p-itemlist-point {
  border: 1px solid #543d00;
  padding: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-point {
    padding: 20px;
  }
}
.antique-top .p-itemlist-point__contents {
  padding-top: 20px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-point__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.antique-top .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
  }
}
.antique-top .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.antique-top .p-itemlist-point__item .line {
  color: #1F4900;
  text-decoration: underline;
}
.antique-top .p-itemlist-pickup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-pickup {
    padding-left: 20px;
  }
}
.antique-top .p-itemlist-pickup__item {
  position: relative;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.antique-top .p-itemlist-pickup__item::before {
  display: block;
  content: '';
  width: 100px;
  height: 100px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #543d00;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
.antique-top .p-itemlist-pickup__item::after {
  display: block;
  content: '';
  width: 90px;
  height: 90px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #ffffff;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}
.antique-top .p-itemlist-pickup__item .in {
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}
.antique-top .p-itemlist-pickup__item.on::before {
  border: 1px solid #543d00;
  background: #ffffff;
}
.antique-top .p-itemlist-pickup__item.on::after {
  border: 1px solid #543d00;
}
.antique-top .p-itemlist-pickup__item.on .in {
  color: #543d00;
}
.antique-top .p-itemlist-pickup__item.off .in {
  color: #ffffff;
}

/*===========
出張見積の流れ p-itemlist-root
===========*/
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-root__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.antique-top .p-itemlist-root__item {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-root__item {
    width: 25%;
    margin-bottom: 0;
  }
}
.antique-top .p-itemlist-root__arrow {
  margin: 10px auto 5px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 21px 0 21px;
  border-color: #543D00 transparent transparent transparent;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-root__arrow {
    position: absolute;
    top: calc(50% - 20px);
    right: -10px;
    border-width: 21px 0 21px 20px;
    border-color: transparent transparent transparent #543D00;
  }
}
.antique-top .p-itemlist-root__no {
  margin-bottom: 10px;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.antique-top .p-itemlist-root__icon {
  margin: 0 auto;
  text-align: center;
  background: #F3E3C7;
  max-width: 180px;
  min-height: 180px;
  width: 100%;
  height: 180px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.antique-top .p-itemlist-root__svg svg {
  width: 50px;
  height: 50px;
  fill: #543D00;
}
.antique-top .p-itemlist-root__txt {
  margin-top: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #543D00;
}
.antique-top .p-itemlist-root__ttl {
  margin-top: 20px;
  font-size: 18px;
  font-size: 1.125rem;
}

/*===========
無料出張対応エリア p-itemlist-area
===========*/
.antique-top .p-itemlist-area {
  display: none !important;
}
.antique-top .p-itemlist-area__list {
  margin-top: 30px;
}
.antique-top .p-itemlist-area__item {
  margin-bottom: 15px;
  text-align: center;
}
.antique-top .p-itemlist-area__item .c-double-btn {
  background-color: #543D00;
}

.antique .p-itemlist-area {
  display: none !important;
}

/*===========
こんな方は是非マルカへ p-itemlist-recommend
===========*/
.antique-top .p-itemlist-recommend {
  background: #D0D5CD;
}
.antique-top .p-itemlist-recommend__box {
  padding: 15px;
  background: #ffffff;
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-recommend__box {
    padding: 35px;
  }
}
.antique-top .p-itemlist-recommend .c-ttl-simple {
  color: #1F4900;
}
.antique-top .p-itemlist-recommend .p-itemlist-point__list {
  margin-bottom: 25px;
}
.antique-top .p-itemlist-recommend .p-section-textimg__contents {
  border-top: 6px double #1F4900;
  border-bottom: 6px double #1F4900;
  border-left: 1px solid #1F4900;
  border-right: 1px solid #1F4900;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-itemlist-recommend .p-section-textimg__contents {
    padding: 25px;
  }
}
.antique-top .p-itemlist-recommend__ttl {
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}
.antique-top .p-itemlist-recommend__ttl .in {
  display: block;
  color: #1F4900;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: bold;
}

/*===========
買取アイテム例 p-benefit-item-list
===========*/
.antique-top .p-benefit-item-list {
  padding: 15px;
  margin: 15px auto;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.antique-top .p-benefit-item-list__item {
  text-align: center;
  width: 50%;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .antique-top .p-benefit-item-list__item {
    width: 20%;
  }
}
.antique-top .p-benefit-item-list__text {
  text-align: center;
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 10px;
}

/*===========
メインイメージ
===========*/
.antique-item .p-main-img__in {
  text-align: center;
}
.antique-item .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.antique-item .p-root-title {
  text-align: center;
  background: #4BA0B8;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-title {
    padding: 10px 0;
  }
}
.antique-item .p-root-title .in {
  color: #ffffff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.antique-item .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.antique-item .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-menu__list {
    padding: 17px 0;
  }
}
.antique-item .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.antique-item .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-menu__item:last-of-type {
    border-right: 1x solid #E5E5E5;
  }
}
.antique-item .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.antique-item .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.antique-item .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .antique-item .p-root-menu__link .name {
    display: block;
  }
}

/*===========
登録が必要です p-antique-register
===========*/
.c-antique-register {
  padding: 15px;
  background: #ffffff;
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .c-antique-register {
    padding: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-antique-register.off .c-antique-register__ttl {
  background: #00003F;
}
.c-antique-register.off .c-antique-register__txt .in {
  color: #00003F;
}
.c-antique-register__ttl {
  padding: 15px;
  text-align: center;
  background: #680000;
  margin-bottom: 15px;
  color: #ffffff;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .c-antique-register__ttl {
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    max-width: 30%;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.c-antique-register__contents {
  width: 100%;
}
@media screen and (min-width: 812px) {
  .c-antique-register__contents {
    max-width: 70%;
    padding-left: 20px;
  }
}
.c-antique-register__box {
  text-align: center;
  margin-bottom: 15px;
}
.c-antique-register__img {
  text-align: center;
  margin-bottom: 10px;
}
.c-antique-register__txt {
  text-align: center;
}

/*===========
骨董品買取リスト p-antique-itemlist
===========*/
.p-antique-itemlist__contents {
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-top: 20px;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-antique-itemlist__contents {
    padding: 35px;
  }
}
.p-antique-itemlist__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-antique-itemlist__item {
  padding: 5px;
  max-width: 33.3%;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-antique-itemlist__item {
    max-width: 25%;
  }
}
.p-antique-itemlist__link {
  display: block;
  height: 100%;
  position: relative;
  padding-bottom: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-antique-itemlist__link {
    padding-bottom: 20px;
  }
}
.p-antique-itemlist__link:hover .p-column-list__name {
  color: #D14481;
}
.p-antique-itemlist__photo {
  overflow: hidden;
  text-align: center;
}
.p-antique-itemlist__photo img {
  display: inline-block;
  vertical-align: middle;
}
.p-antique-itemlist__name {
  display: inline-block;
  text-align: center;
  color: #000000;
  padding: 10px 0;
  line-height: 1.3;
  position: relative;
  word-wrap: break-word;
  font-size: 12px;
  font-size: 0.75rem;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_gray.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
}
@media screen and (min-width: 812px) {
  .p-antique-itemlist__name {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
美術品高価買取ならマルカ
===========*/
.antique-item .p-benefit-brandlist .p-benefit-brandlist__contents .no .icon {
  opacity: 0.2;
  fill: #4BA0B8;
}

/*===========
出張査定 p-itemlist-bulgeout
===========*/
.antique-item .p-itemlist-point {
  border: 1px solid #4BA0B8;
  padding: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-point {
    padding: 20px;
  }
}
.antique-item .p-itemlist-point__contents {
  padding-top: 20px;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-point__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.antique-item .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
  }
}
.antique-item .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.antique-item .p-itemlist-point__item .line {
  color: #4BA0B8;
  text-decoration: underline;
}
.antique-item .p-itemlist-pickup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-pickup {
    padding-left: 20px;
  }
}
.antique-item .p-itemlist-pickup__item {
  position: relative;
  width: 150px;
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.antique-item .p-itemlist-pickup__item::before {
  display: block;
  content: '';
  width: 100px;
  height: 100px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #4BA0B8;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
.antique-item .p-itemlist-pickup__item::after {
  display: block;
  content: '';
  width: 90px;
  height: 90px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #ffffff;
  position: absolute;
  top: calc(50% - 45px);
  left: calc(50% - 45px);
}
.antique-item .p-itemlist-pickup__item .in {
  position: relative;
  z-index: 5;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}
.antique-item .p-itemlist-pickup__item.on::before {
  border: 1px solid #4BA0B8;
  background: #ffffff;
}
.antique-item .p-itemlist-pickup__item.on::after {
  border: 1px solid #4BA0B8;
}
.antique-item .p-itemlist-pickup__item.on .in {
  color: #4BA0B8;
}
.antique-item .p-itemlist-pickup__item.off .in {
  color: #ffffff;
}

/*===========
出張見積の流れ p-itemlist-root
===========*/
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-root__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.antique-item .p-itemlist-root__item {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-root__item {
    width: 25%;
    margin-bottom: 0;
  }
}
.antique-item .p-itemlist-root__arrow {
  margin: 10px auto 5px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 21px 0 21px;
  border-color: #4BA0B8 transparent transparent transparent;
}
@media screen and (min-width: 812px) {
  .antique-item .p-itemlist-root__arrow {
    position: absolute;
    top: calc(50% - 20px);
    right: -10px;
    border-width: 21px 0 21px 20px;
    border-color: transparent transparent transparent #4BA0B8;
  }
}
.antique-item .p-itemlist-root__no {
  margin-bottom: 10px;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.antique-item .p-itemlist-root__icon {
  margin: 0 auto;
  text-align: center;
  background: #cccccc;
  max-width: 180px;
  min-height: 180px;
  width: 100%;
  height: 180px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.antique-item .p-itemlist-root__svg svg {
  width: 50px;
  height: 50px;
  fill: #4BA0B8;
}
.antique-item .p-itemlist-root__txt {
  margin-top: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}
.antique-item .p-itemlist-root__ttl {
  margin-top: 20px;
  font-size: 18px;
  font-size: 1.125rem;
}

/*===========
無料出張対応エリア p-itemlist-area
===========*/
.antique-item .p-itemlist-area__list {
  margin-top: 30px;
}
.antique-item .p-itemlist-area__item {
  margin-bottom: 15px;
  text-align: center;
}

/*===========
こんな方は是非マルカへ p-itemlist-recommend
===========*/
.p-itemlist-recommend__box {
  padding: 15px;
  background: #ffffff;
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-recommend__box {
    padding: 35px;
  }
}
.p-itemlist-recommend .p-itemlist-point__list {
  margin-bottom: 25px;
}
.p-itemlist-recommend .p-section-textimg__contents {
  border-top: 6px double #4BA0B8;
  border-bottom: 6px double #4BA0B8;
  border-left: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .p-itemlist-recommend .p-section-textimg__contents {
    padding: 25px;
  }
}
.p-itemlist-recommend__ttl {
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}
.p-itemlist-recommend__ttl .in {
  display: block;
  color: #4BA0B8;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 5px;
  font-weight: bold;
}

/*===========
買取アイテム例 p-benefit-item-list
===========*/
.p-benefit-item-list {
  padding: 15px;
  margin: 15px auto;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-benefit-item-list__item {
  text-align: center;
  width: 50%;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-benefit-item-list__item {
    width: 20%;
  }
}
.p-benefit-item-list__text {
  text-align: center;
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 10px;
}

/*===========
テンプレ　メインイメージ
===========*/
.antique-top.column .p-main-visual {
  background-color: white;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFFFFFFF', endColorstr='#FFF6EFDC');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Y2ZWZkYyIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #f6efdc));
  background-image: -moz-linear-gradient(top, #ffffff 0%, #f6efdc 100%);
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f6efdc 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f6efdc 100%);
}
.antique-top.column .p-main-visual__in {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .antique-top.column .p-main-visual__in {
    padding: 20px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.antique-top.column .p-main-visual__contents {
  color: #998452;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .antique-top.column .p-main-visual__contents {
    text-align: left;
    width: calc(100% - 250px);
    margin-bottom: 0;
  }
}
.antique-top.column .p-main-visual__contents .point {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 auto 15px;
  border: 1px solid #000000;
  border-left: 4px double #000000;
  border-right: 4px double #000000;
  padding: 10px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  color: #000000;
}
@media screen and (min-width: 812px) {
  .antique-top.column .p-main-visual__contents .point {
    margin: 0 0 15px;
  }
}
.antique-top.column .p-main-visual__contents .main {
  margin-bottom: 12px;
  line-height: 1.6;
}
.antique-top.column .p-main-visual__contents .main span {
  display: inline-block;
  vertical-align: baseline;
}
.antique-top.column .p-main-visual__contents .main .title {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 812px) {
  .antique-top.column .p-main-visual__contents .main .title {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.antique-top.column .p-main-visual__contents .main .name {
  font-size: 25px;
  font-size: 1.5625rem;
}
@media screen and (min-width: 812px) {
  .antique-top.column .p-main-visual__contents .main .name {
    font-size: 32px;
    font-size: 2rem;
  }
}
.antique-top.column .p-main-visual__contents .main .sub {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .antique-top.column .p-main-visual__contents .main .sub {
    font-size: 16px;
    font-size: 1rem;
  }
}
.antique-top.column .p-main-visual__photo {
  text-align: center;
}
.antique-top.column .p-main-visual__photo .in {
  display: inline-block;
  max-width: 250px;
}

.antique-top.column .c-ttl-basic .sub,
.antique-top.column .c-ttl-simple {
  color: #998452;
}
.antique-top.column .bg-color01 {
  background-color: #F6EFDC;
}

/*===========
	骨董品コラム高価買取ならマルカ
===========*/
.antique-top.column .p-benefit-brandlist .p-benefit-brandlist__contents .no .icon {
  fill: #998452;
}

/*===========
	骨董品コラム高価買取ならマルカ
===========*/
.antique-top.column .p-itemlist-point {
  border-color: #998452;
}
.antique-top.column .p-itemlist-pickup__item.off::before {
  background-color: #998452;
}
.antique-top.column .p-itemlist-pickup__item.on::before, .antique-top.column .p-itemlist-pickup__item.on::after {
  border-color: #998452;
}
.antique-top.column .p-itemlist-pickup__item.on .in {
  color: #998452;
}

/*===========
流れ
===========*/
.column.antique-top .p-itemlist-root__svg svg {
  fill: #998452;
}
.column.antique-top .p-itemlist-root__txt {
  color: #998452;
}
.column.antique-top .p-itemlist-root__icon {
  background: #F6EFDC;
}
.column.antique-top .p-itemlist-root__arrow {
  border-color: #998452 transparent transparent transparent;
}
@media screen and (min-width: 812px) {
  .column.antique-top .p-itemlist-root__arrow {
    border-color: transparent transparent transparent #998452;
  }
}
.column.antique-top .p-itemlist-area__item .c-double-btn {
  background: #998452;
}

/*===========
こんな方は是非マルカへ
===========*/
.column.antique-top .p-itemlist-point__item .line, .column.antique-top .p-itemlist-recommend__ttl .in {
  color: #998452;
}
.column.antique-top .p-itemlist-recommend .p-section-textimg__contents {
  border-color: #998452;
}

.alcohol .c-ttl-basic .sub,
.alcohol .c-ttl-simple {
  color: #CBAF7D;
}

.alcohol .c-double-btn {
  background-color: #CBAF7D;
}

.alcohol.p-section.bg-color01 {
  background: #D0D5CD;
}

/*===========
メインイメージ
===========*/
.alcohol .p-main-img {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_bg.jpg);
}
.alcohol .p-main-img__in {
  text-align: center;
}
.alcohol .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
テンプレ　メインイメージ
===========*/
.alcohol .p-main-visual {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_bg.jpg);
}
.alcohol .p-main-visual__in {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-main-visual__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.alcohol .p-main-visual__contents {
  color: #B5A35C;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-main-visual__contents {
    text-align: left;
    width: calc(100% - 250px);
    margin-bottom: 0;
  }
}
.alcohol .p-main-visual__contents .point {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 auto 15px;
  border: 1px solid #cbaf7d;
  border-left: 4px double #cbaf7d;
  border-right: 4px double #cbaf7d;
  padding: 10px;
  width: 100%;
  max-width: 307px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .alcohol .p-main-visual__contents .point {
    margin: 0 0 15px;
  }
}
.alcohol .p-main-visual__contents .sub {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-main-visual__contents .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.alcohol .p-main-visual__contents .main {
  font-size: 25px;
  font-size: 1.5625rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .alcohol .p-main-visual__contents .main {
    font-size: 32px;
    font-size: 2rem;
  }
}
.alcohol .p-main-visual__contents .en {
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (min-width: 812px) {
  .alcohol .p-main-visual__contents .en {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.alcohol .p-main-visual__photo {
  text-align: center;
}
.alcohol .p-main-visual__photo .in {
  display: inline-block;
  max-width: 250px;
}

/*===========
小タイトル
===========*/
.alcohol .p-root-title {
  text-align: center;
  background: #000000;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.alcohol .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.alcohol .p-root-menu {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_bg.jpg);
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.alcohol .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-menu__list {
    padding: 17px 0;
  }
}
.alcohol .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #CBAF7D;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #CBAF7D;
  }
}
.alcohol .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-menu__item:last-of-type {
    border-right: 1px solid #CBAF7D;
  }
}
.alcohol .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-menu__link {
    font-size: 16px;
    font-size: 1rem;
    background: none;
    padding: 10px;
  }
}
.alcohol .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.alcohol .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .alcohol .p-root-menu__link .name {
    display: block;
  }
}

/*===========
お酒の高価買取ならマルカ
===========*/
.p-alcohol-benefit {
  background: #000000;
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-alcohol-benefit {
    padding: 70px 0;
  }
}
.p-alcohol-benefit .c-ttl-basic .main {
  color: #ffffff;
}
.p-alcohol-benefit .c-ttl-basic .sub {
  color: #cbaf7d;
}
.p-alcohol-benefit__contents {
  position: relative;
  margin: 0 auto 30px;
  padding: 60px 0;
  max-width: 650px;
  text-align: center;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_frame01_top.png) no-repeat top center;
  background-size: 673px 27px;
}
.p-alcohol-benefit__contents::after {
  content: '';
  width: 100%;
  height: 27px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_frame01_bottom.png) no-repeat bottom center;
  background-size: 673px 27px;
}
.p-alcohol-benefit__contents.type-w {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_frame01_top_gray.png);
  background-size: auto;
  max-width: 100%;
}
.p-alcohol-benefit__contents.type-w::after {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_frame01_bottom_gray.png);
  background-size: auto;
}
.p-alcohol-benefit__ttl {
  color: #cbaf7d;
  line-height: 1.6;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-style: italic;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-alcohol-benefit__text {
  color: #ffffff;
  margin-top: 20px;
}
.p-alcohol-benefit__item {
  margin-bottom: 20px;
}
.p-alcohol-benefit__in {
  position: relative;
}
.p-alcohol-benefit__in a.a100:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 5;
}
.p-alcohol-benefit__in a.a100.in-link {
  position: relative;
  z-index: 5;
}
.p-alcohol-benefit__photo {
  text-align: center;
}
.p-alcohol-benefit__txt {
  max-width: 297px;
  margin: 10px auto 0;
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .p-alcohol-benefit__txt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-alcohol-benefit.column .p-alcohol-benefit__ttl {
  color: #ffffff;
}
.p-alcohol-benefit.column .p-alcohol-benefit__column {
  background: #ffffff;
}

.p-alcohol-pickup {
  border: 4px double #555555;
  position: relative;
}
.p-alcohol-pickup::before {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_left_top_w.svg) no-repeat top left;
  left: -5px;
}
.p-alcohol-pickup::after {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_right_top_w.svg) no-repeat top right;
  right: -5px;
}
.p-alcohol-pickup::before, .p-alcohol-pickup::after {
  content: '';
  width: 50px;
  height: 50px;
  background-color: #000000;
  background-size: 35px 35px;
  position: absolute;
  top: -5px;
  z-index: 1;
}
.p-alcohol-pickup__in {
  padding: 30px 20px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-pickup__in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
    padding: 50px 70px;
  }
}
.p-alcohol-pickup__in::before {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_left_down_w.svg) no-repeat bottom left;
  left: -5px;
}
.p-alcohol-pickup__in::after {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_right_down_w.svg) no-repeat bottom right;
  right: -5px;
}
.p-alcohol-pickup__in::before, .p-alcohol-pickup__in::after {
  content: '';
  width: 50px;
  height: 50px;
  background-color: #000000;
  background-size: 35px 35px;
  position: absolute;
  bottom: -5px;
  z-index: 1;
}
.p-alcohol-pickup__contents {
  position: relative;
  z-index: 5;
}
.p-alcohol-pickup__ttl {
  color: #cbaf7d;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-alcohol-pickup__ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-alcohol-pickup__txt {
  color: #A4A4A4;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-alcohol-pickup__txt {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-alcohol-pickup__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_check.png) no-repeat left top;
  background-size: 15px 15px;
  padding: 0 0 15px 20px;
}
.p-alcohol-pickup__item .in {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
  color: #ffffff;
}
.p-alcohol-pickup__photo {
  position: relative;
  z-index: 5;
  margin-top: 25px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-alcohol-pickup__photo {
    margin-top: 0;
    padding-left: 15px;
  }
}

/*===========
売却時に必要な書類
===========*/
.alcohol .p-itemlist-document-invalid__item,
.alcohol .p-itemlist-document__item .number {
  color: #CBAF7D;
}
.alcohol .p-itemlist-document-invalid {
  border-color: #CBAF7D;
}
.alcohol .p-itemlist-document-invalid__ttl {
  background: #CBAF7D;
}

/*===========
こんなお酒もマルカにぜひご相談ください
===========*/
.p-alcohol-point {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_bg.jpg);
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-alcohol-point {
    padding: 70px 0;
  }
}
.p-alcohol-point__ttl {
  margin: 0 auto 30px;
  max-width: 400px;
  padding: 30px 15px;
  text-align: center;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-alcohol-point__ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 30px;
    margin-bottom: 50px;
  }
}
.p-alcohol-point__ttl::before {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_left_top.svg) no-repeat top left;
  left: 0;
}
.p-alcohol-point__ttl::after {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_right_top.svg) no-repeat top right;
  right: 0;
}
.p-alcohol-point__ttl::before, .p-alcohol-point__ttl::after {
  content: '';
  width: 30px;
  height: 30px;
  background-size: 25px 25px;
  position: absolute;
  top: 0;
  z-index: 1;
}
.p-alcohol-point__ttl .ttl_in {
  line-height: 1.3;
}
.p-alcohol-point__ttl .ttl_in::before {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_left_down.svg) no-repeat bottom left;
  left: 0;
}
.p-alcohol-point__ttl .ttl_in::after {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_right_down.svg) no-repeat bottom right;
  right: 0;
}
.p-alcohol-point__ttl .ttl_in::before, .p-alcohol-point__ttl .ttl_in::after {
  content: '';
  width: 30px;
  height: 30px;
  background-size: 25px 25px;
  position: absolute;
  bottom: 0;
  z-index: 1;
}

/*マルカならこんなお酒でも買取可能=============*/
.alcohol .p-benefit-purchase__contents {
  border-color: #CBAF7D;
  margin-bottom: 20px;
}
.alcohol .p-benefit-purchase .in {
  background: #EDE8DE;
}
.alcohol .p-benefit-purchase__photo {
  max-width: 200px;
  margin: 0 auto;
}
.alcohol .p-benefit-purchase__txt {
  background: #CBAF7D;
}

/*売るためのポイント=============*/
.alcohol .p-points__item {
  margin-bottom: 15px;
}
.alcohol .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__in {
    padding: 40px 10px;
  }
}
.alcohol .p-points__ttl {
  color: #a99468;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__ttl {
    margin-bottom: 20px;
  }
}
.alcohol .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
}
.alcohol .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
}
.alcohol .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__img {
    margin: 0 auto 20px;
  }
}
.alcohol .p-points__point {
  text-align: center;
  color: #a99468;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.alcohol .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__text {
    max-width: 250px;
  }
}

/*===========
お酒買取は全国の店舗と出張買取・宅配買取で
===========*/
/*数本出し、お店に持っていこう=====*/
.p-alcohol-procedure {
  border-top: 6px double #CBAF7D;
  border-bottom: 6px double #CBAF7D;
  border-left: 1px solid #CBAF7D;
  border-right: 1px solid #CBAF7D;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-procedure {
    padding: 50px;
  }
}
.p-alcohol-procedure__ttl {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #CBAF7D;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-procedure__ttl {
    margin-bottom: 50px;
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.p-alcohol-procedure.red {
  border-color: #A40000;
}
.p-alcohol-procedure.red .c-ttl-basic .sub,
.p-alcohol-procedure.red .c-ttl-simple,
.p-alcohol-procedure.red .p-itemlist-root__txt,
.p-alcohol-procedure.red .p-alcohol-procedure__ttl {
  color: #A40000;
}
.p-alcohol-procedure.red .p-itemlist-root__svg svg {
  fill: #A40000;
}
.p-alcohol-procedure.red .p-itemlist-root__arrow {
  border-color: #A40000 transparent transparent transparent;
}
@media screen and (min-width: 812px) {
  .p-alcohol-procedure.red .p-itemlist-root__arrow {
    border-color: transparent transparent transparent #A40000;
  }
}
.p-alcohol-procedure.red .p-itemlist-root__icon {
  background: #E9C3C3;
}

/*===========
出張見積の流れ p-itemlist-root
===========*/
@media screen and (min-width: 812px) {
  .alcohol .p-itemlist-root__contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.alcohol .p-itemlist-root__item {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .alcohol .p-itemlist-root__item {
    width: 25%;
    margin-bottom: 0;
  }
}
.alcohol .p-itemlist-root__arrow {
  margin: 10px auto 5px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 21px 0 21px;
  border-color: #94753D transparent transparent transparent;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 812px) {
  .alcohol .p-itemlist-root__arrow {
    position: absolute;
    top: calc(50% - 20px);
    right: -10px;
    border-width: 21px 0 21px 20px;
    border-color: transparent transparent transparent #94753D;
  }
}
.alcohol .p-itemlist-root__no {
  margin-bottom: 10px;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.alcohol .p-itemlist-root__icon {
  margin: 0 auto;
  text-align: center;
  background: #F3E3C7;
  max-width: 180px;
  min-height: 180px;
  width: 100%;
  height: 180px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.alcohol .p-itemlist-root__svg svg {
  width: 50px;
  height: 50px;
  fill: #94753D;
}
.alcohol .p-itemlist-root__txt {
  margin-top: 15px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #94753D;
}
.alcohol .p-itemlist-root__ttl {
  margin-top: 20px;
  font-size: 18px;
  font-size: 1.125rem;
}

/*===========
こんなお酒もマルカにぜひご相談ください
===========*/
.alcohol .p-points .p-itemlist-point__contents {
  padding-top: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points .p-itemlist-point__contents {
    padding-top: 0;
    padding-right: 15px;
  }
}
.alcohol .p-points .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
  }
}
.alcohol .p-points .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.alcohol .p-points .p-itemlist-point__item .line {
  color: #1F4900;
  text-decoration: underline;
}
.alcohol .p-points__item {
  margin-bottom: 15px;
}
.alcohol .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__in {
    padding: 40px 10px;
  }
}
.alcohol .p-points__ttl {
  color: #cbaf7d;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__ttl {
    margin-bottom: 20px;
  }
}
.alcohol .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
}
.alcohol .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
}
.alcohol .p-points__img {
  max-width: 380px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__img {
    margin: 0 auto 20px;
  }
}
.alcohol .p-points__point {
  text-align: center;
  color: #cbaf7d;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .alcohol .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.alcohol .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*===========
高価買取中ウイスキー価格一例
===========*/
.alcohol .p-alcohol-price-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list {
    margin: 0 -10px;
  }
}
.alcohol .p-alcohol-price-list__item {
  width: 50%;
  padding: 5px;
}
@media screen and (min-width: 576px) {
  .alcohol .p-alcohol-price-list__item {
    width: 33.3%;
  }
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__item {
    width: 25%;
    padding: 10px;
  }
}
.alcohol .p-alcohol-price-list__item .in {
  border: 1px solid #CBAF7D;
  background: #FDFBF5;
  padding: 5px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__item .in {
    padding: 15px;
  }
}
.alcohol .p-alcohol-price-list__item .in::before {
  content: '';
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #ffffff;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__item .in::before {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 5px solid #ffffff;
  }
}
.alcohol .p-alcohol-price-list__photo {
  background: #ffffff;
  text-align: center;
  padding: 5px;
  margin-bottom: 10px;
}
.alcohol .p-alcohol-price-list__title {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  min-height: 40px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__title {
    font-size: 14px;
    font-size: 0.875rem;
    min-height: 50px;
  }
}
.alcohol .p-alcohol-price-list__lank {
  margin-bottom: 5px;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__lank {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.alcohol .p-alcohol-price-list__lank .title {
  display: inline-block;
  vertical-align: middle;
  background: #CBAF7D;
  color: #ffffff;
  width: 70%;
  padding: 3px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__lank .title {
    padding: 5px;
  }
}
.alcohol .p-alcohol-price-list__lank .lank {
  display: inline-block;
  vertical-align: middle;
  width: 30%;
  color: #E84728;
  font-weight: bold;
  padding: 10px;
  font-size: 120%;
}
.alcohol .p-alcohol-price-list__price {
  color: #E84728;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .alcohol .p-alcohol-price-list__price {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.alcohol .p-alcohol-price-list__price .small {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 5px;
  font-size: 70%;
}

/*ランク表*/
.p-alcohol-rank {
  border: 1px solid #E5E5E5;
}
.p-alcohol-rank__title {
  background: #F9F9F9;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-alcohol-rank__list {
  padding: 10px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .p-alcohol-rank__list {
    padding: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-alcohol-rank__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-rank__item {
    margin-bottom: 20px;
    width: 33.3%;
  }
}
.p-alcohol-rank__item .rank {
  display: inline-block;
  vertical-align: baseline;
  width: 45px;
  color: #E84728;
  position: relative;
}
.p-alcohol-rank__item .rank::after {
  content: "…";
  position: absolute;
  right: 0;
  top: 0;
  color: #000000;
}
.p-alcohol-rank__item .text {
  display: inline-block;
  vertical-align: baseline;
  width: calc(100% - 50px);
  color: #000000;
  padding-left: 5px;
}

/*===========
高価買取
===========*/
.p-alcohol-story {
  background: url("../images/item_list/alcohol/img_bg.jpg");
}
.p-alcohol-story .in {
  background: url("../images/item_list/alcohol/bg_story.png") no-repeat center;
  padding: 40px 0;
}
@media screen and (min-width: 812px) {
  .p-alcohol-story .in {
    padding: 100px 0;
  }
}

/*===========
お酒の買取は保存方法にご注意ください
===========*/
.p-alcohol-attention {
  border: 2px solid #E5D6BD;
  margin-bottom: 50px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-attention {
    margin-bottom: 100px;
  }
}
.p-alcohol-attention__in {
  border: 2px solid #ffffff;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/img_bg.jpg);
  padding: 20px 10px 10px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-attention__in {
    padding: 50px 30px 30px;
  }
}
.p-alcohol-attention__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 18px 18px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-alcohol-attention__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
  }
}
.p-alcohol-attention__item .in {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .p-alcohol-attention__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-alcohol-attention__text {
  position: relative;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_left_top.svg) left top no-repeat;
  background-size: 20px 20px;
}
.p-alcohol-attention__text::before, .p-alcohol-attention__text::after {
  content: ' ';
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_left_down.svg) left bottom no-repeat;
  background-size: 20px 20px;
}
.p-alcohol-attention__text::before {
  left: 0;
}
.p-alcohol-attention__text::after {
  right: 0;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_right_down.svg);
  background-position: right bottom;
}
.p-alcohol-attention__text .in {
  display: block;
  padding: 20px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/alcohol/icon_brow_right_top.svg) right top no-repeat;
  background-size: 20px 20px;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.shoes .p-section.bg-color01 {
  background: #F1F1F1;
}
.shoes .c-ttl-basic .main {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.shoes .c-ttl-basic .sub {
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
}
.shoes .c-ttl-basic .sub,
.shoes .c-ttl-mini .in,
.shoes .slick-dots li.slick-active .js-slick__dots-item,
.shoes .font-color {
  color: #959595;
}
.shoes .c-double-btn,
.shoes .c-ttl-mini .in::before,
.shoes .c-ttl-mini .in::after,
.shoes .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}
.shoes .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}
.shoes .c-ttl-simple {
  color: #000000;
}
.shoes .c-ttl-simple.bg-gray {
  background: #F1F1F1;
  padding: 10px;
}

/*===========
メインイメージ
===========*/
.shoes .p-main-img__in {
  text-align: center;
}
.shoes .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.shoes .p-root-title {
  text-align: center;
  background: #000000;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-title {
    padding: 10px 0;
  }
}
.shoes .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.shoes .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.shoes .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-menu__list {
    padding: 17px 0;
  }
}
.shoes .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-menu__item {
    width: 25%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.shoes .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-menu__item:first-of-type {
    display: block;
  }
}
.shoes .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.shoes .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.shoes .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.shoes .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.shoes .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .shoes .p-root-menu__link .name {
    display: block;
  }
}

/*===========
ページタイトル
===========*/
.shoes .p-ttl-shoes {
  text-align: center;
  margin: 0 auto 30px;
}
.shoes .p-ttl-shoes__in {
  min-width: 300px;
  display: inline-block;
  padding: 20px;
  color: #000000;
  font-weight: bold;
  border: 4px double #000000;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .shoes .p-ttl-shoes__in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
買取強化中アイテム
===========*/
.shoes .p-strengthen-item__item {
  margin-bottom: 10px;
}
.shoes .p-strengthen-item__in {
  width: 100%;
  background: #F1F1F1;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.shoes .p-strengthen-item__naem {
  font-size: 14px;
  font-size: 0.875rem;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.shoes .p-points .p-itemlist-point {
  border: 1px solid #543d00;
  padding: 15px;
  margin-top: 30px;
}
@media screen and (min-width: 812px) {
  .shoes .p-points .p-itemlist-point {
    padding: 20px;
  }
}
.shoes .p-points .p-itemlist-point__contents {
  padding-top: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .shoes .p-points .p-itemlist-point__contents {
    padding-right: 15px;
  }
}
@media screen and (min-width: 812px) {
  .shoes .p-points .p-itemlist-point__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.shoes .p-points .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .shoes .p-points .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
    width: 50%;
  }
}
.shoes .p-points .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .shoes .p-points .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.shoes .p-points .p-itemlist-point__item .line {
  color: #1F4900;
  text-decoration: underline;
}
.shoes .p-points__item {
  margin-bottom: 15px;
}
.shoes .p-points__in {
  background: #F1F1F1;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .shoes .p-points__in {
    padding: 40px 10px;
  }
}
.shoes .p-points__ttl {
  color: #000000;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .shoes .p-points__ttl {
    margin-bottom: 20px;
  }
}
.shoes .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
}
.shoes .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
}
.shoes .p-points__img {
  max-width: 380px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .shoes .p-points__img {
    margin: 0 auto 20px;
  }
}
.shoes .p-points__point {
  text-align: center;
  color: #8ed1f0;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .shoes .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.shoes .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.shoes .p-points .p-point-box {
  border-top: 6px double #cccccc;
  border-bottom: 6px double #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding: 20px 10px;
  text-align: center;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.clothes .p-section.bg-color01 {
  background: #F4F5F2;
}
.clothes .c-ttl-basic .main {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.clothes .c-ttl-basic .sub {
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
}
.clothes .c-ttl-basic .sub,
.clothes .c-ttl-mini .in,
.clothes .slick-dots li.slick-active .js-slick__dots-item,
.clothes .font-color {
  color: #6D7662;
}
.clothes .c-double-btn,
.clothes .c-ttl-mini .in::before,
.clothes .c-ttl-mini .in::after,
.clothes .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #6D7662;
}
.clothes .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #6D7662 transparent transparent transparent;
}
.clothes .c-ttl-simple {
  color: #6D7662;
}
.clothes .c-ttl-simple.bg-gray {
  background: #F1F1F1;
  padding: 10px;
}

/*===========
メインイメージ
===========*/
.clothes .p-main-img__in {
  text-align: center;
}
.clothes .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.clothes .p-root-title {
  text-align: center;
  background: #6D7662;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-title {
    padding: 10px 0;
  }
}
.clothes .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.clothes .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.clothes .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-menu__list {
    padding: 17px 0;
  }
}
.clothes .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-menu__item {
    width: 25%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.clothes .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-menu__item:first-of-type {
    display: block;
  }
}
.clothes .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.clothes .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.clothes .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.clothes .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.clothes .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .clothes .p-root-menu__link .name {
    display: block;
  }
}

/*===========
こんなアパレルでもマルカにぜひご相談ください
===========*/
.clothes .p-points .p-itemlist-point__contents {
  padding-top: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .clothes .p-points .p-itemlist-point__contents {
    padding-right: 15px;
  }
}
@media screen and (min-width: 812px) {
  .clothes .p-points .p-itemlist-point__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.clothes .p-points .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .clothes .p-points .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
    width: 50%;
  }
}
.clothes .p-points .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .clothes .p-points .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.clothes .p-points .p-itemlist-point__item .line {
  color: #1F4900;
  text-decoration: underline;
}
.clothes .p-points__item {
  margin-bottom: 15px;
}
.clothes .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .clothes .p-points__in {
    padding: 40px 10px;
  }
}
.clothes .p-points__ttl {
  color: #6D7662;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .clothes .p-points__ttl {
    margin-bottom: 20px;
  }
}
.clothes .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
}
.clothes .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
}
.clothes .p-points__img {
  max-width: 380px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .clothes .p-points__img {
    margin: 0 auto 20px;
  }
}
.clothes .p-points__point {
  text-align: center;
  color: #8ed1f0;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .clothes .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.clothes .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.clothes .p-points .p-point-box {
  border-top: 6px double #6D7662;
  border-bottom: 6px double #6D7662;
  border-left: 1px solid #6D7662;
  border-right: 1px solid #6D7662;
  padding: 20px 10px;
  text-align: center;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.brandjewel .p-section.bg-color01 {
  background: #F9F9F9;
}
.brandjewel .c-ttl-basic .sub,
.brandjewel .c-ttl-mini .in,
.brandjewel .slick-dots li.slick-active .js-slick__dots-item,
.brandjewel .font-color {
  color: #F19CA6;
}
.brandjewel .c-double-btn,
.brandjewel .c-ttl-mini .in::before,
.brandjewel .c-ttl-mini .in::after {
  background: #F19CA6;
}

/*===========
メインイメージ
===========*/
.brandjewel .p-main-img__in {
  text-align: center;
}
.brandjewel .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.brandjewel .p-root-title {
  text-align: center;
  background: #FBE3E5;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-title {
    padding: 10px 0;
  }
}
.brandjewel .p-root-title .in {
  color: #000000;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.brandjewel .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.brandjewel .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-menu__list {
    padding: 17px 0;
  }
}
.brandjewel .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.brandjewel .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-menu__item:first-of-type {
    display: block;
  }
}
.brandjewel .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.brandjewel .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.brandjewel .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.brandjewel .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.brandjewel .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-root-menu__link .name {
    display: block;
  }
}

/*金額の比較==============*/
.brandjewel .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.brandjewel .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.brandjewel .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.brandjewel .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.brandjewel .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.brandjewel .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.brandjewel .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.brandjewel .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.brandjewel .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .brandjewel .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.brandjewel .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #F19CA6;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .brandjewel .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.brandjewel .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.brandjewel .p-ranking__list {
  margin-top: 20px;
}
.brandjewel .p-ranking__item {
  background: #ffffff;
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item {
    padding: 20px;
    min-height: 234px;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.brandjewel .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.brandjewel .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #F19CA6;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.brandjewel .p-ranking__no .text {
  display: inline-block;
  color: #F19CA6;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.brandjewel .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-ranking__img {
    height: 130px;
  }
}
.brandjewel .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .brandjewel .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.brandjewel .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .brandjewel .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.brandjewel .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .brandjewel .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
ブランドジュエリー買取にマルカが強い理由
===========*/
.brandjewel .p-benefit-brandlist__contents .no .icon {
  fill: #F19CA6;
  opacity: 0.5;
}

/*===========
取扱ブランド一覧
===========*/
.brandjewel .p-brandlist__list {
  background: #ffffff;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.brandjewel .p-points__item {
  margin-bottom: 15px;
}
.brandjewel .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-points__in {
    padding: 40px 10px;
  }
}
.brandjewel .p-points__ttl {
  color: #F19CA6;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-points__ttl {
    margin-bottom: 20px;
  }
}
.brandjewel .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.brandjewel .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.brandjewel .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .brandjewel .p-points__img {
    margin: 0 auto 20px;
  }
}
.brandjewel .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.brandjewel .c-ttl-circle--side__num {
  color: #F19CA6;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.brandjewel .c-ttl-circle--side__text {
  color: #000000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.wallet .p-section.bg-color01 {
  background: #F1F1F1;
}
.wallet .c-ttl-basic .main {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.wallet .c-ttl-basic .sub {
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  color: #000000;
}
.wallet .c-ttl-mini .in,
.wallet .slick-dots li.slick-active .js-slick__dots-item,
.wallet .font-color {
  color: #A0A0A0;
}
.wallet .c-ttl-mini .in::before,
.wallet .c-ttl-mini .in::after {
  background: #A0A0A0;
}
.wallet .c-double-btn,
.wallet .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}
.wallet .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}
.wallet .c-ttl-simple {
  color: #000000;
}
.wallet .c-ttl-simple.bg-gray {
  background: #F1F1F1;
  padding: 10px;
}
.wallet .p-section.border-top {
  border-color: #000000;
}

/*===========
メインイメージ
===========*/
.wallet .p-main-img__in {
  text-align: center;
}
.wallet .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.wallet .p-root-title {
  border-top: 1px solid #784634;
  text-align: center;
  background: #000000;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-title {
    padding: 10px 0;
  }
}
.wallet .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.wallet .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.wallet .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-menu__list {
    padding: 17px 0;
  }
}
.wallet .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-menu__item {
    width: 25%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.wallet .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.wallet .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.wallet .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.wallet .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.wallet .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .wallet .p-root-menu__link .name {
    display: block;
  }
}

/*===========
benefit
===========*/
.wallet .p-benefit01-photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.wallet .p-benefit01-photo img {
  width: 50%;
}

/*===========
取扱ブランド財布一覧
===========*/
.wallet .p-brandlist-bnr__link {
  border-color: #000000;
}
.wallet .p-brandlist-bnr__text .main,
.wallet .p-brandlist-bnr__text .sub {
  color: #000000;
}
.wallet .p-brandlist-bnr__link::after {
  border-color: transparent transparent #000000 transparent;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.fur .p-section.bg-color01 {
  background: #F1F1F1;
}
.fur .c-ttl-basic .main {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fur .c-ttl-basic .sub,
.fur .c-ttl-mini .in,
.fur .slick-dots li.slick-active .js-slick__dots-item,
.fur .font-color {
  color: #7A8F94;
}
.fur .c-double-btn,
.fur .c-ttl-mini .in::before,
.fur .c-ttl-mini .in::after {
  background: #7A8F94;
}

/*===========
メインイメージ
===========*/
.fur .p-main-img__in {
  text-align: center;
}
.fur .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.fur .p-root-title {
  text-align: center;
  background: #7A8F94;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .fur .p-root-title {
    padding: 10px 0;
  }
}
.fur .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .fur .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.fur .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.fur .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .fur .p-root-menu__list {
    padding: 17px 0;
  }
}
.fur .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .fur .p-root-menu__item {
    width: 25%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.fur .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .fur .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.fur .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.fur .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .fur .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.fur .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.fur .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .fur .p-root-menu__link .name {
    display: block;
  }
}

/*===========
こんな毛皮でもマルカにぜひご相談ください
===========*/
.fur .p-points .p-itemlist-point__contents {
  padding-top: 20px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .fur .p-points .p-itemlist-point__contents {
    padding-top: 0;
    padding-right: 15px;
  }
}
@media screen and (min-width: 812px) {
  .fur .p-points .p-itemlist-point__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.fur .p-points .p-itemlist-point__item {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/antique/common/icon_check.png) left top no-repeat;
  background-size: 25px 25px;
  padding: 2px 0 2px 30px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .fur .p-points .p-itemlist-point__item {
    background-size: 33px 33px;
    padding: 5px 0 5px 40px;
    width: 50%;
  }
}
.fur .p-points .p-itemlist-point__item .in {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .fur .p-points .p-itemlist-point__item .in {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.fur .p-points .p-itemlist-point__item .line {
  color: #7A8F94;
  text-decoration: underline;
}
.fur .p-points__item {
  margin-bottom: 15px;
}
.fur .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .fur .p-points__in {
    padding: 40px 10px;
  }
}
.fur .p-points__ttl {
  color: #7A8F94;
  margin-bottom: 15px;
  text-align: center;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 812px) {
  .fur .p-points__ttl {
    margin-bottom: 20px;
  }
}
.fur .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
}
.fur .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
}
.fur .p-points__img {
  max-width: 380px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .fur .p-points__img {
    margin: 0 auto 20px;
  }
}
.fur .p-points__point {
  text-align: center;
  color: #7A8F94;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .fur .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.fur .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
.fur .p-points .p-point-box {
  border-top: 6px double #7A8F94;
  border-bottom: 6px double #7A8F94;
  border-left: 1px solid #7A8F94;
  border-right: 1px solid #7A8F94;
  padding: 20px 10px;
  text-align: center;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.camera .p-section.bg-color01 {
  background: #F9F9F9;
}
.camera .p-section.bg-color02 {
  background: #E6E6E6;
}
.camera .c-ttl-basic .main {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.camera .c-ttl-basic .sub {
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  color: #E30711;
}
.camera .c-ttl-mini .in,
.camera .slick-dots li.slick-active .js-slick__dots-item,
.camera .font-color {
  color: #959595;
}
.camera .c-double-btn,
.camera .c-ttl-mini .in::before,
.camera .c-ttl-mini .in::after,
.camera .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}
.camera .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}
.camera .c-ttl-simple {
  color: #000000;
}
.camera .c-ttl-simple.bg-gray {
  background: #F1F1F1;
  padding: 10px;
}

/*===========
メインイメージ
===========*/
.camera .p-main-img__in {
  text-align: center;
}
.camera .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.camera .p-root-title {
  text-align: center;
  background: #000000;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .camera .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.camera .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .camera .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.camera .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.camera .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .camera .p-root-menu__list {
    padding: 17px 0;
  }
}
.camera .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 812px) {
  .camera .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #e5e5e5;
  }
}
.camera .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .camera .p-root-menu__item:last-of-type {
    border-right: 1px solid #e5e5e5;
  }
}
.camera .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.camera .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .camera .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.camera .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.camera .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .camera .p-root-menu__link .name {
    display: block;
  }
}

/*===========
タイトル
===========*/
.p-camera-ttl {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl {
    margin-bottom: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-camera-ttl__img {
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl__img {
    margin-top: 0;
    padding-right: 15px;
  }
}
.p-camera-ttl .caption {
  display: inline-block;
  width: 100%;
  max-width: 200px;
  padding: 10px;
  margin-bottom: 15px;
  text-align: center;
  color: #ffffff;
  background: #000000;
  font-weight: bold;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl .caption {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-camera-ttl .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  color: #000000;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.p-camera-ttl .sub {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #000000;
  font-weight: bold;
  margin-top: 15px;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-camera-ttl .en-sub {
  max-width: 580px;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #E3161F;
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif;
  font-weight: bold;
  line-height: 1.3;
  border-top: 5px solid #000000;
  padding-top: 10px;
  margin: 10px auto 0;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl .en-sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 812px) {
  .p-camera-ttl.left {
    text-align: left;
  }
}
@media screen and (min-width: 812px) {
  .p-camera-ttl.left .en-sub {
    margin: 10px 0 0;
  }
}
.p-camera-ttl.wanted {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/camera/photo_topics_main-2.png) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl.wanted {
    min-height: 360px;
    background-position: right center;
  }
}
.p-camera-ttl.wanted .p-camera-ttl__in {
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 812px) {
  .p-camera-ttl.wanted .p-camera-ttl__in {
    background-color: rgba(255, 255, 255, 0);
  }
}
.p-camera-ttl.wanted .en-sub {
  max-width: 450px;
}
@media screen and (min-width: 812px) {
  .p-camera-ttl.point {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 812px) {
  .p-camera-ttl.check {
    display: block;
  }
}

/*===========
	高価買取専門店、マルカなら、こんな状態でも査定できます！
===========*/
.camera .p-points__item {
  margin-bottom: 20px;
  text-align: center;
}
.camera .p-points__item .in {
  display: inline-block;
  max-width: 300px;
}
.camera .p-points__photo {
  text-align: center;
}
.camera .p-points__photo img {
  vertical-align: bottom;
}
.camera .p-points__text {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/item_list/camera/icon_check_w.png) no-repeat right 5px center;
  background-size: 30px;
  background-color: #000000;
  padding: 10px;
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .camera .p-points__text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
	高価買取専門店、マルカなら、こんな状態でも査定できます！
===========*/
.camera .p-topics {
  background-color: #D3D3D3 !important;
}
.camera .p-topics__item {
  margin-bottom: 20px;
}
.camera .p-topics__photo {
  text-align: center;
}
.camera .p-topics__text {
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}

/*===========
	高価買取専門店、マルカなら、こんな状態でも査定できます！
===========*/
.camera .p-check__list {
  margin-top: 10px;
}
.camera .p-check__item {
  position: relative;
  margin-bottom: 15px;
}
.camera .p-check__item a.a100:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 5;
}
.camera .p-check__item a.a100.in-link {
  position: relative;
  z-index: 5;
}
.camera .p-check__in {
  text-align: center;
  padding: 0 5px;
  position: relative;
}
.camera .p-check__icon {
  display: inline-block;
  border-radius: 50px;
  background: #E30711;
  padding: 5px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 15px);
}
.camera .p-check__contents {
  background: #E6E6E6;
  padding: 10px;
}
.camera .p-check__ttl {
  padding: 10px;
  background: #666666;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}

.camera .p-camera__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.camera .p-camera__item {
  padding: 10px;
  margin-bottom: 10px;
  width: 50%;
}
@media screen and (min-width: 812px) {
  .camera .p-camera__item {
    margin-bottom: 15px;
    width: 25%;
  }
}
.camera .p-camera__photo {
  background: #ffffff;
  padding: 10px;
}
.camera .p-camera__name {
  text-align: center;
  margin-top: 10px;
}
.camera .p-camera__name .name {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
}
.camera .p-camera__name .pay {
  margin-top: 5px;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #E3161F;
}
.camera .p-camera-table {
  background: #ffffff;
  border-left: 1px solid #E6E6E6;
}
.camera .p-camera-table__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.camera .p-camera-table__ttl .name, .camera .p-camera-table__ttl .pay {
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  background: #959595;
  color: #ffffff;
  line-height: 1.3;
}
.camera .p-camera-table__ttl .name {
  width: 65%;
  border-right: 1px solid #E6E6E6;
}
@media screen and (min-width: 812px) {
  .camera .p-camera-table__ttl .name {
    border-left: 1px solid #E6E6E6;
    width: 35%;
  }
}
.camera .p-camera-table__ttl .pay {
  width: 35%;
}
@media screen and (min-width: 812px) {
  .camera .p-camera-table__ttl .pay {
    width: 15%;
  }
}
.camera .p-camera-table__contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-left: 1px solid #E6E6E6;
}
.camera .p-camera-table__name, .camera .p-camera-table__pay {
  padding: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #E6E6E6;
  border-right: 1px solid #E6E6E6;
  min-height: 53px;
}
@media screen and (min-width: 812px) {
  .camera .p-camera-table__name, .camera .p-camera-table__pay {
    padding: 10px;
    min-height: 50px;
  }
}
.camera .p-camera-table__name {
  width: 65%;
}
@media screen and (min-width: 812px) {
  .camera .p-camera-table__name {
    width: 35%;
  }
}
.camera .p-camera-table__pay {
  width: 35%;
  text-align: center;
  color: #E30711;
  height: 100%;
}
@media screen and (min-width: 812px) {
  .camera .p-camera-table__pay {
    width: 15%;
  }
}

/*===========
カメラお役立ちコラム
===========*/
.camera #column.p-purchase-bulletin .p-camera-ttl {
  display: block;
}
.camera #column.p-purchase-bulletin .p-bulletin-list .in {
  padding: 10px;
}
.camera #column.p-purchase-bulletin .p-bulletin-list__link {
  border: 1px solid #CCCCCC;
  background: #ffffff;
}
.camera #column.p-purchase-bulletin .p-bulletin-list__more {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_red.svg) no-repeat right 10px center;
  background-size: 10px 10px;
  background-color: #E6E6E6;
  padding: 10px;
  color: #000000;
  font-weight: bold;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝
共通パーツの色変え
＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.voucher .p-section.bg-main {
  background-color: #0071BF;
  margin-top: 0;
}
.voucher .p-section.bg-main .c-ttl-slash .c-ttl-slash__text {
  color: #ffffff;
}
.voucher .p-section.bg-main .c-ttl-slash .c-ttl-slash__text::before, .voucher .p-section.bg-main .c-ttl-slash .c-ttl-slash__text::after {
  background: #ffffff;
}

/*===========
メインイメージ
===========*/
.voucher .p-main-img__in {
  text-align: center;
}
.voucher .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.voucher .p-root-title {
  text-align: center;
  background: #0071BF;
  padding: 5px 0;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-title {
    padding: 10px 0;
  }
}
.voucher .p-root-title .in {
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-title .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
ページ内メニュー
===========*/
.voucher .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.voucher .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-menu__list {
    padding: 17px 0;
  }
}
.voucher .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #0071BF;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-menu__item {
    width: 33.3%;
    border-bottom: none;
    border-left: 1px solid #0071BF;
  }
}
.voucher .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-menu__item:last-of-type {
    border-right: 1px solid #0071BF;
  }
}
.voucher .p-root-menu__item:nth-last-child(2) {
  border-bottom: none;
}
.voucher .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  height: 100%;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-menu__link {
    font-size: 15px;
    font-size: 0.9375rem;
    background: none;
    padding: 10px;
  }
}
.voucher .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.voucher .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .voucher .p-root-menu__link .name {
    display: block;
  }
}

/*===========
マルカの金買取を 比べてください
===========*/
.voucher .p-comparison__bg {
  position: relative;
}
.voucher .p-comparison__bg::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_w.svg);
  width: 110%;
  position: absolute;
  top: -1px;
  left: -5%;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .voucher .p-comparison__bg::before {
    top: -1%;
  }
}
.voucher .p-comparison__bg::after {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_bottom_w.svg);
  width: 110%;
  position: absolute;
  bottom: -3px;
  left: -5%;
  text-align: center;
  z-index: 50;
}
@media screen and (min-width: 576px) {
  .voucher .p-comparison__bg::after {
    bottom: -1%;
  }
}

.voucher .p-comparison {
  padding-bottom: 30px;
}
.voucher .p-comparison .c-ttl-slash .c-ttl-slash__text {
  color: #ffffff;
}
.voucher .p-comparison .c-ttl-slash .c-ttl-slash__text::before, .voucher .p-comparison .c-ttl-slash .c-ttl-slash__text::after {
  background: #ffffff;
}
.voucher .p-comparison .c-basic-txt, .voucher .p-comparison .p-basic-list__item, .voucher .p-comparison .p-ol-list__item, .voucher .p-comparison .p-ol-list--sub__item, .voucher .p-comparison .p-ol-list--kana__item {
  color: #ffffff;
}
.voucher .p-comparison .p-comparison-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.voucher .p-comparison .p-comparison-icon__item {
  padding: 0 5px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .voucher .p-comparison .p-comparison-icon__item {
    margin-bottom: 20px;
  }
}

/* 【p-purchase-bulletin】買取速報 買取アイテム 20210427新規
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.p-purchase-bulletin_20210427__ttl {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 4px solid #fff100;
  padding: 0 5px 7px;
  color: #000;
  position: relative;
  display: table;
  margin: 0 auto 20px;
}
@media screen and (max-width: 811px) {
  .p-purchase-bulletin_20210427__ttl {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    border-bottom: 4px solid #fff100;
    padding: 0 5px 7px;
    color: #000;
    position: relative;
    display: table;
    margin: 0 auto 20px;
    line-height: 1.2em;
    width: 90%;
  }
}
.p-purchase-bulletin_20210427__text {
  line-height: 1.8em;
  font-size: 0.9rem;
  font-weight: bold;
  text-align: center;
  width: 90%;
  margin: 0 auto 1.5em;
}
@media screen and (max-width: 811px) {
  .p-purchase-bulletin_20210427__text {
    margin-bottom: 30px;
    width: 90%;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.4em;
  }
}
.p-purchase-bulletin_20210427 .p-bulletin-list__item {
  padding: 7px;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__link {
  display: block;
  text-align: center;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__link .c-square-img {
  max-width: 340px;
  height: 245px;
  display: inline-block;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 5px;
  line-height: 1.3;
  text-align: center;
  background-color: #f6f8f7;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__date {
  color: #9c8979;
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  letter-spacing: .01rem;
  margin: 0 auto 6px;
  text-align: center;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__name {
  display: block;
  color: #0095b9;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__ttl {
  margin-top: 12px;
  color: #E84728;
  font-weight: bold;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__pay {
  display: block;
  color: #E84728;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
.p-purchase-bulletin_20210427 .p-bulletin-list__btn {
  text-align: center;
  padding-top: 20px;
}

/*取扱ブランド========*/
/*===========
サブブランドとコラムのリンク
===========*/
.p-bland-bnrlink {
  padding: 30px 0 0;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}
.p-bland-bnrlink__item {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-bland-bnrlink__item {
    margin-bottom: 0;
  }
}

/* =========================================================
取扱ブランド　メインブランド
========================================================= */
/*=============
メインブランド
=============*/
/*===========
メインイメージ
===========*/
.mian-bland .p-main-img__in {
  text-align: center;
}
.mian-bland .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.mian-bland .p-root-title {
  text-align: center;
  background: #eeeeee;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-title {
    padding: 0px;
    background: #4BA0B8;
  }
}
.mian-bland .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #4BA0B8;
  border-bottom: 6px double #4BA0B8;
  border-left: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #4BA0B8;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.mian-bland .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.mian-bland .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-menu__list {
    padding: 17px 0;
  }
}
.mian-bland .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.mian-bland .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-menu__item:first-of-type {
    display: block;
  }
}
.mian-bland .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.mian-bland .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.mian-bland .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.mian-bland .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.mian-bland .p-purchase-bulletin .c-double-btn {
  background-color: #4BA0B8;
}

/*金額の比較==============*/
.mian-bland .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.mian-bland .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.mian-bland .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.mian-bland .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.mian-bland .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #4BA0B8;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #4BA0B8;
}
.mian-bland .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.mian-bland .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.mian-bland .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.mian-bland .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .mian-bland .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.mian-bland .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #4BA0B8;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .mian-bland .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.mian-bland .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.mian-bland .p-ranking__list {
  margin-top: 20px;
}
.mian-bland .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  padding: 20px 5px;
  text-align: center;
  color: #4BA0B8;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.mian-bland .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.mian-bland .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.mian-bland .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #4BA0B8;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.mian-bland .p-ranking__no .text {
  display: inline-block;
  color: #4BA0B8;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.mian-bland .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-ranking__img {
    height: 130px;
  }
}
.mian-bland .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .mian-bland .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.mian-bland .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .mian-bland .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.mian-bland .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .mian-bland .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.mian-bland .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.mian-bland .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.mian-bland .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.mian-bland .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.mian-bland .p-case-example__goods {
  position: relative;
}
.mian-bland .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.mian-bland .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.mian-bland .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.mian-bland .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.mian-bland .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.mian-bland .p-benefit-brandlist__contents .no .icon {
  fill: #4BA0B8;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.mian-bland .p-benefit-purchase .in {
  background: #eeeeee;
}
.mian-bland .p-benefit-purchase .p-benefit-purchase__txt {
  background: #4BA0B8;
}

/*===========
others
===========*/
.mian-bland .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #4BA0B8;
}

.mian-bland .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #4BA0B8 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.mian-bland .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.mian-bland .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #4BA0B8;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.mian-bland .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.mian-bland .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #4BA0B8 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.mian-bland .p-brandlist-bnr__text {
  text-align: center;
}
.mian-bland .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #4BA0B8;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.mian-bland .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .mian-bland .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.mian-bland .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.mian-bland .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.mian-bland .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.mian-bland .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

.mian-bland .p-root-title .in {
  border-color: #ffffff;
  background: none;
}

/*=============
ルイヴィトン
=============*/
/*===========
メインイメージ
===========*/
.louisvuitton .p-main-img__in {
  text-align: center;
}
.louisvuitton .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.louisvuitton .p-root-title {
  text-align: center;
  background: #F9F0E8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-title {
    padding: 0px;
    background: #402115;
  }
}
.louisvuitton .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #402115;
  border-bottom: 6px double #402115;
  border-left: 1px solid #402115;
  border-right: 1px solid #402115;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #402115;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.louisvuitton .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.louisvuitton .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-menu__list {
    padding: 17px 0;
  }
}
.louisvuitton .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.louisvuitton .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-menu__item:first-of-type {
    display: block;
  }
}
.louisvuitton .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.louisvuitton .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.louisvuitton .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.louisvuitton .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.louisvuitton .p-purchase-bulletin .c-double-btn {
  background-color: #402115;
}

/*金額の比較==============*/
.louisvuitton .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.louisvuitton .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.louisvuitton .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.louisvuitton .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.louisvuitton .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #402115;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #402115;
}
.louisvuitton .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.louisvuitton .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.louisvuitton .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.louisvuitton .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .louisvuitton .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.louisvuitton .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #402115;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .louisvuitton .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.louisvuitton .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.louisvuitton .p-ranking__list {
  margin-top: 20px;
}
.louisvuitton .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #402115;
  border-right: 1px solid #402115;
  padding: 20px 5px;
  text-align: center;
  color: #402115;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.louisvuitton .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.louisvuitton .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.louisvuitton .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #402115;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.louisvuitton .p-ranking__no .text {
  display: inline-block;
  color: #402115;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.louisvuitton .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-ranking__img {
    height: 130px;
  }
}
.louisvuitton .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .louisvuitton .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.louisvuitton .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .louisvuitton .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.louisvuitton .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .louisvuitton .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.louisvuitton .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.louisvuitton .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.louisvuitton .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.louisvuitton .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.louisvuitton .p-case-example__goods {
  position: relative;
}
.louisvuitton .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.louisvuitton .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.louisvuitton .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.louisvuitton .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.louisvuitton .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.louisvuitton .p-benefit-brandlist__contents .no .icon {
  fill: #402115;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.louisvuitton .p-benefit-purchase .in {
  background: #F9F0E8;
}
.louisvuitton .p-benefit-purchase .p-benefit-purchase__txt {
  background: #402115;
}

/*===========
others
===========*/
.louisvuitton .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #402115;
}

.louisvuitton .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #402115 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.louisvuitton .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.louisvuitton .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #402115;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.louisvuitton .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.louisvuitton .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #402115 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.louisvuitton .p-brandlist-bnr__text {
  text-align: center;
}
.louisvuitton .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #402115;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.louisvuitton .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #402115;
}
@media screen and (min-width: 812px) {
  .louisvuitton .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.louisvuitton .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.louisvuitton .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.louisvuitton .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.louisvuitton .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
エルメス
=============*/
/*===========
メインイメージ
===========*/
.hermes .p-main-img__in {
  text-align: center;
}
.hermes .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.hermes .p-root-title {
  text-align: center;
  background: #ffdcca;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-title {
    padding: 0px;
    background: #FF5F0D;
  }
}
.hermes .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #FF5F0D;
  border-bottom: 6px double #FF5F0D;
  border-left: 1px solid #FF5F0D;
  border-right: 1px solid #FF5F0D;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #FF5F0D;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.hermes .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.hermes .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-menu__list {
    padding: 17px 0;
  }
}
.hermes .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.hermes .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-menu__item:first-of-type {
    display: block;
  }
}
.hermes .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.hermes .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.hermes .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.hermes .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .hermes .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.hermes .p-purchase-bulletin .c-double-btn {
  background-color: #FF5F0D;
}

/*金額の比較==============*/
.hermes .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .hermes .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.hermes .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .hermes .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.hermes .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .hermes .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.hermes .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .hermes .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.hermes .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #FF5F0D;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #FF5F0D;
}
.hermes .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.hermes .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.hermes .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.hermes .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .hermes .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.hermes .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #FF5F0D;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .hermes .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.hermes .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .hermes .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.hermes .p-ranking__list {
  margin-top: 20px;
}
.hermes .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #FF5F0D;
  border-right: 1px solid #FF5F0D;
  padding: 20px 5px;
  text-align: center;
  color: #FF5F0D;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.hermes .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.hermes .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.hermes .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #FF5F0D;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.hermes .p-ranking__no .text {
  display: inline-block;
  color: #FF5F0D;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.hermes .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .hermes .p-ranking__img {
    height: 130px;
  }
}
.hermes .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .hermes .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.hermes .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .hermes .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.hermes .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .hermes .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.hermes .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.hermes .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.hermes .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.hermes .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.hermes .p-case-example__goods {
  position: relative;
}
.hermes .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.hermes .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.hermes .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.hermes .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.hermes .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .hermes .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.hermes .p-benefit-brandlist__contents .no .icon {
  fill: #FF5F0D;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.hermes .p-benefit-purchase .in {
  background: #ffdcca;
}
.hermes .p-benefit-purchase .p-benefit-purchase__txt {
  background: #FF5F0D;
}

/*===========
others
===========*/
.hermes .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #FF5F0D;
}

.hermes .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #FF5F0D transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.hermes .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .hermes .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.hermes .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #FF5F0D;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .hermes .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.hermes .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.hermes .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #FF5F0D transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.hermes .p-brandlist-bnr__text {
  text-align: center;
}
.hermes .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #FF5F0D;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .hermes .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.hermes .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #FF5F0D;
}
@media screen and (min-width: 812px) {
  .hermes .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.hermes .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.hermes .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.hermes .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.hermes .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
シャネル
=============*/
/*===========
メインイメージ
===========*/
.chanel .p-main-img__in {
  text-align: center;
}
.chanel .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.chanel .p-root-title {
  text-align: center;
  background: #efefef;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.chanel .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.chanel .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.chanel .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-menu__list {
    padding: 17px 0;
  }
}
.chanel .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.chanel .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-menu__item:first-of-type {
    display: block;
  }
}
.chanel .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.chanel .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.chanel .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.chanel .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .chanel .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.chanel .p-purchase-bulletin .c-double-btn {
  background-color: #000000;
}

/*金額の比較==============*/
.chanel .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .chanel .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.chanel .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .chanel .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.chanel .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .chanel .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.chanel .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .chanel .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.chanel .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.chanel .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.chanel .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.chanel .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.chanel .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .chanel .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.chanel .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .chanel .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.chanel .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .chanel .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.chanel .p-ranking__list {
  margin-top: 20px;
}
.chanel .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 20px 5px;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.chanel .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.chanel .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.chanel .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000000;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.chanel .p-ranking__no .text {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.chanel .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .chanel .p-ranking__img {
    height: 130px;
  }
}
.chanel .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .chanel .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.chanel .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .chanel .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.chanel .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .chanel .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.chanel .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.chanel .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.chanel .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.chanel .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.chanel .p-case-example__goods {
  position: relative;
}
.chanel .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.chanel .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.chanel .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.chanel .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.chanel .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .chanel .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.chanel .p-benefit-brandlist__contents .no .icon {
  fill: #000000;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.chanel .p-benefit-purchase .in {
  background: #efefef;
}
.chanel .p-benefit-purchase .p-benefit-purchase__txt {
  background: #000000;
}

/*===========
others
===========*/
.chanel .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}

.chanel .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.chanel .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .chanel .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.chanel .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #000000;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .chanel .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.chanel .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.chanel .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.chanel .p-brandlist-bnr__text {
  text-align: center;
}
.chanel .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .chanel .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.chanel .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (min-width: 812px) {
  .chanel .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.chanel .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.chanel .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.chanel .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.chanel .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
グッチ
=============*/
/*===========
メインイメージ
===========*/
.gucci .p-main-img__in {
  text-align: center;
}
.gucci .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.gucci .p-root-title {
  text-align: center;
  background: #efefef;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.gucci .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.gucci .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.gucci .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-menu__list {
    padding: 17px 0;
  }
}
.gucci .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.gucci .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-menu__item:first-of-type {
    display: block;
  }
}
.gucci .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.gucci .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.gucci .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.gucci .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .gucci .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.gucci .p-purchase-bulletin .c-double-btn {
  background-color: #000000;
}

/*金額の比較==============*/
.gucci .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .gucci .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.gucci .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .gucci .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.gucci .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .gucci .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.gucci .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .gucci .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.gucci .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.gucci .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.gucci .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.gucci .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.gucci .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .gucci .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.gucci .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .gucci .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.gucci .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .gucci .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.gucci .p-ranking__list {
  margin-top: 20px;
}
.gucci .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 20px 5px;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.gucci .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.gucci .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.gucci .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000000;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.gucci .p-ranking__no .text {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.gucci .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .gucci .p-ranking__img {
    height: 130px;
  }
}
.gucci .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .gucci .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.gucci .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .gucci .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.gucci .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .gucci .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.gucci .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.gucci .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.gucci .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.gucci .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.gucci .p-case-example__goods {
  position: relative;
}
.gucci .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.gucci .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.gucci .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.gucci .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.gucci .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .gucci .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.gucci .p-benefit-brandlist__contents .no .icon {
  fill: #000000;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.gucci .p-benefit-purchase .in {
  background: #efefef;
}
.gucci .p-benefit-purchase .p-benefit-purchase__txt {
  background: #000000;
}

/*===========
others
===========*/
.gucci .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}

.gucci .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.gucci .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .gucci .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.gucci .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #000000;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .gucci .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.gucci .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.gucci .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.gucci .p-brandlist-bnr__text {
  text-align: center;
}
.gucci .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .gucci .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.gucci .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (min-width: 812px) {
  .gucci .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.gucci .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.gucci .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.gucci .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.gucci .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
カルティエ
=============*/
/*===========
メインイメージ
===========*/
.cartier .p-main-img__in {
  text-align: center;
}
.cartier .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.cartier .p-root-title {
  text-align: center;
  background: #f0cbce;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-title {
    padding: 0px;
    background: #840b15;
  }
}
.cartier .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #840b15;
  border-bottom: 6px double #840b15;
  border-left: 1px solid #840b15;
  border-right: 1px solid #840b15;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #840b15;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.cartier .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.cartier .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-menu__list {
    padding: 17px 0;
  }
}
.cartier .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.cartier .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-menu__item:first-of-type {
    display: block;
  }
}
.cartier .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.cartier .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.cartier .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.cartier .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .cartier .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.cartier .p-purchase-bulletin .c-double-btn {
  background-color: #840b15;
}

/*金額の比較==============*/
.cartier .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .cartier .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.cartier .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .cartier .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.cartier .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .cartier .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.cartier .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .cartier .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.cartier .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #840b15;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #840b15;
}
.cartier .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.cartier .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.cartier .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.cartier .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .cartier .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.cartier .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #840b15;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .cartier .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.cartier .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .cartier .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.cartier .p-ranking__list {
  margin-top: 20px;
}
.cartier .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #840b15;
  border-right: 1px solid #840b15;
  padding: 20px 5px;
  text-align: center;
  color: #840b15;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.cartier .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.cartier .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.cartier .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #840b15;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.cartier .p-ranking__no .text {
  display: inline-block;
  color: #840b15;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.cartier .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .cartier .p-ranking__img {
    height: 130px;
  }
}
.cartier .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .cartier .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.cartier .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .cartier .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.cartier .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .cartier .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.cartier .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.cartier .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.cartier .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.cartier .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.cartier .p-case-example__goods {
  position: relative;
}
.cartier .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.cartier .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.cartier .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.cartier .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.cartier .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .cartier .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.cartier .p-benefit-brandlist__contents .no .icon {
  fill: #840b15;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.cartier .p-benefit-purchase .in {
  background: #f0cbce;
}
.cartier .p-benefit-purchase .p-benefit-purchase__txt {
  background: #840b15;
}

/*===========
others
===========*/
.cartier .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #840b15;
}

.cartier .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #840b15 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.cartier .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .cartier .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.cartier .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #840b15;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .cartier .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.cartier .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.cartier .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #840b15 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.cartier .p-brandlist-bnr__text {
  text-align: center;
}
.cartier .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #840b15;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .cartier .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.cartier .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #840b15;
}
@media screen and (min-width: 812px) {
  .cartier .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.cartier .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.cartier .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.cartier .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.cartier .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
ブルガリ
=============*/
/*===========
メインイメージ
===========*/
.bvlgari .p-main-img__in {
  text-align: center;
}
.bvlgari .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.bvlgari .p-root-title {
  text-align: center;
  background: #efefef;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.bvlgari .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.bvlgari .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.bvlgari .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-menu__list {
    padding: 17px 0;
  }
}
.bvlgari .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.bvlgari .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-menu__item:first-of-type {
    display: block;
  }
}
.bvlgari .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.bvlgari .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.bvlgari .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.bvlgari .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.bvlgari .p-purchase-bulletin .c-double-btn {
  background-color: #000000;
}

/*金額の比較==============*/
.bvlgari .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.bvlgari .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.bvlgari .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.bvlgari .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.bvlgari .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.bvlgari .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.bvlgari .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.bvlgari .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.bvlgari .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .bvlgari .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.bvlgari .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .bvlgari .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.bvlgari .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.bvlgari .p-ranking__list {
  margin-top: 20px;
}
.bvlgari .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 20px 5px;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.bvlgari .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.bvlgari .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bvlgari .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000000;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.bvlgari .p-ranking__no .text {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.bvlgari .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-ranking__img {
    height: 130px;
  }
}
.bvlgari .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .bvlgari .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.bvlgari .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .bvlgari .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.bvlgari .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .bvlgari .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.bvlgari .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.bvlgari .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.bvlgari .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.bvlgari .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.bvlgari .p-case-example__goods {
  position: relative;
}
.bvlgari .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.bvlgari .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.bvlgari .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.bvlgari .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.bvlgari .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.bvlgari .p-benefit-brandlist__contents .no .icon {
  fill: #000000;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.bvlgari .p-benefit-purchase .in {
  background: #efefef;
}
.bvlgari .p-benefit-purchase .p-benefit-purchase__txt {
  background: #000000;
}

/*===========
others
===========*/
.bvlgari .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}

.bvlgari .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.bvlgari .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.bvlgari .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #000000;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.bvlgari .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.bvlgari .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.bvlgari .p-brandlist-bnr__text {
  text-align: center;
}
.bvlgari .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.bvlgari .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (min-width: 812px) {
  .bvlgari .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.bvlgari .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.bvlgari .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.bvlgari .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.bvlgari .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
ハリーウィンストン
=============*/
/*===========
メインイメージ
===========*/
.harrywinston .p-main-img__in {
  text-align: center;
}
.harrywinston .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.harrywinston .p-root-title {
  text-align: center;
  background: #dfe0ee;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-title {
    padding: 0px;
    background: #191d50;
  }
}
.harrywinston .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #191d50;
  border-bottom: 6px double #191d50;
  border-left: 1px solid #191d50;
  border-right: 1px solid #191d50;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #191d50;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.harrywinston .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.harrywinston .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-menu__list {
    padding: 17px 0;
  }
}
.harrywinston .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.harrywinston .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-menu__item:first-of-type {
    display: block;
  }
}
.harrywinston .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.harrywinston .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.harrywinston .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.harrywinston .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.harrywinston .p-purchase-bulletin .c-double-btn {
  background-color: #191d50;
}

/*金額の比較==============*/
.harrywinston .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.harrywinston .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.harrywinston .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.harrywinston .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.harrywinston .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #191d50;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #191d50;
}
.harrywinston .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.harrywinston .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.harrywinston .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.harrywinston .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .harrywinston .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.harrywinston .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #191d50;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .harrywinston .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.harrywinston .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.harrywinston .p-ranking__list {
  margin-top: 20px;
}
.harrywinston .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #191d50;
  border-right: 1px solid #191d50;
  padding: 20px 5px;
  text-align: center;
  color: #191d50;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.harrywinston .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.harrywinston .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.harrywinston .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #191d50;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.harrywinston .p-ranking__no .text {
  display: inline-block;
  color: #191d50;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.harrywinston .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-ranking__img {
    height: 130px;
  }
}
.harrywinston .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .harrywinston .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.harrywinston .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .harrywinston .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.harrywinston .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .harrywinston .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.harrywinston .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.harrywinston .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.harrywinston .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.harrywinston .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.harrywinston .p-case-example__goods {
  position: relative;
}
.harrywinston .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.harrywinston .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.harrywinston .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.harrywinston .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.harrywinston .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.harrywinston .p-benefit-brandlist__contents .no .icon {
  fill: #191d50;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.harrywinston .p-benefit-purchase .in {
  background: #dfe0ee;
}
.harrywinston .p-benefit-purchase .p-benefit-purchase__txt {
  background: #191d50;
}

/*===========
others
===========*/
.harrywinston .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #191d50;
}

.harrywinston .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #191d50 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.harrywinston .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.harrywinston .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #191d50;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.harrywinston .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.harrywinston .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #191d50 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.harrywinston .p-brandlist-bnr__text {
  text-align: center;
}
.harrywinston .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #191d50;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.harrywinston .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #191d50;
}
@media screen and (min-width: 812px) {
  .harrywinston .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.harrywinston .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.harrywinston .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.harrywinston .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.harrywinston .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
ティファニー
=============*/
/*===========
メインイメージ
===========*/
.tiffany .p-main-img__in {
  text-align: center;
}
.tiffany .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.tiffany .p-root-title {
  text-align: center;
  background: #d9f4f1;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-title {
    padding: 0px;
    background: #81d8cf;
  }
}
.tiffany .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #81d8cf;
  border-bottom: 6px double #81d8cf;
  border-left: 1px solid #81d8cf;
  border-right: 1px solid #81d8cf;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #81d8cf;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.tiffany .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.tiffany .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-menu__list {
    padding: 17px 0;
  }
}
.tiffany .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.tiffany .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-menu__item:first-of-type {
    display: block;
  }
}
.tiffany .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.tiffany .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.tiffany .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.tiffany .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .tiffany .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.tiffany .p-purchase-bulletin .c-double-btn {
  background-color: #81d8cf;
}

/*金額の比較==============*/
.tiffany .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.tiffany .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .tiffany .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tiffany .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.tiffany .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.tiffany .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #81d8cf;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #81d8cf;
}
.tiffany .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.tiffany .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.tiffany .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.tiffany .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .tiffany .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.tiffany .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #81d8cf;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .tiffany .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.tiffany .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tiffany .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.tiffany .p-ranking__list {
  margin-top: 20px;
}
.tiffany .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #81d8cf;
  border-right: 1px solid #81d8cf;
  padding: 20px 5px;
  text-align: center;
  color: #81d8cf;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tiffany .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.tiffany .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.tiffany .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #81d8cf;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.tiffany .p-ranking__no .text {
  display: inline-block;
  color: #81d8cf;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tiffany .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .tiffany .p-ranking__img {
    height: 130px;
  }
}
.tiffany .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .tiffany .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.tiffany .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .tiffany .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.tiffany .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .tiffany .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.tiffany .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.tiffany .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.tiffany .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.tiffany .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.tiffany .p-case-example__goods {
  position: relative;
}
.tiffany .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.tiffany .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.tiffany .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.tiffany .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.tiffany .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .tiffany .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.tiffany .p-benefit-brandlist__contents .no .icon {
  fill: #81d8cf;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.tiffany .p-benefit-purchase .in {
  background: #d9f4f1;
}
.tiffany .p-benefit-purchase .p-benefit-purchase__txt {
  background: #81d8cf;
}

/*===========
others
===========*/
.tiffany .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #81d8cf;
}

.tiffany .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #81d8cf transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.tiffany .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.tiffany .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #81d8cf;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .tiffany .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.tiffany .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.tiffany .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #81d8cf transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tiffany .p-brandlist-bnr__text {
  text-align: center;
}
.tiffany .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #81d8cf;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .tiffany .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.tiffany .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #81d8cf;
}
@media screen and (min-width: 812px) {
  .tiffany .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.tiffany .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.tiffany .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.tiffany .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.tiffany .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
ロレックス
=============*/
/*===========
メインイメージ
===========*/
.rolex .p-main-img__in {
  text-align: center;
}
.rolex .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.rolex .p-root-title {
  text-align: center;
  background: #e6eeeb;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-title {
    padding: 0px;
    background: #006039;
  }
}
.rolex .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #006039;
  border-bottom: 6px double #006039;
  border-left: 1px solid #006039;
  border-right: 1px solid #006039;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #006039;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.rolex .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.rolex .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-menu__list {
    padding: 17px 0;
  }
}
.rolex .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.rolex .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-menu__item:first-of-type {
    display: block;
  }
}
.rolex .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.rolex .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.rolex .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.rolex .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .rolex .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.rolex .p-purchase-bulletin .c-double-btn {
  background-color: #006039;
}

/*金額の比較==============*/
.rolex .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .rolex .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.rolex .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .rolex .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.rolex .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .rolex .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.rolex .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .rolex .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.rolex .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #006039;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #006039;
}
.rolex .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.rolex .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.rolex .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.rolex .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .rolex .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.rolex .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #006039;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .rolex .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.rolex .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .rolex .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.rolex .p-ranking__list {
  margin-top: 20px;
}
.rolex .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #006039;
  border-right: 1px solid #006039;
  padding: 20px 5px;
  text-align: center;
  color: #006039;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.rolex .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.rolex .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.rolex .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #006039;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.rolex .p-ranking__no .text {
  display: inline-block;
  color: #006039;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.rolex .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .rolex .p-ranking__img {
    height: 130px;
  }
}
.rolex .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .rolex .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.rolex .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .rolex .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.rolex .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .rolex .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.rolex .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.rolex .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.rolex .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.rolex .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.rolex .p-case-example__goods {
  position: relative;
}
.rolex .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.rolex .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.rolex .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.rolex .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.rolex .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .rolex .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.rolex .p-benefit-brandlist__contents .no .icon {
  fill: #006039;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.rolex .p-benefit-purchase .in {
  background: #e6eeeb;
}
.rolex .p-benefit-purchase .p-benefit-purchase__txt {
  background: #006039;
}

/*===========
others
===========*/
.rolex .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #006039;
}

.rolex .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #006039 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.rolex .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .rolex .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.rolex .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #006039;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .rolex .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.rolex .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.rolex .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #006039 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.rolex .p-brandlist-bnr__text {
  text-align: center;
}
.rolex .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #006039;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .rolex .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.rolex .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #006039;
}
@media screen and (min-width: 812px) {
  .rolex .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.rolex .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.rolex .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.rolex .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.rolex .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
オメガ
=============*/
/*===========
メインイメージ
===========*/
.omega .p-main-img__in {
  text-align: center;
}
.omega .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.omega .p-root-title {
  text-align: center;
  background: #f6e5e8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .omega .p-root-title {
    padding: 0px;
    background: #c30d2e;
  }
}
.omega .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #c30d2e;
  border-bottom: 6px double #c30d2e;
  border-left: 1px solid #c30d2e;
  border-right: 1px solid #c30d2e;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #c30d2e;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .omega .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.omega .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.omega .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .omega .p-root-menu__list {
    padding: 17px 0;
  }
}
.omega .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .omega .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.omega .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .omega .p-root-menu__item:first-of-type {
    display: block;
  }
}
.omega .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .omega .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.omega .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .omega .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.omega .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.omega .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .omega .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.omega .p-purchase-bulletin .c-double-btn {
  background-color: #c30d2e;
}

/*金額の比較==============*/
.omega .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .omega .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.omega .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .omega .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.omega .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .omega .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.omega .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .omega .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.omega .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #c30d2e;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #c30d2e;
}
.omega .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.omega .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.omega .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.omega .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .omega .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.omega .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #c30d2e;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .omega .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.omega .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .omega .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.omega .p-ranking__list {
  margin-top: 20px;
}
.omega .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #c30d2e;
  border-right: 1px solid #c30d2e;
  padding: 20px 5px;
  text-align: center;
  color: #c30d2e;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.omega .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.omega .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.omega .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #c30d2e;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.omega .p-ranking__no .text {
  display: inline-block;
  color: #c30d2e;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.omega .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .omega .p-ranking__img {
    height: 130px;
  }
}
.omega .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .omega .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.omega .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .omega .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.omega .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .omega .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.omega .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.omega .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.omega .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.omega .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.omega .p-case-example__goods {
  position: relative;
}
.omega .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.omega .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.omega .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.omega .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.omega .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .omega .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.omega .p-benefit-brandlist__contents .no .icon {
  fill: #c30d2e;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.omega .p-benefit-purchase .in {
  background: #f6e5e8;
}
.omega .p-benefit-purchase .p-benefit-purchase__txt {
  background: #c30d2e;
}

/*===========
others
===========*/
.omega .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #c30d2e;
}

.omega .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #c30d2e transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.omega .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .omega .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.omega .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #c30d2e;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .omega .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.omega .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.omega .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #c30d2e transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.omega .p-brandlist-bnr__text {
  text-align: center;
}
.omega .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #c30d2e;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .omega .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.omega .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #c30d2e;
}
@media screen and (min-width: 812px) {
  .omega .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.omega .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.omega .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.omega .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.omega .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
タグホイヤー
=============*/
/*===========
メインイメージ
===========*/
.tagheuer .p-main-img__in {
  text-align: center;
}
.tagheuer .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.tagheuer .p-root-title {
  text-align: center;
  background: #f7dcd8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-title {
    padding: 0px;
    background: #e5212e;
  }
}
.tagheuer .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #e5212e;
  border-bottom: 6px double #e5212e;
  border-left: 1px solid #e5212e;
  border-right: 1px solid #e5212e;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #e5212e;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.tagheuer .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.tagheuer .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-menu__list {
    padding: 17px 0;
  }
}
.tagheuer .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.tagheuer .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-menu__item:first-of-type {
    display: block;
  }
}
.tagheuer .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.tagheuer .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.tagheuer .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.tagheuer .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.tagheuer .p-purchase-bulletin .c-double-btn {
  background-color: #e5212e;
}

/*金額の比較==============*/
.tagheuer .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.tagheuer .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tagheuer .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.tagheuer .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.tagheuer .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #e5212e;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #e5212e;
}
.tagheuer .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.tagheuer .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.tagheuer .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.tagheuer .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .tagheuer .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.tagheuer .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #e5212e;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .tagheuer .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.tagheuer .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.tagheuer .p-ranking__list {
  margin-top: 20px;
}
.tagheuer .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #e5212e;
  border-right: 1px solid #e5212e;
  padding: 20px 5px;
  text-align: center;
  color: #e5212e;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tagheuer .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.tagheuer .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.tagheuer .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #e5212e;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.tagheuer .p-ranking__no .text {
  display: inline-block;
  color: #e5212e;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tagheuer .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-ranking__img {
    height: 130px;
  }
}
.tagheuer .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .tagheuer .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.tagheuer .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .tagheuer .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.tagheuer .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .tagheuer .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.tagheuer .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.tagheuer .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.tagheuer .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.tagheuer .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.tagheuer .p-case-example__goods {
  position: relative;
}
.tagheuer .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.tagheuer .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.tagheuer .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.tagheuer .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.tagheuer .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.tagheuer .p-benefit-brandlist__contents .no .icon {
  fill: #e5212e;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.tagheuer .p-benefit-purchase .in {
  background: #f7dcd8;
}
.tagheuer .p-benefit-purchase .p-benefit-purchase__txt {
  background: #e5212e;
}

/*===========
others
===========*/
.tagheuer .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #e5212e;
}

.tagheuer .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #e5212e transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.tagheuer .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.tagheuer .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #e5212e;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.tagheuer .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.tagheuer .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #e5212e transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.tagheuer .p-brandlist-bnr__text {
  text-align: center;
}
.tagheuer .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #e5212e;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.tagheuer .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #e5212e;
}
@media screen and (min-width: 812px) {
  .tagheuer .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.tagheuer .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.tagheuer .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.tagheuer .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.tagheuer .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
パネライ
=============*/
/*===========
メインイメージ
===========*/
.panerai .p-main-img__in {
  text-align: center;
}
.panerai .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.panerai .p-root-title {
  text-align: center;
  background: #f7dcd8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-title {
    padding: 0px;
    background: #e5212e;
  }
}
.panerai .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #e5212e;
  border-bottom: 6px double #e5212e;
  border-left: 1px solid #e5212e;
  border-right: 1px solid #e5212e;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #e5212e;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.panerai .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.panerai .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-menu__list {
    padding: 17px 0;
  }
}
.panerai .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.panerai .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-menu__item:first-of-type {
    display: block;
  }
}
.panerai .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.panerai .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.panerai .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.panerai .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .panerai .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.panerai .p-purchase-bulletin .c-double-btn {
  background-color: #e5212e;
}

/*金額の比較==============*/
.panerai .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .panerai .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.panerai .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .panerai .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.panerai .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .panerai .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.panerai .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .panerai .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.panerai .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #e5212e;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #e5212e;
}
.panerai .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.panerai .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.panerai .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.panerai .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .panerai .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.panerai .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #e5212e;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .panerai .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.panerai .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .panerai .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.panerai .p-ranking__list {
  margin-top: 20px;
}
.panerai .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #e5212e;
  border-right: 1px solid #e5212e;
  padding: 20px 5px;
  text-align: center;
  color: #e5212e;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.panerai .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.panerai .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.panerai .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #e5212e;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.panerai .p-ranking__no .text {
  display: inline-block;
  color: #e5212e;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.panerai .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .panerai .p-ranking__img {
    height: 130px;
  }
}
.panerai .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .panerai .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.panerai .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .panerai .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.panerai .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .panerai .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.panerai .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.panerai .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.panerai .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.panerai .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.panerai .p-case-example__goods {
  position: relative;
}
.panerai .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.panerai .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.panerai .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.panerai .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.panerai .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .panerai .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.panerai .p-benefit-brandlist__contents .no .icon {
  fill: #e5212e;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.panerai .p-benefit-purchase .in {
  background: #f7dcd8;
}
.panerai .p-benefit-purchase .p-benefit-purchase__txt {
  background: #e5212e;
}

/*===========
others
===========*/
.panerai .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #e5212e;
}

.panerai .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #e5212e transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.panerai .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .panerai .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.panerai .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #e5212e;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .panerai .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.panerai .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.panerai .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #e5212e transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.panerai .p-brandlist-bnr__text {
  text-align: center;
}
.panerai .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #e5212e;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .panerai .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.panerai .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #e5212e;
}
@media screen and (min-width: 812px) {
  .panerai .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.panerai .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.panerai .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.panerai .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.panerai .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
IWC
=============*/
/*===========
メインイメージ
===========*/
.iwc .p-main-img__in {
  text-align: center;
}
.iwc .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.iwc .p-root-title {
  text-align: center;
  background: #e8ebe5;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-title {
    padding: 0px;
    background: #333333;
  }
}
.iwc .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #333333;
  border-bottom: 6px double #333333;
  border-left: 1px solid #333333;
  border-right: 1px solid #333333;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #333333;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.iwc .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.iwc .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-menu__list {
    padding: 17px 0;
  }
}
.iwc .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.iwc .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-menu__item:first-of-type {
    display: block;
  }
}
.iwc .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.iwc .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.iwc .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.iwc .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .iwc .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.iwc .p-purchase-bulletin .c-double-btn {
  background-color: #333333;
}

/*金額の比較==============*/
.iwc .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .iwc .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.iwc .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .iwc .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.iwc .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .iwc .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.iwc .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .iwc .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.iwc .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #333333;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #333333;
}
.iwc .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.iwc .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.iwc .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.iwc .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .iwc .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.iwc .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #333333;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .iwc .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.iwc .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .iwc .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.iwc .p-ranking__list {
  margin-top: 20px;
}
.iwc .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #333333;
  border-right: 1px solid #333333;
  padding: 20px 5px;
  text-align: center;
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.iwc .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.iwc .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.iwc .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #333333;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.iwc .p-ranking__no .text {
  display: inline-block;
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.iwc .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .iwc .p-ranking__img {
    height: 130px;
  }
}
.iwc .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .iwc .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.iwc .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .iwc .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.iwc .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .iwc .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.iwc .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.iwc .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.iwc .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.iwc .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.iwc .p-case-example__goods {
  position: relative;
}
.iwc .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.iwc .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.iwc .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.iwc .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.iwc .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .iwc .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.iwc .p-benefit-brandlist__contents .no .icon {
  fill: #333333;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.iwc .p-benefit-purchase .in {
  background: #e8ebe5;
}
.iwc .p-benefit-purchase .p-benefit-purchase__txt {
  background: #333333;
}

/*===========
others
===========*/
.iwc .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #333333;
}

.iwc .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #333333 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.iwc .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .iwc .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.iwc .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #333333;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .iwc .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.iwc .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.iwc .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #333333 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.iwc .p-brandlist-bnr__text {
  text-align: center;
}
.iwc .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #333333;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .iwc .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.iwc .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #333333;
}
@media screen and (min-width: 812px) {
  .iwc .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.iwc .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.iwc .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.iwc .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.iwc .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
ウブロ
=============*/
/*===========
メインイメージ
===========*/
.hublot .p-main-img__in {
  text-align: center;
}
.hublot .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.hublot .p-root-title {
  text-align: center;
  background: #f7dcd8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.hublot .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.hublot .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.hublot .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-menu__list {
    padding: 17px 0;
  }
}
.hublot .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.hublot .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-menu__item:first-of-type {
    display: block;
  }
}
.hublot .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.hublot .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.hublot .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.hublot .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .hublot .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.hublot .p-purchase-bulletin .c-double-btn {
  background-color: #000000;
}

/*金額の比較==============*/
.hublot .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .hublot .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.hublot .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .hublot .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.hublot .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .hublot .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.hublot .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .hublot .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.hublot .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.hublot .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.hublot .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.hublot .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.hublot .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .hublot .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.hublot .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .hublot .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.hublot .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .hublot .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.hublot .p-ranking__list {
  margin-top: 20px;
}
.hublot .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 20px 5px;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.hublot .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.hublot .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.hublot .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000000;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.hublot .p-ranking__no .text {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.hublot .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .hublot .p-ranking__img {
    height: 130px;
  }
}
.hublot .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .hublot .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.hublot .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .hublot .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.hublot .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .hublot .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.hublot .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.hublot .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.hublot .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.hublot .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.hublot .p-case-example__goods {
  position: relative;
}
.hublot .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.hublot .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.hublot .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.hublot .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.hublot .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .hublot .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.hublot .p-benefit-brandlist__contents .no .icon {
  fill: #000000;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.hublot .p-benefit-purchase .in {
  background: #f7dcd8;
}
.hublot .p-benefit-purchase .p-benefit-purchase__txt {
  background: #000000;
}

/*===========
others
===========*/
.hublot .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}

.hublot .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.hublot .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .hublot .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.hublot .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #000000;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .hublot .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.hublot .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.hublot .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.hublot .p-brandlist-bnr__text {
  text-align: center;
}
.hublot .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .hublot .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.hublot .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (min-width: 812px) {
  .hublot .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.hublot .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.hublot .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.hublot .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.hublot .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
オーデマピゲ
=============*/
/*===========
メインイメージ
===========*/
.audemars-piguet .p-main-img__in {
  text-align: center;
}
.audemars-piguet .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.audemars-piguet .p-root-title {
  text-align: center;
  background: #f9f0e8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-title {
    padding: 0px;
    background: #000000;
  }
}
.audemars-piguet .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #000000;
  border-bottom: 6px double #000000;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #000000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.audemars-piguet .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.audemars-piguet .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-menu__list {
    padding: 17px 0;
  }
}
.audemars-piguet .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.audemars-piguet .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-menu__item:first-of-type {
    display: block;
  }
}
.audemars-piguet .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.audemars-piguet .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.audemars-piguet .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.audemars-piguet .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.audemars-piguet .p-purchase-bulletin .c-double-btn {
  background-color: #000000;
}

/*金額の比較==============*/
.audemars-piguet .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.audemars-piguet .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.audemars-piguet .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.audemars-piguet .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.audemars-piguet .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.audemars-piguet .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.audemars-piguet .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.audemars-piguet .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.audemars-piguet .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .audemars-piguet .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.audemars-piguet .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #000000;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .audemars-piguet .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.audemars-piguet .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.audemars-piguet .p-ranking__list {
  margin-top: 20px;
}
.audemars-piguet .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #000000;
  border-right: 1px solid #000000;
  padding: 20px 5px;
  text-align: center;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.audemars-piguet .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.audemars-piguet .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.audemars-piguet .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000000;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.audemars-piguet .p-ranking__no .text {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.audemars-piguet .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-ranking__img {
    height: 130px;
  }
}
.audemars-piguet .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .audemars-piguet .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.audemars-piguet .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .audemars-piguet .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.audemars-piguet .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .audemars-piguet .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.audemars-piguet .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.audemars-piguet .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.audemars-piguet .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.audemars-piguet .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.audemars-piguet .p-case-example__goods {
  position: relative;
}
.audemars-piguet .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.audemars-piguet .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.audemars-piguet .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.audemars-piguet .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.audemars-piguet .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.audemars-piguet .p-benefit-brandlist__contents .no .icon {
  fill: #000000;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.audemars-piguet .p-benefit-purchase .in {
  background: #f9f0e8;
}
.audemars-piguet .p-benefit-purchase .p-benefit-purchase__txt {
  background: #000000;
}

/*===========
others
===========*/
.audemars-piguet .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #000000;
}

.audemars-piguet .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #000000 transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.audemars-piguet .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.audemars-piguet .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #000000;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.audemars-piguet .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.audemars-piguet .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #000000 transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.audemars-piguet .p-brandlist-bnr__text {
  text-align: center;
}
.audemars-piguet .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #000000;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.audemars-piguet .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #000000;
}
@media screen and (min-width: 812px) {
  .audemars-piguet .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.audemars-piguet .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.audemars-piguet .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.audemars-piguet .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.audemars-piguet .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/*=============
パテックフィリップ
=============*/
/*===========
メインイメージ
===========*/
.patek-fhilippe .p-main-img__in {
  text-align: center;
}
.patek-fhilippe .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.patek-fhilippe .p-root-title {
  text-align: center;
  background: #f9f0e8;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-title {
    padding: 0px;
    background: #c0af9f;
  }
}
.patek-fhilippe .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #c0af9f;
  border-bottom: 6px double #c0af9f;
  border-left: 1px solid #c0af9f;
  border-right: 1px solid #c0af9f;
  margin: 0 auto;
  padding: 10px 5px;
  background: #ffffff;
  color: #c0af9f;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.patek-fhilippe .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.patek-fhilippe .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-menu__list {
    padding: 17px 0;
  }
}
.patek-fhilippe .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.patek-fhilippe .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-menu__item:first-of-type {
    display: block;
  }
}
.patek-fhilippe .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.patek-fhilippe .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.patek-fhilippe .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.patek-fhilippe .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-root-menu__link .name {
    display: block;
  }
}

/*===========
買取速報
===========*/
.patek-fhilippe .p-purchase-bulletin .c-double-btn {
  background-color: #c0af9f;
}

/*金額の比較==============*/
.patek-fhilippe .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.patek-fhilippe .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.patek-fhilippe .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.patek-fhilippe .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.patek-fhilippe .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #c0af9f;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #c0af9f;
}
.patek-fhilippe .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.patek-fhilippe .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.patek-fhilippe .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.patek-fhilippe .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .patek-fhilippe .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.patek-fhilippe .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #c0af9f;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .patek-fhilippe .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.patek-fhilippe .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

/*===========
高価買取ランキング
===========*/
.patek-fhilippe .p-ranking__list {
  margin-top: 20px;
}
.patek-fhilippe .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #c0af9f;
  border-right: 1px solid #c0af9f;
  padding: 20px 5px;
  text-align: center;
  color: #c0af9f;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.patek-fhilippe .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.patek-fhilippe .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.patek-fhilippe .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #c0af9f;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.patek-fhilippe .p-ranking__no .text {
  display: inline-block;
  color: #c0af9f;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.patek-fhilippe .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-ranking__img {
    height: 130px;
  }
}
.patek-fhilippe .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .patek-fhilippe .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.patek-fhilippe .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .patek-fhilippe .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.patek-fhilippe .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .patek-fhilippe .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取実績例
===========*/
.patek-fhilippe .p-case-example__item {
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.patek-fhilippe .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.patek-fhilippe .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.patek-fhilippe .p-case-example__contents .p-omparison-company {
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__contents .p-omparison-company .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__contents .p-omparison-company .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__contents .p-omparison-company .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__contents .p-omparison-company .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.patek-fhilippe .p-case-example__goods {
  position: relative;
}
.patek-fhilippe .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.patek-fhilippe .p-case-example__goods .goods-omparison {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #CBBB7B;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__goods .goods-omparison {
    padding-bottom: 41px;
  }
}
.patek-fhilippe .p-case-example__goods .goods-omparison .sub {
  font-size: 20px;
  font-size: 1.25rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__goods .goods-omparison .sub {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.patek-fhilippe .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__goods .goods-omparison .main {
    font-size: 62px;
    font-size: 3.875rem;
  }
}
.patek-fhilippe .p-case-example__goods .goods-omparison .main .en {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-case-example__goods .goods-omparison .main .en {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}

/*===========
バナー
===========*/
/*===========
benefit
===========*/
.patek-fhilippe .p-benefit-brandlist__contents .no .icon {
  fill: #c0af9f;
  opacity: 0.2;
}

/*===========
こんな状態でも買取可能です
===========*/
.patek-fhilippe .p-benefit-purchase .in {
  background: #f9f0e8;
}
.patek-fhilippe .p-benefit-purchase .p-benefit-purchase__txt {
  background: #c0af9f;
}

/*===========
others
===========*/
.patek-fhilippe .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in {
  background: #c0af9f;
}

.patek-fhilippe .p-itemlist-table__menu .menu-item.js-tab-active .menu-item__in::before {
  border-color: #c0af9f transparent transparent transparent;
}

/*===========
リンクバナー
===========*/
.patek-fhilippe .p-brandlist-bnr__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-brandlist-bnr__item {
    margin-bottom: 0;
  }
}
.patek-fhilippe .p-brandlist-bnr__link {
  display: block;
  border: 1px solid #c0af9f;
  min-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  padding: 25px 0;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-brandlist-bnr__link {
    min-height: 140px;
    padding: 34px 0;
  }
}
.patek-fhilippe .p-brandlist-bnr__link::before {
  content: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_simple_right_w.svg);
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 7px;
  right: 7px;
  z-index: 10;
}
.patek-fhilippe .p-brandlist-bnr__link::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 50px 50px;
  border-color: transparent transparent #c0af9f transparent;
  position: absolute;
  bottom: 0;
  right: 0;
}
.patek-fhilippe .p-brandlist-bnr__text {
  text-align: center;
}
.patek-fhilippe .p-brandlist-bnr__text .main {
  display: block;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #c0af9f;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-brandlist-bnr__text .main {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.patek-fhilippe .p-brandlist-bnr__text .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #c0af9f;
}
@media screen and (min-width: 812px) {
  .patek-fhilippe .p-brandlist-bnr__text .sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.patek-fhilippe .p-brandlist-bnr .type2 .p-brandlist-bnr__link {
  border-color: #A0A0A0;
}
.patek-fhilippe .p-brandlist-bnr .type2 .p-brandlist-bnr__link::after {
  border-color: transparent transparent #A0A0A0 transparent;
}
.patek-fhilippe .p-brandlist-bnr .type2 .p-brandlist-bnr__text .main,
.patek-fhilippe .p-brandlist-bnr .type2 .p-brandlist-bnr__text .sub {
  color: #A0A0A0;
}

/* =========================================================
取扱ブランド　サブブランド
========================================================= */
/*===========
最上部のコンテンツ
============*/
.p-sub-brand {
  background-color: #000000;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FF000000', endColorstr='#FF999999');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIxJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzk5OTk5OSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #000000), color-stop(100%, #999999));
  background-image: -moz-linear-gradient(top, #000000 1%, #999999 100%);
  background-image: -webkit-linear-gradient(top, #000000 1%, #999999 100%);
  background-image: linear-gradient(to bottom, #000000 1%, #999999 100%);
  padding: 20px 15px;
}
@media screen and (min-width: 812px) {
  .p-sub-brand {
    padding: 30px 15px;
  }
}
.p-sub-brand__img {
  text-align: center;
}
.p-sub-brand__title {
  margin-top: 20px;
  color: #ffffff;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__title {
    margin-top: 30px;
  }
}
.p-sub-brand__title .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 3px;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__title .sub {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-sub-brand__title .main {
  display: block;
  font-weight: bold;
  font-size: 23px;
  font-size: 1.4375rem;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__title .main {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

/*高価買取==========*/
.p-sub-brand-pickup {
  margin-top: 20px;
  color: #ffffff;
}
.p-sub-brand-pickup__title {
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-sub-brand-pickup__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-sub-brand-pickup__text {
  color: #ffffff;
  margin-top: 20px;
}

/*テキストコンテンツ==========*/
.p-sub-brand__box {
  margin-top: 50px;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__box {
    margin-top: 80px;
  }
}
.p-sub-brand__box .p-sub-brand-contents {
  margin-top: 50px;
  padding-top: 50px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__box .p-sub-brand-contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-sub-brand__box .p-sub-brand-contents::before {
  content: '';
  width: 60%;
  height: 1px;
  background: #eeeeee;
  position: absolute;
  top: 0;
  left: calc(50% - 30%);
}
.p-sub-brand__box .p-sub-brand-contents:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.p-sub-brand__box .p-sub-brand-contents:first-of-type::before {
  content: none;
}
.p-sub-brand__box .p-sub-brand-contents__photo {
  padding-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__box .p-sub-brand-contents__photo {
    max-width: 35%;
    padding-bottom: 0;
    padding-right: 5%;
  }
}
.p-sub-brand__box .p-sub-brand-contents__contents {
  width: 100%;
}
.p-sub-brand__box .p-sub-brand-contents__title {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 812px) {
  .p-sub-brand__box .p-sub-brand-contents__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-sub-brand__box .p-sub-brand-contents__text {
  color: #ffffff;
}

/*===========
コラム一覧
============*/
.sub-brand .p-column-list {
  margin-bottom: 30px;
}
.sub-brand .p-column-list .p-column-list__item {
  max-width: 50%;
}
@media screen and (min-width: 812px) {
  .sub-brand .p-column-list .p-column-list__item {
    max-width: 33.3%;
  }
}
@media screen and (min-width: 812px) {
  .sub-brand .p-column-list .p-column-list__item .p-column-list__photo {
    height: 180px;
  }
}

/* =========================================================
取扱ブランド　コラム　column-brand
========================================================= */
/*===================
メインイメージ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
@media screen and (min-width: 812px) {
  .column-brand .p-column-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.column-brand .p-column-main__contents {
  padding: 10px 0;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .column-brand .p-column-main__contents {
    text-align: left;
    padding-right: 15px;
  }
}
.column-brand .p-column-main__ttl {
  color: #4BA0B8;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.3;
  word-break: break-all;
}
@media screen and (min-width: 812px) {
  .column-brand .p-column-main__ttl {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.column-brand .p-column-main__txt {
  padding-top: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  word-break: break-all;
}
@media screen and (min-width: 812px) {
  .column-brand .p-column-main__txt {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.column-brand .p-column-main__photo {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .column-brand .p-column-main__photo {
    max-width: 40%;
  }
}
.column-brand .p-column-main__photo img {
  min-width: 250px;
  max-width: 300px;
  width: 100%;
}

/*===================
事前査定 バナー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.column-brand .p-column-contents {
  margin-top: 40px;
}
.column-brand .p-column-contents__ttl {
  padding-top: 20px;
}
.column-brand .p-column-contents__link {
  padding: 30px 0;
  text-align: center;
}

/* =========================================================
ブランド　テンプレート
========================================================= */
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
バッグ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*共通*/
.tmp.bag .c-ttl-basic .sub,
.tmp.tmp-watch .c-ttl-basic .sub {
  color: #8a8a8a;
}

/*===========
メインイメージ
===========*/
.tmp .p-main-img__in {
  text-align: center;
}
.tmp .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
小タイトル
===========*/
.tmp .p-root {
  border: none;
  background: #ffffff;
}

.tmp .p-root-title,
.tmp-main .p-root-title {
  text-align: center;
  background: #E5E5E5;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-title,
  .tmp-main .p-root-title {
    padding: 0px;
    background: #4BA0B8;
  }
}
.tmp .p-root-title .in,
.tmp-main .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #ffffff;
  border-bottom: 6px double #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  margin: 0 auto;
  padding: 10px 5px;
  color: #ffffff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-title .in,
  .tmp-main .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    color: #ffffff;
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*===========
ページ内メニュー
===========*/
.tmp .p-root-menu {
  -moz-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  -webkit-box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  box-shadow: 1.928px 2.298px 10px 0px rgba(4, 0, 0, 0.17);
  overflow: hidden;
}
.tmp .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-menu__list {
    padding: 17px 0;
  }
}
.tmp .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #E5E5E5;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #E5E5E5;
  }
}
.tmp .p-root-menu__item:first-of-type {
  display: none;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-menu__item:first-of-type {
    display: block;
  }
}
.tmp .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-menu__item:last-of-type {
    border-right: 1px solid #E5E5E5;
  }
}
.tmp .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #000000;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_black.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.tmp .p-root-menu__link:hover {
  background-color: #eeeeee;
}
.tmp .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .tmp .p-root-menu__link .name {
    display: block;
  }
}

.tmp.tmp-tableware .p-root-menu .p-root-menu__item {
  width: 25%;
}

/*===========
買取速報
===========*/
.tmp .c-double-btn {
  background-image: none;
}

/*===========
高価買取実績例
===========*/
.tmp .p-case-example {
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example {
    margin-top: 50px;
  }
}
.tmp .p-case-example__item {
  padding: 0 0 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__item {
    padding: 0 0 80px;
    margin-bottom: 80px;
  }
}
.tmp .p-case-example__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__item:last-of-type {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__item .in {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__item:nth-child(even) .in {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.tmp .p-case-example__contents {
  max-width: 580px;
  width: 100%;
  text-align: center;
  border-top: 6px double #cccccc;
  border-bottom: 6px double #cccccc;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  padding: 25px 10px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__contents {
    padding: 40px 10px;
    margin: 0 10px 0 0;
  }
}
.tmp .p-case-example__contents .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__contents .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.tmp .p-case-example__contents .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__contents .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 576px) {
  .tmp .p-case-example__contents .p-omparison-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.tmp .p-case-example__contents .p-omparison-company__item {
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__contents .p-omparison-company__item {
    max-width: 230px;
    margin-bottom: 0;
  }
}
.tmp .p-case-example__contents .p-omparison-company__item .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__contents .p-omparison-company__item .company {
    margin-bottom: 15px;
  }
}
.tmp .p-case-example__contents .p-omparison-company__item .company-name {
  border: 1px solid #8a8a8a;
  padding: 10px 5px;
  margin-bottom: 25px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  color: #8a8a8a;
}
.tmp .p-case-example__contents .p-omparison-company__item .company-pay {
  font-size: 16px;
  font-size: 1rem;
  color: #8a8a8a;
}
.tmp .p-case-example__contents .p-omparison-company__item .company-pay__count {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  text-align: left;
}
.tmp .p-case-example__contents .p-omparison-company__item .company-pay__count:first-of-type {
  margin-top: 0;
}
.tmp .p-case-example__contents .p-omparison-company__item .company-pay__count .name {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100px;
  position: relative;
}
.tmp .p-case-example__contents .p-omparison-company__item .company-pay__count .name::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10%;
  display: block;
  width: 50%;
  height: 1px;
  background: #8a8a8a;
}
.tmp .p-case-example__contents .p-omparison-company__item .company-pay__count .pay {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  width: calc(100% - 100px);
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka {
  margin-bottom: 0;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__contents .p-omparison-company__item.maruka {
    max-width: 260px;
    width: 100%;
  }
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka .company-name {
  background: #8a8a8a;
  color: #ffffff;
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count {
  color: #000000;
  text-align: center;
  display: block;
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count .name {
  display: block;
  width: 100%;
  font-size: 17px;
  font-size: 1.0625rem;
  margin-bottom: 10px;
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count .name::before {
  content: none;
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count .pay {
  color: #000000;
  display: block;
  width: 100%;
  font-size: 27px;
  font-size: 1.6875rem;
}
.tmp .p-case-example__contents .p-omparison-company__item.maruka .company-pay__count.total {
  border-top-color: #000000;
}
.tmp .p-case-example__goods {
  position: relative;
}
.tmp .p-case-example__goods .goods-photo {
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__goods .goods-photo {
    width: 340px;
  }
}
.tmp .p-case-example__goods .goods-omparison {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #8a8a8a;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  text-align: center;
  padding-top: 70px;
}
.tmp .p-case-example__goods .goods-omparison .sub {
  font-size: 15px;
  font-size: 0.9375rem;
  display: block;
  padding-bottom: 5px;
  letter-spacing: 8px;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__goods .goods-omparison .sub {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tmp .p-case-example__goods .goods-omparison .main {
  display: block;
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__goods .goods-omparison .main {
    font-size: 52px;
    font-size: 3.25rem;
  }
}
.tmp .p-case-example__goods .goods-omparison .main .en {
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 812px) {
  .tmp .p-case-example__goods .goods-omparison .main .en {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*===========
高価買取ランキング
===========*/
/*金額の比較==============*/
.tmp .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .tmp .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.tmp .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .tmp .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tmp .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .tmp .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-omparison .p-omparison-company .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.tmp .p-omparison .p-omparison-company .other-company .company {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 812px) {
  .tmp .p-omparison .p-omparison-company .other-company .company {
    margin-bottom: 15px;
  }
}
.tmp .p-omparison .p-omparison-company .other-company .company-name {
  border: 2px solid #000000;
  padding: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-right: 5px;
  font-weight: bold;
  color: #000000;
}
.tmp .p-omparison .p-omparison-company .other-company .company-pay {
  font-size: 16px;
  font-size: 1rem;
}
.tmp .p-omparison .p-omparison-company .other-company .company.company-b {
  margin-left: 10px;
}
.tmp .p-omparison .p-omparison-company .other-company .company.company-b .company-name {
  border-color: #8D8D8D;
  color: #8D8D8D;
}
.tmp .p-omparison .p-omparison-company .other-company .company.company-b .company-pay {
  color: #8D8D8D;
}
@media screen and (min-width: 576px) {
  .tmp .p-omparison .p-omparison-company .company-maruka {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.tmp .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #4BA0B8;
  padding: 5px;
  margin-bottom: 5px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  margin-right: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .tmp .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 0;
    width: auto;
  }
}
.tmp .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 25px;
  font-size: 1.5625rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tmp .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.tmp .p-ranking__list {
  margin-top: 20px;
}
.tmp .p-ranking__list__ttl {
  width: 100%;
  max-width: 400px;
  margin: 10px auto;
  border-left: 1px solid #4BA0B8;
  border-right: 1px solid #4BA0B8;
  padding: 20px 5px;
  text-align: center;
  color: #4BA0B8;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__list__ttl {
    font-size: 32px;
    font-size: 2rem;
  }
}
.tmp .p-ranking__item {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item {
    padding: 20px 10px 20px 20px;
    height: auto;
    min-height: 234px;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 {
    height: 478px;
    text-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .p-ranking__img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    text-align: center;
    display: inline-block;
    height: auto;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .p-ranking__img img {
    max-width: 200px;
    display: inline-block;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .p-ranking__contents {
    max-width: 100%;
    padding-left: 0;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .p-omparison-company {
    padding: 0;
    display: inline-block;
    max-width: 100%;
  }
}
.tmp .p-ranking__item.no01 .other-company {
  display: block;
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .other-company .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .other-company .company.company-b {
    margin-left: 25px;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .company-maruka .company-name {
    font-size: 16px;
    font-size: 1rem;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__item.no01 .company-maruka .company-pay {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.tmp .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #000000;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__no {
    top: 20px;
    left: 20px;
  }
}
.tmp .p-ranking__no .text {
  display: inline-block;
  color: #000000;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tmp .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .tmp .p-ranking__img {
    height: 130px;
  }
}
.tmp .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .tmp .p-ranking__contents.p-omparison {
    max-width: calc(100% - 130px);
  }
}
.tmp .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
@media screen and (min-width: 1000px) {
  .tmp .p-ranking__contents.p-omparison .other-company {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
}
.tmp .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}
@media screen and (min-width: 1000px) {
  .tmp .p-ranking__contents.p-omparison .other-company .company.company-b {
    margin-left: 10px;
  }
}

/*===========
高価買取ならマルカ
===========*/
.tmp .p-benefit-brandlist__contents .no .icon {
  opacity: 0.5;
  fill: #cccccc;
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.tmp .p-hospitality .p-hospitality__list {
  margin: 0;
  padding: 40px 0 20px;
  background: #FAFAFA;
}

.tmp .p-benefit-purchase__txt {
  background: #000000;
}

/*==========
取扱ブランド
===========*/
.tmp .p-itemlist-table {
  border-top: 6px double #eeeeee;
  border-bottom: 6px double #eeeeee;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #eeeeee;
}

/*==========
買取にマルカが強い理由
===========*/
.tmp .p-benefit-exponent {
  margin: 10px auto 10px;
  border-top: 1px solid #8d8d96;
  border-bottom: 1px solid #8d8d96;
  /*枠の装飾====*/
}
.tmp .p-benefit-exponent__in {
  margin: -30px 20px;
  border-left: 1px solid #8d8d96;
  border-right: 1px solid #8d8d96;
  position: relative;
}
.tmp .p-benefit-exponent__contents {
  margin: 10px;
  padding: 50px 10px;
  text-align: center;
  position: relative;
}
.tmp .p-benefit-exponent__ttl {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  color: #8d8d96;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 30px auto;
}
@media screen and (min-width: 812px) {
  .tmp .p-benefit-exponent__ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.tmp .p-benefit-exponent .c-basic-txt, .tmp .p-benefit-exponent .p-basic-list__item, .tmp .p-benefit-exponent .p-ol-list__item, .tmp .p-benefit-exponent .p-ol-list--sub__item, .tmp .p-benefit-exponent .p-ol-list--kana__item {
  margin: 15px auto 0;
  max-width: 700px;
  text-align: left;
}
.tmp .p-benefit-exponent__brow {
  position: absolute;
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 812px) {
  .tmp .p-benefit-exponent__brow {
    width: 27px;
    height: 27px;
  }
}
.tmp .p-benefit-exponent__brow.left-down {
  left: 0;
  bottom: 30px;
}
.tmp .p-benefit-exponent__brow.left-top {
  left: 0;
  top: 30px;
}
.tmp .p-benefit-exponent__brow.right-down {
  right: 0;
  bottom: 30px;
}
.tmp .p-benefit-exponent__brow.right-top {
  right: 0;
  top: 30px;
}
.tmp .p-benefit-exponent__brow svg {
  fill: #8d8d96;
}

/*==========
できるだけ高く買ってもらうコツ
===========*/
.tmp .p-points__item {
  margin-bottom: 15px;
}
.tmp .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tmp .p-points__in {
    padding: 40px 10px;
  }
}
.tmp .p-points__ttl {
  color: #8d8d96;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .tmp .p-points__ttl {
    margin-bottom: 20px;
  }
}
.tmp .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tmp .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.tmp .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .tmp .p-points__img {
    margin: 0 auto 20px;
  }
}
.tmp .p-points__point {
  text-align: center;
  color: #8d8d96;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .tmp .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.tmp .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .tmp .p-points__text {
    max-width: 250px;
  }
}

/*==========
取扱ブランド
===========*/
.tmp .p-brandlist__list {
  background: #ffffff;
}

/*その他========*/
/*店舗一覧*/
/* =========================================================
店舗から探す　shop
========================================================= */
/*===================
一覧
===================*/
.p-shop {
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .p-shop {
    margin-top: 50px;
  }
}

.p-shop-map {
  position: relative;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_w.svg) no-repeat top;
  background-color: #F9F9F9;
  padding-top: 60px;
}
@media screen and (min-width: 812px) {
  .p-shop-map {
    padding-top: 100px;
  }
}
.p-shop-map__list {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/shop/img_map.png) no-repeat top;
  background-size: contain;
  position: relative;
  background-size: 100px;
  padding: 100px 0 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-map__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    background-size: 230px;
    padding: 260px 0 10px;
    height: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .p-shop-map__list {
    padding: 20px 0;
    background-position: top;
    background-size: auto;
    width: 100%;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
}
.p-shop-map .p-map-area {
  overflow: hidden;
  margin: 0 auto 20px;
  background: #CBEDF7;
  border-radius: 10px;
  max-width: 350px;
  text-align: center;
  position: relative;
  transition: .3s;
  cursor: pointer;
}
.p-shop-map .p-map-area a.a100:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 5;
}
.p-shop-map .p-map-area a.a100.in-link {
  position: relative;
  z-index: 5;
}
.p-shop-map .p-map-area:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .p-shop-map .p-map-area {
    width: 30%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (min-width: 1000px) {
  .p-shop-map .p-map-area {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    border-radius: 50%;
    width: 350px;
    height: 350px;
    margin: 0 20px;
  }
}
.p-shop-map .p-map-area__text {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #00A0E9;
  line-height: 1.6;
  width: 100%;
  padding: 15px 0;
}
@media screen and (min-width: 1000px) {
  .p-shop-map .p-map-area__text {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 35px 10px 0;
    line-height: 2;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-shop-map .p-map-area__ttl {
  display: block;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_w.svg) no-repeat bottom 7.5px center;
  background-size: 15px 15px;
  padding-bottom: 30px;
  background-color: #00A0E9;
  padding: 10px 0 25px;
  color: #ffffff;
  font-size: 15px;
  font-size: 0.9375rem;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .p-shop-map .p-map-area__ttl {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 20px 0 30px;
  }
}
.p-shop-map .p-map-area.tokyo {
  background-color: #FFE695;
}
@media screen and (min-width: 1000px) {
  .p-shop-map .p-map-area.tokyo {
    margin: 140px -35px 0 0;
  }
}
.p-shop-map .p-map-area.tokyo .p-map-area__text {
  color: #F39800;
}
.p-shop-map .p-map-area.tokyo .p-map-area__ttl {
  background-color: #F39800;
}
.p-shop-map .p-map-area.kyoto {
  background-color: #CBEDF7;
}
@media screen and (min-width: 1000px) {
  .p-shop-map .p-map-area.kyoto {
    position: absolute;
    top: 0;
    left: 30px;
  }
}
.p-shop-map .p-map-area.kyoto .p-map-area__text {
  color: #00A0E9;
}
.p-shop-map .p-map-area.kyoto .p-map-area__ttl {
  background-color: #00A0E9;
}
.p-shop-map .p-map-area.hanshin {
  background-color: #D6F2F1;
}
@media screen and (min-width: 1000px) {
  .p-shop-map .p-map-area.hanshin {
    margin: 0 160px 0 0;
  }
}
.p-shop-map .p-map-area.hanshin .p-map-area__text {
  color: #61C8CC;
}
.p-shop-map .p-map-area.hanshin .p-map-area__ttl {
  background-color: #61C8CC;
}

/*一覧*/
.p-shop-list__ttl {
  text-align: center;
  margin: -70px 0 30px;
  padding-top: 70px;
}
@media screen and (min-width: 812px) {
  .p-shop-list__ttl {
    margin: -150px 0 50px;
    padding-top: 150px;
  }
}
.p-shop-list__ttl .in {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: 2px solid #F39800;
  padding-bottom: 3px;
}
@media screen and (min-width: 812px) {
  .p-shop-list__ttl .in {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 812px) {
  .p-shop-list__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-shop-list__item {
  margin: 0 0 30px;
  border: 1px solid #EBEBEB;
  border-top: 6px double  #EBEBEB;
  position: relative;
  transition: .3s;
  cursor: pointer;
}
.p-shop-list__item a.a100:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 5;
}
.p-shop-list__item a.a100.in-link {
  position: relative;
  z-index: 5;
}
.p-shop-list__item:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .p-shop-list__item {
    width: 31%;
    margin: 0 1% 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-shop-list__in {
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-list__in {
    padding: 15px;
  }
}
.p-shop-list__photo {
  text-align: center;
  margin-bottom: 10px;
}
.p-shop-list__name {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-list__name {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-shop-list__add {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-shop-list__add {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-shop-list__station .title {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  display: inline-block;
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .p-shop-list__station .title {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-shop-list__station .text {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  width: 100%;
  line-height: 1.6;
}
.p-shop-list__btn {
  color: #ffffff;
  padding: 10px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 7.5px center;
  background-size: 15px 15px;
  padding-right: 30px;
  background-color: #4BA0B8;
  font-size: 13px;
  font-size: 0.8125rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-shop-list__btn {
    padding: 20px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

/*京都*/
#kyoto .p-shop-list__ttl .in {
  border-color: #00A0E9;
}

/*阪神*/
#hanshin .p-shop-list__ttl .in {
  border-color: #61C8CC;
}

/*===================
詳細
===================*/
/*店名*/
.p-shop-d-name {
  font-size: 22px;
  font-size: 1.375rem;
  padding-bottom: 15px;
  margin-bottom: 20px;
  line-height: 1.3;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-shop-d-name {
    font-size: 30px;
    font-size: 1.875rem;
    margin-bottom: 40px;
  }
}
.p-shop-d-name:before {
  content: '';
  width: 30px;
  height: 2px;
  background: #F39800;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*main visual===========*/
.p-shop-d-main {
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-shop-d-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (min-width: 812px) {
  .p-shop-d-main__for {
    width: 75%;
  }
}
.p-shop-d-main__nav {
  display: none;
}
@media screen and (min-width: 812px) {
  .p-shop-d-main__nav {
    display: block;
    width: 25%;
    padding-left: 5px;
  }
}
.p-shop-d-main__nav .item {
  margin-bottom: 7px;
  opacity: 0.8;
  position: relative;
  border: none;
  border-left: 5px solid #ffffff;
}
.p-shop-d-main__nav .item.slick-current {
  opacity: 1;
  border-left-color: #E84728;
}
.p-shop-d-main__nav .item.slick-current::before {
  content: '';
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #E84728;
}

/*店舗詳細==============*/
.p-shop-d-map {
  margin-bottom: 15px;
}
.p-shop-d-map .p-shop-d-map_floormap {
  margin-top: 15px;
  text-align: center;
}

/*詳細*/
.p-shop-d-info .c-table .c-th {
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .p-shop-d-info .c-table .c-th {
    width: 130px;
  }
}
@media screen and (min-width: 812px) {
  .p-shop-d-info .c-table .c-td {
    width: calc(100% - 130px);
  }
}

/*設備・サービス==============*/
.p-shop-d-service__title {
  background: #FDF498;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-shop-d-service__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-shop-d-service__contents {
  border: 5px solid #FDF498;
  border-top: none;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-d-service__contents {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/*駐車場割引サービス*/
.p-shop-d-park {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park {
    width: 48%;
    margin-bottom: 0;
  }
}
.p-shop-d-park__text {
  width: 100%;
  padding: 0 0 20px;
  text-align: center;
}
.p-shop-d-park__title {
  background: #FFBEB9;
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park__title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-shop-d-park__in {
  background: #F9F9F9;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park__in {
    padding: 20px;
  }
}
.p-shop-d-park__table {
  background: #ffffff;
  border: 1px solid #E5E5E5;
  border-top: none;
  border-left: none;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park__table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-shop-d-park__table .th, .p-shop-d-park__table .td {
  width: 100%;
  border-left: 1px solid #E5E5E5;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park__table .th, .p-shop-d-park__table .td {
    width: 50%;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-shop-d-park__table .th {
  border-top: 1px solid #E5E5E5;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park__table .th {
    padding: 15px;
  }
}
.p-shop-d-park__table .td {
  color: #E84728;
  font-weight: bold;
  padding: 0 10px 10px;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park__table .td {
    border-top: 1px solid #E5E5E5;
    padding: 15px;
  }
}
.p-shop-d-park.name .p-shop-d-park__title {
  background: #dddddd;
}
@media screen and (min-width: 812px) {
  .p-shop-d-park.name .c-table .c-th {
    width: 100px;
  }
  .p-shop-d-park.name .c-table .c-td {
    width: calc(100% - 100px);
  }
}
@media screen and (min-width: 812px) {
  .p-shop-d-park.col3 {
    width: 30%;
  }
}

/*設備アイコン*/
.p-shop-d-icon {
  background: #F9F9F9;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-shop-d-icon {
    padding: 20px 10px;
    width: 47%;
  }
}
.p-shop-d-icon .item {
  padding: 10px;
}

/*公共交通機関からのアクセス==============*/
.access-box {
  margin-bottom: 20px;
}
.access-box__title {
  background: #CBEDF7;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .access-box__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.access-box__contents {
  border: 5px solid #CBEDF7;
  border-top: none;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .access-box__contents {
    padding: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
  }
}
.access-box__list {
  width: 100%;
}
.access-box__item {
  margin-bottom: 30px;
  padding: 0 10px;
  position: relative;
}
.access-box__item .arrow {
  margin: 10px auto;
  display: block;
  background: #F39800;
  position: relative;
  width: 20px;
  height: 10px;
}
@media screen and (min-width: 812px) {
  .access-box__item .arrow {
    width: 10px;
    height: 20px;
    position: absolute;
    top: calc(50% - 20px);
    right: 0px;
    z-index: 10;
  }
}
.access-box__item .arrow::before {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #F39800 transparent transparent transparent;
  position: absolute;
  bottom: -15px;
  right: calc(50% - 15px);
}
@media screen and (min-width: 812px) {
  .access-box__item .arrow::before {
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent #F39800;
    position: absolute;
    top: calc(50% - 15px);
    right: -15px;
  }
}
.access-box__photo {
  text-align: center;
}
.access-box__photo .text {
  margin-top: 10px;
  display: block;
  line-height: 1.6;
  font-size: 13px;
  font-size: 0.8125rem;
}
.access-box.type2 .access-box__title {
  background: #E5E5E5;
}
.access-box.type2 .access-box__contents {
  border-color: #E5E5E5;
}

/*===========
できるだけ高く買ってもらうコツ
===========*/
.shop .p-points__item {
  margin-bottom: 15px;
}
.shop .p-points__in {
  background: #ffffff;
  height: 100%;
  padding: 20px 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .shop .p-points__in {
    padding: 40px 10px;
  }
}
.shop .p-points__ttl {
  color: #4BA0B8;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .shop .p-points__ttl {
    margin-bottom: 20px;
  }
}
.shop .p-points__ttl .small {
  display: block;
  margin-bottom: 3px;
  font-size: 20px;
  font-size: 1.25rem;
}
.shop .p-points__ttl .big {
  display: block;
  font-size: 60px;
  font-size: 3.75rem;
}
.shop .p-points__img {
  max-width: 250px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .shop .p-points__img {
    margin: 0 auto 20px;
  }
}
.shop .p-points__point {
  text-align: center;
  color: #4BA0B8;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .shop .p-points__point {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.shop .p-points__text {
  margin: 0 auto;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .shop .p-points__text {
    max-width: 250px;
  }
}

/*===========
高価買取の強みとは
===========*/
.shop .p-points__link {
  text-align: center;
}
.shop .p-points__link .c-callout-btn {
  background: #eeeeee;
  margin-bottom: 10px;
}
.shop .p-points__link .c-callout-btn::before {
  border-color: #eeeeee transparent transparent transparent;
}
.shop .p-points__link .c-callout-btn .c-callout-btn__name .in {
  color: #333333;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_black.svg);
}

/*===========
マルカならこんな状態でも買取可能
===========*/
.shop .p-hospitality__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
@media screen and (min-width: 812px) {
  .shop .p-hospitality__list {
    margin-bottom: 30px;
  }
}
.shop .p-hospitality__item {
  width: 50%;
  text-align: center;
  padding: 0 5px;
}
@media screen and (min-width: 812px) {
  .shop .p-hospitality__item {
    width: 25%;
  }
}
.shop .p-hospitality__text {
  font-size: 12px;
  font-size: 0.75rem;
  padding: 10px 0;
}
@media screen and (min-width: 812px) {
  .shop .p-hospitality__text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.shop .p-hospitality__copy {
  background: #4BA0B8;
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
}

/*金額の比較==============*/
.shop .p-omparison__ttl {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .shop .p-omparison__ttl {
    margin-bottom: 20px;
  }
}
.shop .p-omparison__ttl .main {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  color: #333333;
}
@media screen and (min-width: 812px) {
  .shop .p-omparison__ttl .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.shop .p-omparison__ttl .sub {
  display: block;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 5px;
}
@media screen and (min-width: 812px) {
  .shop .p-omparison__ttl .sub {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 10px;
  }
}
.shop .p-omparison .c-basic-txt, .shop .p-omparison .p-basic-list__item, .shop .p-omparison .p-ol-list__item, .shop .p-omparison .p-ol-list--sub__item, .shop .p-omparison .p-ol-list--kana__item {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 10px;
}
.shop .p-omparison .p-omparison-company .company-maruka .company-name {
  background: #959595;
  padding: 5px;
  margin-bottom: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .shop .p-omparison .p-omparison-company .company-maruka .company-name {
    padding: 10px 7px;
    font-size: 14px;
    font-size: 0.875rem;
    width: auto;
  }
}
.shop .p-omparison .p-omparison-company .company-maruka .company-pay {
  font-size: 18px;
  font-size: 1.125rem;
  color: #E84728;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .shop .p-omparison .p-omparison-company .company-maruka .company-pay {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
高価買取ランキング
===========*/
.shop .p-purchase-bulletin .p-bulletin-list__goods {
  display: block;
  margin-bottom: 5px;
  color: #959595;
  font-weight: bold;
}
.shop .p-purchase-bulletin .p-bulletin-oldpay {
  margin-top: 10px;
}
.shop .p-purchase-bulletin .p-bulletin-oldpay__ttl {
  margin: 0 auto 5px;
  background: #F39800;
  color: #ffffff;
  padding: 5px;
  font-size: 12px;
  font-size: 0.75rem;
  max-width: 120px;
}
.shop .p-purchase-bulletin .p-bulletin-oldpay__pay {
  color: #333333;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
}

/*===========
高価買取ランキング
===========*/
.shop .p-ranking__list {
  margin-top: 20px;
}
.shop .p-ranking__list .l-col2 {
  margin-bottom: 10px;
}
.shop .p-ranking__item {
  background: #ffffff;
  border: 1px solid #cccccc;
  height: 100%;
  margin-bottom: 10px;
  position: relative;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 812px) {
  .shop .p-ranking__item {
    display: block;
  }
}
.shop .p-ranking__no {
  position: absolute;
  top: 15px;
  left: 15px;
  border: 1px solid #4BA0B8;
  width: 40px;
  height: 40px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.shop .p-ranking__no .text {
  display: inline-block;
  color: #4BA0B8;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.shop .p-ranking__img {
  width: 100px;
  align-self: flex-end;
  height: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media screen and (min-width: 812px) {
  .shop .p-ranking__img {
    margin: 0 auto;
    height: 130px;
    text-align: center;
  }
}
.shop .p-ranking__contents.p-omparison {
  align-self: center;
  padding-left: 5%;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (min-width: 812px) {
  .shop .p-ranking__contents.p-omparison {
    max-width: 100%;
    text-align: center;
    padding-left: 0;
  }
}
.shop .p-ranking__contents.p-omparison .other-company {
  display: block;
  margin-bottom: 5px;
}
.shop .p-ranking__contents.p-omparison .other-company .company.company-b {
  margin-left: 0;
}

/*===========
口コミ
===========*/
.p-shop-review {
  background-color: #f4f4f4;
  margin: auto;
  padding: 70px 0;
}
.p-shop-review__h2 {
  color: #4ba0b8;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-shop-review__h2 {
    font-size: 2.8rem;
  }
}
.p-shop-review__h2::before {
  background-color: #4ba0b8;
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  transform: rotate(45deg);
}
@media screen and (min-width: 576px) {
  .p-shop-review__h2::before {
    height: 3px;
    width: 50px;
  }
}
.p-shop-review__h2::after {
  background-color: #4ba0b8;
  content: "";
  display: block;
  height: 2px;
  width: 40px;
  transform: rotate(-45deg);
}
@media screen and (min-width: 576px) {
  .p-shop-review__h2::after {
    height: 3px;
    width: 50px;
  }
}
.p-shop-review__wrap {
  background-color: #fff;
  border: 7px solid #cbedf7;
  max-height: 400px;
  overflow-y: scroll;
  padding: 65px 2.5vw;
}

/*===========
続きを読む　共通パーツ
===========*/
.grad-wrap {
  position: relative;
  padding: 0 0 20px;
}

.grad-btn {
  color: #6884a6;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
  z-index: 1;
  text-align: center;
}

.grad-btn:before {
  content: '続きを読む';
  font-size: 14px;
}

.grad-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6rem;
  right: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 1px solid #6884a6;
  border-right: 1px solid #6884a6;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}

.grad-btn:hover {
  cursor: pointer;
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 90px;
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
  content: "";
}

.grad-item.beige::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-linear-gradient(top, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 0.9) 50%, rgba(249, 249, 249, 0.9) 50%, #F9F9F9 100%);
  background: linear-gradient(to bottom, rgba(249, 249, 249, 0) 0%, rgba(249, 249, 249, 0.9) 50%, rgba(249, 249, 249, 0.9) 50%, #f9f9f9 100%);
  content: "";
}

.grad-trigger {
  display: none;
}

.grad-trigger:checked + .grad-btn::before {
  content: '折りたたむ';
}

.grad-trigger:checked ~ .grad-item {
  height: auto;
}

.grad-trigger:checked ~ .grad-item::before {
  display: none;
}

/*買取方法*/
/* =========================================================
買取方法　kaitori-proc
========================================================= */
/*===========
メインイメージ
===========*/
.kaitori-proc .p-main-img__in {
  text-align: center;
}
.kaitori-proc .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
買取方法　リンク
===========*/
.p-kaitori-proc-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-kaitori-proc-link__item {
  width: 33.3%;
  text-align: center;
  margin-bottom: 20px;
  padding: 0 5px;
}
@media screen and (min-width: 812px) {
  .p-kaitori-proc-link__item {
    margin-bottom: 0;
    width: 16.6%;
  }
}

/*===================
青・黄色の箱
===================*/
.p-kaitori-box__title {
  background: #CBEDF7;
  padding: 15px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .p-kaitori-box__title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.p-kaitori-box__title .small {
  font-size: 80%;
}
.p-kaitori-box__contents {
  border: 5px solid #CBEDF7;
  background: #ffffff;
  border-top: none;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-kaitori-box__contents {
    padding: 20px;
  }
}
@media screen and (min-width: 812px) {
  .p-kaitori-box__contents .c-table .c-th {
    width: 30%;
  }
}
@media screen and (min-width: 812px) {
  .p-kaitori-box__contents .c-table .c-td {
    width: 70%;
  }
}
.p-kaitori-box.type2 .p-kaitori-box__title {
  background: #FDF498;
  color: #333333;
}
.p-kaitori-box.type2 .p-kaitori-box__contents {
  border-color: #FDF498;
}

/*===================
矢印
===================*/
/*流れ*/
.p-flow-arrow {
  text-align: center;
  padding: 30px 0;
}
@media screen and (min-width: 812px) {
  .p-flow-arrow {
    padding: 50px 0;
  }
}
.p-flow-arrow img {
  max-width: 100px;
}

/*===================
宅配買取　delivery
===================*/
/*メイン画像*/
.kaitori-proc.delivery .p-main-img {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/kaitori-proc/delivery/delivery_main-img_sp.png) no-repeat bottom right;
  background-size: 30% auto;
  background-color: #CBEDF7;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img {
    background: #CBEDF7;
  }
}
.kaitori-proc.delivery .p-main-img__in {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: right;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__in {
    min-height: 300px;
  }
}
.kaitori-proc.delivery .p-main-img__in .main-img {
  display: none;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__in .main-img {
    display: inline-block;
    text-align: right;
    max-width: 45%;
  }
}
.kaitori-proc.delivery .p-main-img__contents {
  padding: 20px 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__contents {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.kaitori-proc.delivery .p-main-img__contents .contents-in {
  text-align: left;
  max-width: 640px;
}
.kaitori-proc.delivery .p-main-img__sub {
  display: block;
  color: #4BA0B8;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__sub {
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.kaitori-proc.delivery .p-main-img__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__main {
    margin-bottom: 30px;
  }
}
.kaitori-proc.delivery .p-main-img__main .ttl {
  display: block;
  color: #4BA0B8;
  font-size: 38px;
  font-size: 2.375rem;
  padding-right: 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__main .ttl {
    font-size: 90px;
    font-size: 5.625rem;
  }
}
.kaitori-proc.delivery .p-main-img__main .comment {
  display: block;
  color: #EB614B;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.3;
  position: relative;
  padding: 15px 0;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__main .comment {
    font-size: 21px;
    font-size: 1.3125rem;
    font-weight: bold;
  }
}
.kaitori-proc.delivery .p-main-img__main .comment::before, .kaitori-proc.delivery .p-main-img__main .comment::after {
  content: '';
  display: block;
  background: #EB614B;
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
}
.kaitori-proc.delivery .p-main-img__main .comment::before {
  top: 0;
  transform: rotate(-15deg);
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__main .comment::before {
    transform: rotate(-25deg);
  }
}
.kaitori-proc.delivery .p-main-img__main .comment::after {
  content: '';
  bottom: 0;
  transform: rotate(15deg);
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__main .comment::after {
    transform: rotate(25deg);
  }
}
.kaitori-proc.delivery .p-main-img__text {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.delivery .p-main-img__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*お客様の声*/
@media screen and (min-width: 812px) {
  .c-delivery-voice {
    padding: 40px 50px;
    background: #ffffff;
  }
}
.c-delivery-voice .c-basic-txt, .c-delivery-voice .p-basic-list__item, .c-delivery-voice .p-ol-list__item, .c-delivery-voice .p-ol-list--sub__item, .c-delivery-voice .p-ol-list--kana__item {
  background: #ffffff;
  padding: 15px;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice .c-basic-txt, .c-delivery-voice .p-basic-list__item, .c-delivery-voice .p-ol-list__item, .c-delivery-voice .p-ol-list--sub__item, .c-delivery-voice .p-ol-list--kana__item {
    padding: 0;
  }
}
.c-delivery-voice__title .place {
  font-size: 14px;
  font-size: 0.875rem;
  display: inline-block;
  background: #F39800;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 15px;
  color: #ffffff;
  min-width: 100px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__title .place {
    min-width: 150px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-delivery-voice__title .title {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__title .title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.c-delivery-voice__item {
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 0;
  }
}
.c-delivery-voice__item:last-of-type {
  border-bottom: none;
}
.c-delivery-voice__contents {
  display: block;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  text-align: right;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__contents {
    padding: 10px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    -webkit-align-items: baseline;
    -moz-align-items: baseline;
    align-items: baseline;
    text-align: left;
  }
}
.c-delivery-voice__contents .in {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__contents .in {
    margin-bottom: 0;
  }
}
.c-delivery-voice__contents .place {
  display: inline-block;
  background: #F39800;
  border-radius: 5px;
  padding: 5px 10px;
  margin-bottom: 10px;
  color: #ffffff;
  min-width: 80px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__contents .place {
    margin: 0 5px 0 0;
    position: absolute;
    top: 10px;
    left: 0;
  }
}
.c-delivery-voice__contents .title {
  display: block;
  color: #333333;
  line-height: 1.8;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__contents .title {
    display: inline-block;
    vertical-align: baseline;
    padding: 5px 10px 5px 100px;
  }
}
.c-delivery-voice__contents .more {
  display: inline-block;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 5px;
  color: #4BA0B8;
  border-bottom: 1px solid #4BA0B8;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg) no-repeat right center;
  background-size: 12px 12px;
  padding-right: 17px;
}
@media screen and (min-width: 812px) {
  .c-delivery-voice__contents .more {
    min-width: 90px;
  }
}

/*送り先*/
.p-delivery-destination {
  max-width: 600px;
  margin: 0 auto;
  background: #F9F9F9;
}
.p-delivery-destination__ttl {
  background: #CBEDF7;
  padding: 10px;
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .p-delivery-destination__ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 15px;
  }
}
.p-delivery-destination__ttl .mini {
  font-size: 80%;
}
.p-delivery-destination__contents {
  padding: 10px;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .p-delivery-destination__contents {
    padding: 15px;
  }
}

/*傷や汚れがある商品も買取可能です*/
.delivery .p-hospitality {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.delivery .p-hospitality__item {
  width: 50%;
  padding: 20px 5px 5px;
}
@media screen and (min-width: 812px) {
  .delivery .p-hospitality__item {
    width: 25%;
  }
}
.delivery .p-hospitality__item .in {
  background: #F0F0F0;
  border: 1px solid #CFCFCF;
  padding: 5px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .delivery .p-hospitality__item .in {
    padding: 10px;
  }
}
.delivery .p-hospitality__item .title {
  background: #FFED00;
  padding: 5px;
  text-align: center;
  border-radius: 5px;
  width: 80%;
  position: absolute;
  top: -20px;
  left: calc(50% - 40%);
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .delivery .p-hospitality__item .title {
    border-radius: 10px;
    padding: 10px;
    min-width: 180px;
    font-size: 15px;
    font-size: 0.9375rem;
    top: -30px;
  }
}
.delivery .p-hospitality__item .title::before {
  content: ' ';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 7.5px 0 7.5px;
  border-color: #FFED00 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 7.5px);
}
.delivery .p-hospitality__item .photo {
  display: inline-block;
  border: 5px solid #ffffff;
}
.delivery .p-hospitality__item .text {
  text-align: left;
  padding: 10px 0;
  line-height: 1.8;
  max-width: 152px;
  margin: 0 auto;
  font-size: 12px;
  font-size: 0.75rem;
}

/*===================
宅配高価　delivery kit
===================*/
.kaitori-proc .p-comparison-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.kaitori-proc .p-comparison-icon__item {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .kaitori-proc .p-comparison-icon__item {
    width: 25%;
  }
}
.kaitori-proc .p-comparison-icon__item .in {
  border: 1px solid #4BA0B8;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 155px;
  height: 155px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_all_zero.svg) no-repeat center top 30px;
  background-size: 65px  65px;
  background-color: #ffffff;
}
@media screen and (min-width: 812px) {
  .kaitori-proc .p-comparison-icon__item .in {
    background-position: center top 35px;
    background-size: 80px  80px;
    max-width: 200px;
    height: 200px;
  }
}
.kaitori-proc .p-comparison-icon__item.zero .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_all_zero.svg);
}
.kaitori-proc .p-comparison-icon__item.tape .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_tape_main.svg);
}
.kaitori-proc .p-comparison-icon__item.pc .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_pc_sp_main.svg);
}
.kaitori-proc .p-comparison-icon__item.box .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_boxs_main.svg);
}
.kaitori-proc .p-comparison-icon__item.return .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_return_main.svg);
}
.kaitori-proc .p-comparison-icon__item.same-product .in {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_same-product_main.svg);
}
.kaitori-proc .p-comparison-icon__text {
  position: absolute;
  top: 63%;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: #4BA0B8;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .kaitori-proc .p-comparison-icon__text {
    top: 63%;
    font-size: 16px;
    font-size: 1rem;
  }
}

/*宅配キットの内容物=======*/
.p-kit-contents__item .in {
  padding: 10px;
}
.p-kit-contents__item .text {
  background: #FFED00;
  padding: 10px;
  margin: 0 auto 10px;
  text-align: center;
  border-radius: 5px;
  width: 80%;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  color: #333333;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-kit-contents__item .text {
    border-radius: 10px;
    padding: 10px;
    min-width: 160px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-kit-contents__item .text::before {
  content: ' ';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 7.5px 0 7.5px;
  border-color: #FFED00 transparent transparent transparent;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 7.5px);
}
.p-kit-contents__item .photo {
  text-align: center;
}

/*宅配キットの種類=======*/
.p-kit-type__item .in {
  margin: 0 auto 10px;
  padding: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-kit-type__item .in {
    padding: 10px;
  }
}
.p-kit-type__item .photo {
  text-align: center;
  position: relative;
}
.p-kit-type__item .photo.circle {
  border-radius: 50%;
  padding: 45px 0 0;
  margin: 0 auto;
  border: 3px solid #E5E5E5;
  width: 220px;
  height: 220px;
}
.p-kit-type__item .photo.circle .caption {
  margin: 25px auto 0;
}
.p-kit-type__item .caption {
  display: block;
  background: #FFED00;
  padding: 10px;
  margin: 0 auto 10px;
  text-align: center;
  border-radius: 5px;
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  color: #333333;
}
@media screen and (min-width: 812px) {
  .p-kit-type__item .caption {
    border-radius: 10px;
    padding: 10px;
    max-width: 180px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-kit-type__item .text {
  line-height: 1.6;
  padding: 20px 0 5px;
}

/*===================
宅配高価　delivery form
===================*/
.p-delivery-form__input {
  display: block;
  max-width: 230px;
  position: relative;
  z-index: 5;
  background: #FFED00;
  border-radius: 10px;
  padding: 10px;
  margin: 10px auto;
  font-size: 15px;
  font-size: 0.9375rem;
  transition: .3s;
  cursor: pointer;
}
.p-delivery-form__input:hover {
  opacity: .7;
}
.p-delivery-form__input input {
  display: none;
}
.p-delivery-form__input .mwform-radio-field-text,
.p-delivery-form__input .input-text {
  position: relative;
  display: block;
}
.p-delivery-form__input .mwform-radio-field-text::before,
.p-delivery-form__input .input-text::before {
  content: ' ';
  display: inline-block;
  vertical-align: middle;
  border: 2px solid #dddddd;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  top: -2px;
  left: 0;
}
.p-delivery-form__input input:checked + .mwform-radio-field-text::before,
.p-delivery-form__input input:checked + .input-text::before {
  background: #E84728;
}

/*宅配キットの配達希望日時*/
.p-delivery-form-time__in {
  padding-top: 10px;
  margin: 10px auto 0;
  border-top: 1px dotted #959595;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 300px;
}
.p-delivery-form-time__in:first-of-type {
  border-top: none;
  padding-top: 0;
}
.p-delivery-form-time__ttl {
  width: 150px;
  text-align: center;
}
.p-delivery-form-time__day {
  max-width: 200px;
}
.p-delivery-form-time__day .c-form-select,
.p-delivery-form-time__day .c-form-input {
  width: 170px;
}

.p-delivery-form-date {
  border-top: 2px dotted #CBEDF7;
  padding-top: 20px;
}

/*===================
宅配買取利用規約　delivery terms
===================*/
.p-delivery-terms__icon {
  text-align: center;
  margin-bottom: 30px;
}
.p-delivery-terms__icon img {
  width: 70px;
}

/*===================
宅配　事前査定　delivery jizen
===================*/
.p-jizen-box {
  border: 2px solid #4BA0B8;
  background: #ffffff;
  overflow: hidden;
}
@media screen and (min-width: 812px) {
  .p-jizen-box {
    border-radius: 20px;
  }
}
.p-jizen-box__ttl {
  background: #4BA0B8;
  padding: 15px;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 812px) {
  .p-jizen-box__ttl {
    font-size: 26px;
    font-size: 1.625rem;
    padding: 30px;
  }
}
.p-jizen-box__contents {
  padding: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-jizen-box__contents {
    padding: 40px 30px 50px;
  }
}
.p-jizen-box__img {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-jizen-box__img {
    margin-bottom: 20px;
  }
}
.p-jizen-box__img img {
  padding: 5px;
}
.p-jizen-box.line {
  border-color: #00B900;
}
.p-jizen-box.line .p-jizen-box__ttl {
  background-color: #00B900;
}
.p-jizen-box.tel {
  border-color: #FFED00;
}
.p-jizen-box.tel .p-jizen-box__ttl {
  background-color: #FFED00;
  color: #000000;
}

/*===================
宅配　法人　delivery houjin
===================*/
.p-houjin-box {
  position: relative;
  padding-bottom: 100px !important;
}
@media screen and (min-width: 812px) {
  .p-houjin-box {
    padding-bottom: 150px !important;
  }
}
.p-houjin-box::before, .p-houjin-box::after {
  content: ' ';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
}
.p-houjin-box::before {
  border-width: 100px 0 0 50vw;
  border-color: transparent transparent transparent #ffffff;
  left: 0;
}
@media screen and (min-width: 812px) {
  .p-houjin-box::before {
    border-width: 150px 0 0 50vw;
  }
}
.p-houjin-box::after {
  border-width: 0 0 100px 50vw;
  border-color: transparent transparent #ffffff transparent;
  right: 0;
}
@media screen and (min-width: 812px) {
  .p-houjin-box::after {
    border-width: 0 0  150px50vw;
  }
}
.p-houjin-box__item {
  margin-bottom: 30px;
}
.p-houjin-box__img {
  text-align: center;
  margin-bottom: 10px;
}
.p-houjin-box__text {
  border: 4px solid #D2D2D2;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-houjin-box__text {
    padding: 20px;
  }
}

.p-houjin-solution {
  border: 5px solid #CBEDF7;
  background-color: #ffffff;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .p-houjin-solution {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/member-guide/photo_staff.jpg) no-repeat bottom right;
    background-color: #ffffff;
    background-size: 45%;
    padding: 30px;
  }
}
@media screen and (min-width: 812px) {
  .p-houjin-solution__list {
    width: 60%;
  }
}
.p-houjin-solution__item {
  background: #FAFAFA;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-houjin-solution__item {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 20px;
  }
}
.p-houjin-solution__item:last-of-type {
  margin-bottom: 0;
}
.p-houjin-solution__icon {
  max-width: 50px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .p-houjin-solution__icon {
    max-width: 100%;
    margin-bottom: 0;
    width: 90px;
  }
}
@media screen and (min-width: 812px) {
  .p-houjin-solution .c-basic-txt, .p-houjin-solution .p-basic-list__item, .p-houjin-solution .p-ol-list__item, .p-houjin-solution .p-ol-list--sub__item, .p-houjin-solution .p-ol-list--kana__item {
    font-size: 17px;
    font-size: 1.0625rem;
    width: calc(100% - 90px);
    padding-left: 15px;
  }
}

/*flow*/
@media screen and (min-width: 812px) {
  .p-houjin-flow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-houjin-flow__item {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-houjin-flow__item {
    padding: 10px;
  }
}
.p-houjin-flow__arrow {
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-houjin-flow__arrow {
    padding: 10px;
  }
}
.p-houjin-flow__arrow span img {
  width: 50px;
}
@media screen and (min-width: 812px) {
  .p-houjin-flow__arrow span img {
    width: 30px;
  }
}

/*step*/
.p-houjin-step .p-delivery-destination {
  max-width: 100%;
}

/*document*/
.p-houjin-document {
  border: 5px solid #CBEDF7;
  background-color: #ffffff;
  padding: 20px;
  margin-top: 30px;
}
@media screen and (min-width: 812px) {
  .p-houjin-document {
    padding: 30px;
  }
}
.p-houjin-document__item {
  background: #FAFAFA;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-houjin-document__item {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 20px;
  }
}
.p-houjin-document__item:last-of-type {
  margin-bottom: 0;
}
.p-houjin-document__icon {
  max-width: 50px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .p-houjin-document__icon {
    max-width: 100%;
    margin-bottom: 0;
    width: 90px;
  }
}
@media screen and (min-width: 812px) {
  .p-houjin-document .c-basic-txt, .p-houjin-document .p-basic-list__item, .p-houjin-document .p-ol-list__item, .p-houjin-document .p-ol-list--sub__item, .p-houjin-document .p-ol-list--kana__item {
    font-size: 20px;
    font-size: 1.25rem;
    width: calc(100% - 90px);
    padding-left: 15px;
  }
}

/*===================
宅配　法人申込み　delivery form
===================*/
.p-corporation-form-box {
  border: 3px solid #DCDCDC;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .p-corporation-form-box {
    padding: 40px 30px;
  }
}
.p-corporation-form-box .title {
  margin-bottom: 10px;
  text-align: center;
  color: #E84728;
}
.p-corporation-form-box__care {
  margin-top: 30px;
  border: 4px solid #E84728;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .p-corporation-form-box__care {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_exclamation_red.svg) no-repeat center left 20px;
    background-size: 60px 60px;
    padding: 30px;
    background-size: 60px 60px;
    padding-left: 100px;
  }
}

/*===================
出張買取　bulgeout
===================*/
/*出張買取 メイン画像*/
.kaitori-proc.bulgeout .p-main-img {
  position: relative;
  padding: 10px 0 10px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/kaitori-proc/bulgeout/img_mainbg.png) no-repeat right top 10px;
  background-size: 30%;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img {
    background-position: right bottom;
    padding: 30px 0 50px;
    background-size: auto;
  }
}
.kaitori-proc.bulgeout .p-main-img__in {
  width: 80%;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img__in {
    width: 100%;
    max-width: 500px;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main {
  color: #32a238;
  margin-bottom: 10px;
  width: 100%;
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__sub {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__sub {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__main {
  display: block;
  font-size: 50px;
  font-size: 3.125rem;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__main {
    display: inline-block;
    font-size: 114px;
    font-size: 7.125rem;
    letter-spacing: 10px;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item {
  display: block;
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 5px;
  background: #F39800;
  border-radius: 5px;
  margin: 0 5px 10px;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item {
    padding: 15px;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.small {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.small {
    width: 48%;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.big {
  width: 100%;
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.big .main {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.big .main {
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 0;
    display: inline-block;
    vertical-align: middle;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.big .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.1;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__point .item.big .sub {
    font-size: 15px;
    font-size: 0.9375rem;
    display: inline-block;
    vertical-align: middle;
  }
}
.kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__link {
  display: block;
  margin: 10px auto;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.bulgeout .p-main-img .p-bulgeout-main__link {
    margin: 0 auto;
    position: absolute;
    bottom: 5%;
    right: 5%;
  }
}

/*出張買取 メニュー*/
.p-bulgeout-nav {
  padding: 10px 0;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/kaitori-proc/bulgeout/bg_bulgeout01.png) no-repeat left bottom;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav {
    background-position: center bottom;
    padding: 40px 0 15px;
    margin: 20px auto;
  }
}
.p-bulgeout-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-bulgeout-nav__item {
  width: 50%;
  padding: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav__item {
    width: 50%;
    padding: 15px 5px;
    margin-bottom: 25px;
    position: relative;
  }
  .p-bulgeout-nav__item::before {
    content: ' ';
    display: block;
    background: #AAD486;
    width: 3px;
    height: 260px;
    position: absolute;
    top: 5px;
    left: calc(50% - 1.5px);
  }
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav__item:nth-child(n+3) {
    width: 33.3%;
  }
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav__item.area .p-bulgeout-nav__link {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_jpan_mian.svg) no-repeat center top 30px;
    background-size: 67px 67px;
    background-color: #ffffff;
  }
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav__item.area .p-bulgeout-nav__link .in {
    margin-top: 45px;
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 7.5px center;
    background-size: 15px 15px;
    padding-right: 30px;
    background-color: #4BA0B8;
    color: #ffffff;
  }
}
.p-bulgeout-nav__link {
  display: block;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav__link {
    background: #4BA0B8;
    border-radius: 50%;
    border: 2px solid #4BA0B8;
    width: 220px;
    height: 220px;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -moz-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    position: relative;
    z-index: 5;
  }
}
.p-bulgeout-nav__link .in {
  display: block;
  width: 100%;
  font-size: 12px;
  font-size: 0.75rem;
  color: #4BA0B8;
  border: 2px solid #4BA0B8;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg) no-repeat right 7.5px center;
  background-size: 15px 15px;
  padding-right: 30px;
  background-color: #ffffff;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-nav__link .in {
    display: inline-block;
    width: 90%;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*出張買取 map*/
.p-bulgeout-map {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/kaitori-proc/bulgeout/bg_japan.png) no-repeat bottom right;
  background-size: 200px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-map {
    display: block;
    background-size: auto;
  }
}
.p-bulgeout-map__img {
  width: 100%;
  text-align: center;
  margin: 0 auto 10px;
  max-width: 200px;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-map__img {
    text-align: left;
    max-width: 100%;
  }
}
.p-bulgeout-map__tokyo {
  width: 50%;
  max-width: 200px;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-map__tokyo {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 90px;
    left: 40%;
  }
}
.p-bulgeout-map__kansai {
  width: 50%;
  max-width: 200px;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-map__kansai {
    max-width: 100%;
    width: 100%;
    margin: 60px 0 70px 10%;
  }
}

.p-bulgeout-map-box {
  text-align: center;
  margin: 20px auto;
}
.p-bulgeout-map-box__list {
  margin: 0 auto 20px;
}
.p-bulgeout-map-box__ttl {
  color: #0099D9;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 auto 15px;
}
.p-bulgeout-map-box__ttl .in {
  position: relative;
  padding-left: 15px;
}
.p-bulgeout-map-box__ttl .in::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.5px 0 6.5px 9px;
  border-color: transparent transparent transparent #0099D9;
  position: absolute;
  top: 50%;
  margin-top: -6.5px;
  left: 0;
  display: inline-block;
}
.p-bulgeout-map-box__item {
  margin: 0 auto;
  max-width: 650px;
  background: #fff;
  padding: 15px;
  border-radius: 5px;
}
.p-bulgeout-map-box__link {
  display: inline-block;
  font-size: 15px;
  padding-right: 5px;
  line-height: 2;
  font-size: 15px;
  font-size: 0.9375rem;
}
.p-bulgeout-map-box a {
  text-decoration: underline;
  color: #0099D9;
}

/*スクロール*/
.bulgeout .js-slick-read .js-slick-prev {
  display: none !important;
}
.bulgeout .js-slick-read .slick-slide {
  text-align: center;
}

/*出張買取 よくあるご質問*/
.p-bulgeout-faq {
  background: #fefefe;
}
.p-bulgeout-faq__item {
  width: 100%;
}
.p-bulgeout-faq__in {
  max-width: 800px;
  margin: 0 auto;
  padding: 15px 30px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-faq__in {
    padding: 50px 0;
  }
}
.p-bulgeout-faq__ttl {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #333333;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-faq__ttl {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-bulgeout-faq.voice {
  background-color: #6C6461;
}
.p-bulgeout-faq.voice .p-bulgeout-faq__ttl {
  color: #ffffff;
  border-color: #ffffff;
}
.p-bulgeout-faq.voice .c-basic-txt, .p-bulgeout-faq.voice .p-basic-list__item, .p-bulgeout-faq.voice .p-ol-list__item, .p-bulgeout-faq.voice .p-ol-list--sub__item, .p-bulgeout-faq.voice .p-ol-list--kana__item {
  color: #ffffff;
}

/* ===================
出張買取　bulgeout
*/
.p-bulgeout-area {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 812px) {
  .p-bulgeout-area-nav {
    width: 70%;
  }
}
.p-bulgeout-area-nav__ttl {
  background: #00B8D9;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #ffffff;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area-nav__ttl {
    font-size: 17px;
    font-size: 1.0625rem;
    padding: 15px;
  }
}
.p-bulgeout-area-nav__list {
  background: #ffffff;
  padding: 20px;
}
.p-bulgeout-area-nav__list .in {
  margin-bottom: 20px;
}
.p-bulgeout-area-nav__list .in:last-of-type {
  margin-bottom: 0;
}
.p-bulgeout-area-nav__list .title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-bulgeout-area-nav__list .list a {
  display: inline-block;
  vertical-align: baseline;
  padding: 0 0 3px 0;
  border-bottom: 1px solid #4BA0B8;
  margin-bottom: 15px;
  margin-right: 10px;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #4BA0B8;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_main.svg) no-repeat right center;
  background-size: 10px 10px;
  padding-right: 15px;
}
.p-bulgeout-area-nav__img {
  padding: 20px 0;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area-nav__img {
    padding: 0 0 0 20px;
    width: 30%;
  }
}

/*説明*/
.p-bulgeout-area__contents h2, .p-bulgeout-area__contents h3, .p-bulgeout-area__contents h4 {
  text-align: center;
  padding: 15px 0;
  font-size: 17px;
  font-size: 1.0625rem;
  color: #4BA0B8;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area__contents h2, .p-bulgeout-area__contents h3, .p-bulgeout-area__contents h4 {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
.p-bulgeout-area__contents .c-basic-txt__img {
  max-width: 330px;
}

/*MARUKAの出張買取とは*/
.p-bulgeout-area__about {
  background: url("../images/kaitori-proc/bulgeout/area/bg_japan.png") no-repeat top center;
  background-size: 80%;
}

.p-bulgeout-area__kaitori .p-bulletin-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item {
  width: 50%;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item {
    width: 25%;
  }
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item:nth-child(-n+3) {
    width: 25%;
  }
}
@media screen and (min-width: 812px) {
  .p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item:nth-child(-n+3) .c-square-img {
    height: 150px;
  }
}
.p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item .c-square-img {
  height: 150px;
}
.p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item .p-bulletin-list__name,
.p-bulgeout-area__kaitori .p-bulletin-list .p-bulletin-list__item .p-bulletin-list__ttl {
  font-size: 13px;
  font-size: 0.8125rem;
}

/*===================
店舗買取
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*メイン画像*/
.kaitori-proc.counter .p-main-img {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/kaitori-proc/counter/counter_main_img_sp.png) no-repeat bottom right;
  background-size: 30% auto;
  background-color: #FEE4A7;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img {
    background: #FEE4A7;
  }
}
.kaitori-proc.counter .p-main-img__in {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  text-align: right;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__in {
    min-height: 300px;
  }
}
.kaitori-proc.counter .p-main-img__in .main-img {
  display: none;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__in .main-img {
    display: inline-block;
    text-align: right;
    max-width: 45%;
  }
}
.kaitori-proc.counter .p-main-img__contents {
  padding: 20px 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__contents {
    width: 100%;
    max-width: 1000px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.kaitori-proc.counter .p-main-img__contents .contents-in {
  text-align: left;
  max-width: 640px;
}
.kaitori-proc.counter .p-main-img__sub {
  display: block;
  color: #F6A716;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__sub {
    font-size: 32px;
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.kaitori-proc.counter .p-main-img__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__main {
    margin-bottom: 30px;
  }
}
.kaitori-proc.counter .p-main-img__main .ttl {
  display: block;
  color: #F6A716;
  font-size: 38px;
  font-size: 2.375rem;
  padding-right: 10px;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__main .ttl {
    font-size: 90px;
    font-size: 5.625rem;
  }
}
.kaitori-proc.counter .p-main-img__text {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .kaitori-proc.counter .p-main-img__text {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*事前査定*/
/* =========================================================
事前査定　assessment
========================================================= */
/*===========
メインイメージ
===========*/
.assessment .p-main-img__in {
  text-align: center;
}
.assessment .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===========
line査定
===========*/
/*navi*/
.p-line-nav {
  background-color: #00B900 !important;
  padding: 30px 0;
}
@media screen and (min-width: 812px) {
  .p-line-nav {
    padding: 40px 0;
  }
}
.p-line-nav .p-line-nav__in {
  text-align: center;
  position: relative;
}
.p-line-nav .p-line-nav__ttl {
  max-width: 200px;
  display: inline-block;
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__ttl {
    display: block;
    max-width: 100%;
    padding: 250px 0;
  }
}
.p-line-nav .p-line-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__list {
    display: block;
  }
}
.p-line-nav .p-line-nav__item {
  width: 33.3%;
  padding: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item {
    position: absolute;
    width: auto;
    max-width: 33%;
    padding: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.watch {
    top: 40px;
    left: 10%;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.bag {
    top: calc(50% - 107px);
    left: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.gold-platinum {
    top: 0;
    left: calc(50% - 127px);
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.jewel {
    bottom: 123px;
    left: 10%;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.alcohol {
    top: calc(50% - 107px);
    right: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.brandjewel {
    bottom: 0;
    left: calc(50% - 108px);
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.apparel {
    top: 29px;
    right: 14%;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__item.antique {
    bottom: 110px;
    right: 9%;
  }
}
.p-line-nav .p-line-nav__btn {
  text-align: center;
  padding: 30px 0;
}
@media screen and (min-width: 812px) {
  .p-line-nav .p-line-nav__btn {
    padding: 50px 0;
  }
}
.p-line-nav .p-line-nav__btn .c-basic-btn {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_line.svg);
  background-color: #ffffff;
  margin-bottom: 10px;
}
.p-line-nav .p-line-nav__btn .c-basic-btn .c-basic-btn__in {
  color: #00B900;
}
.p-line-nav .c-ttl-basic,
.p-line-nav .c-basic-txt,
.p-line-nav .p-basic-list__item,
.p-line-nav .p-ol-list__item,
.p-line-nav .p-ol-list--sub__item,
.p-line-nav .p-ol-list--kana__item {
  color: #ffffff;
}

/*navi type2*/
.p-line-nav--type2 {
  background-color: #00B900 !important;
  padding: 30px 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 {
    padding: 40px 0 0;
  }
}
.p-line-nav--type2::before {
  content: ' ';
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #0BAA0B;
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2::before {
    width: 900px;
    height: 900px;
    top: calc(50% - 450px);
    left: calc(50% - 450px);
  }
}
.p-line-nav--type2 .p-line-nav__in {
  text-align: center;
  position: relative;
  z-index: 5;
}
.p-line-nav--type2 .p-line-nav__ttl {
  max-width: 200px;
  display: inline-block;
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__ttl {
    display: block;
    max-width: 100%;
    padding: 60px 0 0;
  }
}
.p-line-nav--type2 .p-line-nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__list {
    display: block;
  }
}
.p-line-nav--type2 .p-line-nav__item {
  width: 50%;
  padding: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__item {
    position: absolute;
    width: auto;
    max-width: 33%;
    padding: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__item.watch {
    top: 20px;
    left: 15%;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__item.bag {
    bottom: 0;
    left: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__item.brandjewel {
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__item.apparel {
    top: 20px;
    right: 15%;
  }
}
.p-line-nav--type2 .p-line-nav__btn {
  text-align: center;
  padding: 30px 0 10px;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 812px) {
  .p-line-nav--type2 .p-line-nav__btn {
    padding: 50px 0;
  }
}
.p-line-nav--type2 .p-line-nav__btn .c-basic-btn {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_line.svg);
  background-color: #ffffff;
  margin-bottom: 10px;
}
.p-line-nav--type2 .p-line-nav__btn .c-basic-btn .c-basic-btn__in {
  color: #00B900;
}
.p-line-nav--type2 .c-ttl-basic,
.p-line-nav--type2 .c-basic-txt,
.p-line-nav--type2 .p-basic-list__item,
.p-line-nav--type2 .p-ol-list__item,
.p-line-nav--type2 .p-ol-list--sub__item,
.p-line-nav--type2 .p-ol-list--kana__item {
  color: #ffffff;
}

/*共通タイトル*/
.p-line-main-img {
  background: #00B900;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-line-main-img::before {
    content: '';
    display: block;
    width: 100%;
    height: 120px;
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_bottom_w.svg) no-repeat top center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.p-line-main-img__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/assessment/line-assess/main_img_photo.png) no-repeat bottom right;
  background-size: 20% auto;
  padding: 20px 25% 20px 0;
}
@media screen and (min-width: 812px) {
  .p-line-main-img__in {
    background-size: 27% auto;
    padding: 50px 27% 120px 0;
  }
}

/*==========
LINE査定について*/
@media screen and (min-width: 812px) {
  .p-line-about-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-line-about-item__item {
  background: #F9F9F9;
  border-radius: 5px;
  margin: 0 5px 10px;
  padding: 10px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-line-about-item__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    width: 180px;
    height: 180px;
    border-radius: 50%;
  }
}
.p-line-about-item__item .main {
  color: #4BA0B8;
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .p-line-about-item__item .main {
    display: block;
    margin-bottom: 10px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.p-line-about-item__item .sub {
  display: inline-block;
  vertical-align: middle;
  color: #E84728;
  font-size: 13px;
  font-size: 0.8125rem;
  padding-left: 10px;
  text-align: left;
}
@media screen and (min-width: 812px) {
  .p-line-about-item__item .sub {
    display: block;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 0;
    text-align: center;
  }
}

/*==========
LINE査定の特徴まとめ*/
.p-line-about-feature__item {
  padding: 5px;
  text-align: center;
}
.p-line-about-feature__item .in {
  background: #ffffff;
  border-radius: 5px;
  margin-bottom: 5px;
  padding: 10px;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-line-about-feature__item .in {
    display: inline-block;
    border-radius: 50%;
    width: 100%;
    max-width: 180px;
    height: 180px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}

/*==========
友だち追加について*/
.p-line-friend__ttl {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 812px) {
  .p-line-friend__ttl {
    margin-bottom: 20px;
  }
}
.p-line-friend__ttl img,
.p-line-friend__ttl .c-ttl-circle--side__text {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-line-friend__ttl img,
  .p-line-friend__ttl .c-ttl-circle--side__text {
    display: inline-block;
    vertical-align: middle;
  }
}
.p-line-friend__ttl img {
  padding-right: 10px;
}
.p-line-friend .p-section-textimg .c-ttl-simple {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-line-friend .p-section-textimg .c-ttl-simple {
    text-align: left;
    padding-top: 30px;
  }
  .p-line-friend .p-section-textimg .c-ttl-simple .pc-show {
    display: inline-block !important;
  }
}
@media screen and (min-width: 812px) {
  .p-line-friend .p-flow-arrow {
    padding: 0 0 30px;
  }
}

/*==========
個別ページ*/
.line-assess .p-main-img__in {
  text-align: center;
}
.line-assess .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*たった3ステップで簡単査定できます*/
.line-assess .p-link-3step .c-ttl-slash .small {
  font-size: 65%;
}

/*高価買取*/
.line-assess .p-line-contents .c-ttl-slash .in {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/assessment/line-assess/img_flowcont.png) no-repeat left center;
  background-size: 80px;
  padding-left: 85px;
  min-height: 75px;
}
@media screen and (min-width: 812px) {
  .line-assess .p-line-contents .c-ttl-slash .in {
    background-size: 130px;
    padding-left: 135px;
    min-height: 120px;
  }
}
.line-assess .p-line-contents .c-ttl-slash .small {
  display: block;
  font-size: 65%;
}

.p-line-contents .c-ttl-slash {
  margin-bottom: 0;
}
.p-line-contents__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_top_w.svg) no-repeat top -1px center;
  background-size: contain;
  background-color: #00B900;
  padding: 40px 0 0;
  margin-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-line-contents__in {
    padding: 120px 0 0;
    margin-bottom: 180px;
  }
}
.p-line-contents__in::before {
  content: ' ';
  width: 0;
  height: 0;
  border-style: solid;
  display: block;
  position: absolute;
  bottom: -50px;
  border-width: 50px 50vw 0 50vw;
  border-color: #00B900 transparent transparent transparent;
  left: 0;
}
@media screen and (min-width: 812px) {
  .p-line-contents__in::before {
    bottom: -170px;
    border-width: 170px 50vw 0 50vw;
  }
}
.p-line-contents .p-kaitori-box .p-kaitori-box__title {
  background: #0BAA0B;
  color: #ffffff;
}
.p-line-contents .p-kaitori-box .p-kaitori-box__contents {
  border-color: #0BAA0B;
}
.p-line-contents .p-kaitori-box .p-kaitori-box__contents p {
  color: #333333;
}
.p-line-contents .p-kaitori-box .p-kaitori-box__contents p .red {
  color: #E84728;
  text-decoration: underline;
}
.p-line-contents .c-ttl-circle--side .c-ttl-circle {
  border-color: #0BAA0B;
  background: #ffffff;
}
.p-line-contents .c-ttl-circle--side .c-ttl-circle .text {
  color: #0BAA0B;
}
.p-line-contents .c-ttl-circle--side .c-ttl-circle--side__num,
.p-line-contents .c-ttl-circle--side .c-ttl-circle--side__text,
.p-line-contents .c-ttl-circle--side .c-ttl-simple {
  color: #ffffff;
}
.p-line-contents .c-ttl-simple,
.p-line-contents .c-basic-txt,
.p-line-contents .p-basic-list__item,
.p-line-contents .p-ol-list__item,
.p-line-contents .p-ol-list--sub__item,
.p-line-contents .p-ol-list--kana__item {
  color: #ffffff;
}
.p-line-contents .p-section-textimg__contents .c-ttl-simple,
.p-line-contents .p-section-textimg__contents .c-basic-txt,
.p-line-contents .p-section-textimg__contents .p-basic-list__item,
.p-line-contents .p-section-textimg__contents .p-ol-list__item,
.p-line-contents .p-section-textimg__contents .p-ol-list--sub__item,
.p-line-contents .p-section-textimg__contents .p-ol-list--kana__item {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 812px) {
  .p-line-contents .p-section-textimg__contents .c-ttl-simple,
  .p-line-contents .p-section-textimg__contents .c-basic-txt,
  .p-line-contents .p-section-textimg__contents .p-basic-list__item,
  .p-line-contents .p-section-textimg__contents .p-ol-list__item,
  .p-line-contents .p-section-textimg__contents .p-ol-list--sub__item,
  .p-line-contents .p-section-textimg__contents .p-ol-list--kana__item {
    text-align: left;
  }
}
.p-line-contents .p-section-textimg__img img {
  border: 4px solid #0BAA0B;
}

@media screen\0 {
  .p-line-contents__in {
    background-image: none;
    padding-top: 40px;
  }
}
/*===========
メール査定
===========*/
.p-assessment-mail {
  background: #4BA0B8;
  padding-bottom: 20px;
}
.p-assessment-mail__main-img {
  padding: 15px 0 0;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-assessment-mail__main-img {
    padding: 50px 0 0;
  }
}

/*===========
メール査定とは*/
.p-mail-info-mainimg {
  background: #4BA0B8;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-mail-info-mainimg::before {
    content: '';
    display: block;
    width: 100%;
    height: 120px;
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/common/bg/bg_circle_bottom_w.svg) no-repeat top center;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.p-mail-info-mainimg__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/assessment/mail/info/main_img_photo.png) no-repeat bottom right;
  background-size: 20% auto;
  padding: 20px 25% 20px 0;
}
@media screen and (min-width: 812px) {
  .p-mail-info-mainimg__in {
    background-size: 23% auto;
    padding: 50px 25% 120px 0;
  }
}

@media screen\0 {
  .p-mail-info-mainimg::before {
    content: none;
  }
}
/*POINT*/
.p-mail-info-point {
  margin-bottom: 30px;
}
.p-mail-info-point__list {
  margin-top: 15px;
}
.p-mail-info-point__item {
  text-align: center;
  margin-bottom: 15px;
}
.p-mail-info-point__in {
  background: #EEFAFD;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-mail-info-point__in {
    padding: 20px 10px;
    height: 100%;
  }
}
.p-mail-info-point .name {
  color: #4BA0B8;
  padding: 15px 0 0;
  font-size: 22px;
  font-size: 1.375rem;
}
.p-mail-info-point__text {
  padding: 15px 0 0;
  text-align: left;
  display: inline-block;
}
.p-mail-info-point__text .item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.p-mail-info-point__text .item::before {
  content: '●';
  color: #FFEF00;
  position: absolute;
  top: 0;
  left: 0;
}
.p-mail-info-point.bad {
  background: #E6E6E6;
  margin: 0 -10px -10px;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .p-mail-info-point.bad {
    margin: 0 -20px -20px;
    padding: 40px;
  }
}
.p-mail-info-point .p-mail-info-point__in {
  background: #ffffff;
}

/*メール査定するには？*/
.p-mail-info__form {
  border: 5px solid #CBEDF7;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-mail-info__form {
    padding: 40px;
  }
}
.p-mail-info__form-qr {
  margin-top: 20px;
  background: #F9F9F9;
  padding: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-mail-info__form-qr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media screen and (min-width: 812px) {
  .p-mail-info__form-qr .img {
    padding-right: 30px;
  }
}
.p-mail-info__form-qr .text {
  color: #333333;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
  padding: 15px 0;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-mail-info__form-qr .text {
    font-size: 28px;
    font-size: 1.75rem;
    text-align: left;
    padding: 0;
  }
}

/*===========
form*/
.p-mail-form {
  background: #4BA0B8;
  padding: 20px 0 0;
}
@media screen and (min-width: 812px) {
  .p-mail-form {
    padding: 50px 0 0;
  }
}

/*商品*/
.p-mail-form-item__ttl {
  margin-top: 10px;
}
.p-mail-form-item__ttl .in {
  display: block;
  padding: 15px;
  text-align: center;
  color: #ffffff;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_up_w.svg) no-repeat right 7.5px center;
  background-size: 15px 15px;
  padding-right: 30px;
  background-color: #4BA0B8;
  border-radius: 5px 5px 0 0;
  transition: .3s;
  cursor: pointer;
}
.p-mail-form-item__ttl .in:hover {
  opacity: .7;
}
.p-mail-form-item__ttl .in.rotate {
  border-radius: 5px;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_w.svg);
}
.p-mail-form-item__contents {
  padding: 20px 10px 10px;
  border: 2px solid #4BA0B8;
  border-top: none;
  margin-bottom: 10px;
}
.p-mail-form-item .c-form-main__contents .c-basic-txt, .p-mail-form-item .c-form-main__contents .p-basic-list__item, .p-mail-form-item .c-form-main__contents .p-ol-list__item, .p-mail-form-item .c-form-main__contents .p-ol-list--sub__item, .p-mail-form-item .c-form-main__contents .p-ol-list--kana__item {
  width: 100%;
}

/*===========
電話査定
===========*/
.p-assessment-tel {
  background: #FFF799;
}
.p-assessment-tel__main-img {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/assessment/tel/img_main_visual_photo.png) no-repeat bottom right;
  background-size: 30%;
  padding: 20px 20% 0 0;
}
@media screen and (min-width: 812px) {
  .p-assessment-tel__main-img {
    padding: 80px 0;
    background-size: auto;
    background-position: center right;
  }
}

/*その他静的ページ*/
/* =========================================================
静的ページ
========================================================= */
/*===================
安心信頼の高価買取
===================*/
.trust .p-main-img__in {
  text-align: center;
}
.trust .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.trust .p-section-textimg .c-basic-txt, .trust .p-section-textimg .p-basic-list__item, .trust .p-section-textimg .p-ol-list__item, .trust .p-section-textimg .p-ol-list--sub__item, .trust .p-section-textimg .p-ol-list--kana__item {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .trust .p-section-textimg .c-basic-txt, .trust .p-section-textimg .p-basic-list__item, .trust .p-section-textimg .p-ol-list__item, .trust .p-section-textimg .p-ol-list--sub__item, .trust .p-section-textimg .p-ol-list--kana__item {
    text-align: left;
  }
}

/*===================
初めての方へ
===================*/
.beginners .p-main-img__in {
  text-align: center;
}
.beginners .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.beginners .p-beginners-icon {
  margin-bottom: 20px;
  text-align: center;
}
.beginners .p-beginners-icon img {
  max-width: 70px;
}

/*===================
買取の特徴
===================*/
.features .p-main-img__in {
  text-align: center;
}
.features .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===================
お客様センターについて
===================*/
.customer-center .p-main-img__in {
  text-align: center;
}
.customer-center .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.trust .p-section-textimg .c-basic-txt, .trust .p-section-textimg .p-basic-list__item, .trust .p-section-textimg .p-ol-list__item, .trust .p-section-textimg .p-ol-list--sub__item, .trust .p-section-textimg .p-ol-list--kana__item {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .trust .p-section-textimg .c-basic-txt, .trust .p-section-textimg .p-basic-list__item, .trust .p-section-textimg .p-ol-list__item, .trust .p-section-textimg .p-ol-list--sub__item, .trust .p-section-textimg .p-ol-list--kana__item {
    text-align: left;
  }
}

/*お客様センターの役割*/
@media screen and (min-width: 812px) {
  .p-customer-role {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/customer-center/img_role_gest.png) no-repeat top center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding-top: 20px;
    min-height: 610px;
  }
}
.p-customer-role__list {
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-customer-role__list {
    border-radius: 50%;
    width: 350px;
    height: 350px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 0;
  }
  .p-customer-role__list::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 50px 25px;
    position: absolute;
    bottom: 50px;
  }
}
.p-customer-role__list.goods {
  background: #CBEDF7;
}
@media screen and (min-width: 812px) {
  .p-customer-role__list.goods::before {
    border-color: transparent transparent #CBEDF7 transparent;
    right: 5px;
  }
}
.p-customer-role__list.another {
  background: #FEDDDA;
}
@media screen and (min-width: 812px) {
  .p-customer-role__list.another::before {
    border-color: transparent transparent #FEDDDA transparent;
    left: 5px;
  }
}
.p-customer-role__img {
  max-width: 60px;
  margin: 0 auto 5px;
}
@media screen and (min-width: 812px) {
  .p-customer-role__img {
    margin: 0 auto 15px;
    max-width: 120px;
  }
}
.p-customer-role__ttl {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-customer-role__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-customer-role__text {
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-customer-role__text {
    font-size: 15px;
    font-size: 0.9375rem;
    margin-bottom: 0;
  }
}

.p-customer-role-link {
  background: #F9F9F9;
  position: relative;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-customer-role-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding: 0;
  }
}
.p-customer-role-link::before {
  content: none;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 42px 24px;
  border-color: transparent transparent #F9F9F9 transparent;
  position: absolute;
  top: -42px;
  left: calc(50% - 24px);
}
@media screen and (min-width: 812px) {
  .p-customer-role-link::before {
    content: '';
  }
}
.p-customer-role-link__contents {
  background: #ffffff;
  padding: 20px;
  margin: 0 auto 10px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 812px) {
  .p-customer-role-link__contents {
    padding: 40px;
    margin: 20px;
  }
}
.p-customer-role-link__ttl {
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-customer-role-link__ttl {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-customer-role-link__list .item {
  margin-bottom: 15px;
}
.p-customer-role-link__list .item:last-of-type {
  margin-bottom: 0;
}
.p-customer-role-link__icon {
  position: absolute;
  left: calc(50% - 60px);
  top: calc(50% - 60px);
}

.p-customer-goods {
  border: 5px solid #CBEDF7;
  background: #ffffff;
  padding: 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-customer-goods {
    padding: 30px;
  }
}
.p-customer-goods__photo {
  text-align: center;
  margin-bottom: 20px;
}

.p-customer-message {
  position: relative;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_left_top_gray.svg) no-repeat top left;
  background-size: 20px 20px;
}
@media screen and (min-width: 812px) {
  .p-customer-message {
    background-size: 40px 40px;
  }
}
.p-customer-message::before, .p-customer-message::after {
  content: '';
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 812px) {
  .p-customer-message::before, .p-customer-message::after {
    width: 40px;
    height: 40px;
    background-size: 40px 40px;
  }
}
.p-customer-message::before {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_left_down_gray.svg) no-repeat top left;
  left: 0;
}
.p-customer-message::after {
  right: 0;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_right_down_gray.svg) no-repeat top left;
}
.p-customer-message__in {
  padding: 20px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_brow_right_top_gray.svg) no-repeat top right;
  background-size: 20px 20px;
}
@media screen and (min-width: 812px) {
  .p-customer-message__in {
    background-size: 40px 40px;
  }
}
@media screen and (min-width: 812px) {
  .p-customer-message__in {
    padding: 40px;
  }
}
.p-customer-message .c-basic-txt .line, .p-customer-message .p-basic-list__item .line, .p-customer-message .p-ol-list__item .line, .p-customer-message .p-ol-list--sub__item .line, .p-customer-message .p-ol-list--kana__item .line {
  position: relative;
  text-decoration: underline;
  text-decoration-color: #FFF100;
}

/*===================
マルカで買取5つのメリット
===================*/
.merit .p-main-img__in {
  text-align: center;
}
.merit .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.trust .p-section-textimg .c-basic-txt, .trust .p-section-textimg .p-basic-list__item, .trust .p-section-textimg .p-ol-list__item, .trust .p-section-textimg .p-ol-list--sub__item, .trust .p-section-textimg .p-ol-list--kana__item {
  text-align: center;
}
@media screen and (min-width: 812px) {
  .trust .p-section-textimg .c-basic-txt, .trust .p-section-textimg .p-basic-list__item, .trust .p-section-textimg .p-ol-list__item, .trust .p-section-textimg .p-ol-list--sub__item, .trust .p-section-textimg .p-ol-list--kana__item {
    text-align: left;
  }
}

.p-merit-nav__list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.p-merit-nav__list .c-callout-btn {
  background: #F9F9F9;
}
.p-merit-nav__list .c-callout-btn .c-callout-btn__name {
  padding-bottom: 11%;
}
.p-merit-nav__list .c-callout-btn .c-callout-btn__name .in {
  display: inline-block;
  line-height: 1.3;
  color: #333333;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_black.svg);
}

/*===================
買取6つの約束
===================*/
.sixpromise .p-main-img__in {
  text-align: center;
}
.sixpromise .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*===================
高価買取の秘密
===================*/
.secret .p-main-img__in {
  text-align: center;
}
.secret .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*.豊富な流通ルート開拓==============*/
.p-secret-root-map#s1_map {
  display: none;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/merit/secret/s1_map/bg_map.png) no-repeat center top;
  height: 340px;
  margin: 50px auto 0;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-secret-root-map#s1_map {
    display: block;
    width: 740px;
  }
}

/*MAP*/
.s1_mapitem1, .s1_mapitem2, .s1_mapitem3, .s1_mapitem4,
.s1_mapitem1_2, .s1_mapitem2_2, .s1_mapitem3_2, .s1_mapitem4_2,
.s1_mapitem1_3, .s1_mapitem2_3, .s1_mapitem3_3, .s1_mapitem4_3 {
  position: absolute;
}

.s1_mapitem1, .s1_mapitem1_2, .s1_mapitem1_3 {
  top: 165px;
  left: 350px;
}

.s1_mapitem1 {
  animation: s1_mapitem1 4s linear infinite;
  -webkit-animation: s1_mapitem1 4s linear infinite;
}

.s1_mapitem1_2 {
  animation: s1_mapitem1_2 linear 4s infinite 2s;
  -webkit-animation: s1_mapitem1_2 linear 4s infinite 2s;
  width: 0%;
}

.s1_mapitem1_3 {
  animation: s1_mapitem1_3 linear 4s infinite 3s;
  -webkit-animation: s1_mapitem1_3 linear 4s infinite 3s;
  width: 0%;
}

/*-hermes-*/
@keyframes s1_mapitem1 {
  to {
    animation-timing-function: ease-in;
    top: 200px;
    left: 280px;
    width: 0px;
  }
  50% {
    top: 170px;
    left: 280px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem1 {
  to {
    animation-timing-function: ease-in;
    top: 200px;
    left: 280px;
    width: 0px;
  }
  50% {
    top: 170px;
    left: 280px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-chanel-*/
@keyframes s1_mapitem1_2 {
  to {
    animation-timing-function: ease-in;
    top: 240px;
    left: 350px;
    width: 0px;
  }
  50% {
    top: 170px;
    left: 350px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem1_2 {
  to {
    animation-timing-function: ease-in;
    top: 290px;
    left: 440px;
    width: 0px;
  }
  50% {
    top: 200px;
    left: 420px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-louis vuitton-*/
@keyframes s1_mapitem1_3 {
  to {
    animation-timing-function: ease-in;
    top: 230px;
    left: 290px;
    width: 0px;
  }
  50% {
    top: 180px;
    left: 320px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem1_3 {
  to {
    animation-timing-function: ease-in;
    top: 230px;
    left: 290px;
    width: 0px;
  }
  50% {
    top: 180px;
    left: 320px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
.s1_mapitem2 {
  animation: s1_mapitem2 linear 4s infinite;
  -webkit-animation: s1_mapitem2 linear 4s infinite;
}

.s1_mapitem2_2 {
  animation: s1_mapitem2_2 linear 4s infinite 2s;
  -webkit-animation: s1_mapitem2_2 linear 4s infinite 2s;
  width: 0;
}

.s1_mapitem2_3 {
  animation: s1_mapitem2_3 linear 4s infinite 3s;
  -webkit-animation: s1_mapitem2_3 linear 4s infinite 3s;
  width: 0;
}

/*-emerald-*/
@keyframes s1_mapitem2 {
  to {
    animation-timing-function: ease-in;
    top: 210px;
    left: 220px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 280px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem2 {
  to {
    animation-timing-function: ease-in;
    top: 210px;
    left: 220px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 280px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-ruby-*/
@keyframes s1_mapitem2_2 {
  to {
    animation-timing-function: ease-in;
    top: 190px;
    left: 230px;
    width: 0px;
  }
  50% {
    top: 120px;
    left: 290px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem2_2 {
  to {
    animation-timing-function: ease-in;
    top: 190px;
    left: 300px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 350px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-sapphire-*/
@keyframes s1_mapitem2_3 {
  to {
    animation-timing-function: ease-in;
    top: 200px;
    left: 250px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 320px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem2_3 {
  to {
    animation-timing-function: ease-in;
    top: 240px;
    left: 310px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 370px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
.s1_mapitem3 {
  animation: s1_mapitem3 linear 4s infinite;
  -webkit-animation: s1_mapitem3 linear 4s infinite;
}

.s1_mapitem3_2 {
  animation: s1_mapitem3_2 linear 4s infinite 2s;
  -webkit-animation: s1_mapitem3_2 linear 4s infinite 2s;
  width: 0;
}

.s1_mapitem3_3 {
  animation: s1_mapitem3_3 linear 4s infinite 3s;
  -webkit-animation: s1_mapitem3_3 linear 4s infinite 3s;
  width: 0;
}

/*-diamond▼-*/
@keyframes s1_mapitem3 {
  to {
    animation-timing-function: ease-in;
    top: 150px;
    left: 550px;
    width: 0px;
  }
  50% {
    top: 180px;
    left: 480px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem3 {
  to {
    animation-timing-function: ease-in;
    top: 150px;
    left: 550px;
    width: 0px;
  }
  50% {
    top: 180px;
    left: 480px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-jewel-*/
@keyframes s1_mapitem3_2 {
  to {
    animation-timing-function: ease-in;
    top: 150px;
    left: 650px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 500px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem3_2 {
  to {
    animation-timing-function: ease-in;
    top: 150px;
    left: 650px;
    width: 0px;
  }
  50% {
    top: 150px;
    left: 500px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-diamond●-*/
@keyframes s1_mapitem3_3 {
  to {
    animation-timing-function: ease-in;
    top: 170px;
    left: 650px;
    width: 0px;
  }
  50% {
    top: 190px;
    left: 500px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem3_3 {
  to {
    animation-timing-function: ease-in;
    top: 170px;
    left: 650px;
    width: 0px;
  }
  50% {
    top: 190px;
    left: 500px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
.s1_mapitem4 {
  animation: s1_mapitem4 linear 4s infinite;
  -webkit-animation: s1_mapitem4 linear 4s infinite;
}

.s1_mapitem4_2 {
  animation: s1_mapitem4_2 linear 4s infinite 2s;
  -webkit-animation: s1_mapitem4_2 linear 4s infinite 2s;
  width: 0;
}

.s1_mapitem4_3 {
  animation: s1_mapitem4_3 linear 4s infinite 3s;
  -webkit-animation: s1_mapitem4_3 linear 4s infinite 3s;
  width: 0;
}

/*-daytona-*/
@keyframes s1_mapitem4 {
  to {
    animation-timing-function: ease-in;
    top: 150px;
    left: 60px;
    width: 0px;
  }
  50% {
    top: 100px;
    left: 210px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem4 {
  to {
    animation-timing-function: ease-in;
    top: 150px;
    left: 60px;
    width: 0px;
  }
  50% {
    top: 100px;
    left: 210px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-submariner-*/
@keyframes s1_mapitem4_2 {
  to {
    animation-timing-function: ease-in;
    top: 140px;
    left: 100px;
    width: 0px;
  }
  50% {
    top: 100px;
    left: 250px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem4_2 {
  to {
    animation-timing-function: ease-in;
    top: 140px;
    left: 100px;
    width: 0px;
  }
  50% {
    top: 100px;
    left: 250px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*-yachtmaster-*/
@keyframes s1_mapitem4_3 {
  to {
    animation-timing-function: ease-in;
    top: 130px;
    left: 65px;
    width: 0px;
  }
  50% {
    top: 40px;
    left: 230px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
@-webkit-keyframes s1_mapitem4_3 {
  to {
    animation-timing-function: ease-in;
    top: 130px;
    left: 65px;
    width: 0px;
  }
  50% {
    top: 40px;
    left: 230px;
    width: 50px;
  }
  from {
    top: 165px;
    left: 350px;
    width: 10px;
    animation-timing-function: ease-in;
  }
}
/*list*/
.p-secret-root__list .p-secret-root__item {
  margin-bottom: 15px;
  text-align: center;
}

#s4_loop {
  display: none;
  width: 740px;
  height: 416px;
  margin: 0 auto 20px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/merit/secret/s4_loop/s4_bgmap.jpg) center no-repeat;
  position: relative;
}
@media screen and (min-width: 812px) {
  #s4_loop {
    display: block;
  }
}
#s4_loop .s4_item {
  position: absolute;
  width: 370px;
  top: calc(50% - 185px);
  left: calc(50% - 185px);
  -webkit-animation: spin2 30s linear infinite;
  -moz-animation: spin2 30s linear infinite;
  -ms-animation: spin2 30s linear infinite;
  -o-animation: spin2 30s linear infinite;
  animation: spin2 30s linear infinite;
}
#s4_loop .earth {
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 150px);
  width: 300px;
}

@-webkit-keyframes spin2 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@-moz-keyframes spin2 {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-ms-keyframes spin2 {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(-360deg);
  }
}
@-o-keyframes spin2 {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(-360deg);
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*===================
おもてなしの心で買取
===================*/
.omotenashi .p-main-img__in {
  text-align: center;
}
.omotenashi .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*1======*/
.p-omotenashi-point01 {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/merit/omotenashi/photo_point01_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0;
}
@media screen and (min-width: 812px) {
  .p-omotenashi-point01 {
    padding: 100px 0;
  }
}
.p-omotenashi-point01 .c-ttl-simple,
.p-omotenashi-point01 .c-basic-txt,
.p-omotenashi-point01 .p-basic-list__item,
.p-omotenashi-point01 .p-ol-list__item,
.p-omotenashi-point01 .p-ol-list--sub__item,
.p-omotenashi-point01 .p-ol-list--kana__item {
  color: #ffffff;
}

/*4======*/
.p-omotenashi-point04 {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/merit/omotenashi/photo_point04_bg.jpg) no-repeat center;
  background-size: cover;
  padding: 50px 0;
}
@media screen and (min-width: 812px) {
  .p-omotenashi-point04 {
    padding: 100px 0;
  }
}
.p-omotenashi-point04 .c-ttl-simple,
.p-omotenashi-point04 .c-basic-txt,
.p-omotenashi-point04 .p-basic-list__item,
.p-omotenashi-point04 .p-ol-list__item,
.p-omotenashi-point04 .p-ol-list--sub__item,
.p-omotenashi-point04 .p-ol-list--kana__item {
  color: #ffffff;
}

/*===================
会社概要
===================*/
.company .c-table .c-th {
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .company .c-table .c-th {
    width: 20%;
    text-align: center;
  }
}
@media screen and (min-width: 812px) {
  .company .c-table .c-td {
    width: 80%;
  }
}

/*===================
よくある質問
===================*/
.qa .p-main-img__in {
  text-align: center;
}
.qa .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.p-qa-contents {
  margin: 15px auto 0;
}
@media screen and (min-width: 812px) {
  .p-qa-contents {
    margin: 80px auto 0;
  }
}

.p-qa-navi__item {
  margin: 0 3px 5px;
  display: inline-block;
  vertical-align: top;
  width: 47%;
  transition: .3s;
  cursor: pointer;
}
.p-qa-navi__item:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .p-qa-navi__item {
    width: 100%;
    margin: 0 auto 15px;
    padding: 0 15px 0 0;
    display: block;
  }
}
.p-qa-navi__item.js-tab-active .in {
  background: #4BA0B8;
  color: #ffffff;
}
.p-qa-navi__item.js-tab-active .in::before {
  border-color: #4BA0B8 transparent transparent transparent;
}
@media screen and (min-width: 812px) {
  .p-qa-navi__item.js-tab-active .in::before {
    border-color: transparent transparent transparent #4BA0B8;
  }
}
.p-qa-navi__item .in {
  position: relative;
  display: inline-block;
  padding: 10px;
  border-radius: 10px;
  background: #ffffff;
  width: 100%;
  text-align: center;
  line-height: 1.3;
  color: #333333;
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 812px) {
  .p-qa-navi__item .in {
    padding: 15px 10px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-qa-navi__item .in::before {
  content: ' ';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -5px;
  right: calc(50% - 10px);
}
@media screen and (min-width: 812px) {
  .p-qa-navi__item .in::before {
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #ffffff;
    bottom: auto;
    top: calc(50% - 5px);
    right: -10px;
  }
}

.p-qa-main {
  padding: 10px;
  border: 1px solid #EEEEEE;
}
.p-qa-main__title {
  background: #F9F9F9;
  text-align: center;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 812px) {
  .p-qa-main__title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-qa-main .p-qa-box__in {
  margin-bottom: 10px;
}
.p-qa-main .p-qa-box__q {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #4BA0B8;
  margin-bottom: 10px;
  color: #4BA0B8;
  line-height: 1.5;
  transition: .3s;
  cursor: pointer;
}
.p-qa-main .p-qa-box__q:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .p-qa-main .p-qa-box__q {
    margin-bottom: 15px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-qa-main .p-qa-box__q::before {
  content: 'Q';
  font-size: 30px;
  font-size: 1.875rem;
  position: absolute;
  top: 0px;
  left: 14px;
}
@media screen and (min-width: 812px) {
  .p-qa-main .p-qa-box__q::before {
    top: 11px;
  }
}
.p-qa-main .p-qa-box__q .js-accordion__arrow {
  display: block;
  padding: 12px 10px 12px 50px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_up_main.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .p-qa-main .p-qa-box__q .js-accordion__arrow {
    padding: 20px 10px 20px 50px;
  }
}
.p-qa-main .p-qa-box__q .js-accordion__arrow.rotate {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_main.svg) no-repeat right center;
  background-size: 15px 15px;
  padding-right: 20px;
}
.p-qa-main .p-qa-box__a {
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 10px 10px 20px 50px;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-qa-main .p-qa-box__a {
    padding: 10px 10px 30px 50px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-qa-main .p-qa-box__a::before {
  content: 'A';
  font-size: 30px;
  font-size: 1.875rem;
  position: absolute;
  top: 11px;
  left: 14px;
}

/*===================
お客様の声
===================*/
.voice .p-main-img__in {
  text-align: center;
}
.voice .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.p-voice-box__in {
  margin-bottom: 10px;
}
.p-voice-box__ttl {
  background: #F9F9F9;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  transition: .3s;
  cursor: pointer;
}
.p-voice-box__ttl:hover {
  opacity: .7;
}
@media screen and (min-width: 812px) {
  .p-voice-box__ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-voice-box__ttl .js-accordion__arrow {
  display: block;
  padding: 10px;
  font-weight: bold;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_up_main.svg) no-repeat right 7.5px center;
  background-size: 15px 15px;
  padding-right: 30px;
}
@media screen and (min-width: 812px) {
  .p-voice-box__ttl .js-accordion__arrow {
    padding: 15px;
  }
}
.p-voice-box__ttl .js-accordion__arrow.rotate {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_main.svg) no-repeat right 7.5px center;
  background-size: 15px 15px;
  padding-right: 30px;
}
.p-voice-box__block {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-voice-box__block {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-voice-box__block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.p-voice-box__icon {
  width: 100px;
  margin: 0 auto 10px;
  padding: 0 10px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-voice-box__text {
    width: calc(100% - 120px);
  }
}
.p-voice-box__text .name {
  display: block;
  width: 100%;
  text-align: right;
  padding: 10px 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

/*===================
お客様の声 ブロック
===================*/
.p-voice-block {
  padding: 30px 0;
  margin: 60px 0 0 0;
}
@media screen and (min-width: 812px) {
  .p-voice-block {
    padding: 50px 0;
    margin: 60px 0 0 0;
  }
}

/*===================
media情報
===================*/
.p-media-block {
  border: 1px solid #cccccc;
  margin-bottom: 50px;
}
.p-media-block__info {
  background: #F9F9F9;
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-media-block__info {
    padding: 10px 15px;
  }
}
.p-media-block__info .date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #4BA0B8;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 812px) {
  .p-media-block__info .date {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-media-block__info .category {
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 10px;
  background: #EB5262;
  padding: 10px;
  min-width: 100px;
  text-align: center;
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (min-width: 812px) {
  .p-media-block__info .category {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-media-block__ttl {
  padding: 10px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .p-media-block__ttl {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.p-media-block__contents {
  padding: 10px;
}
@media screen and (min-width: 812px) {
  .p-media-block__contents {
    padding: 15px;
  }
}

/*===================
検索結果
===================*/
.p-search {
  margin-bottom: 25px;
}
.p-search__ttl {
  margin: 10px auto;
  padding: 10px;
  background: #4BA0B8;
  color: #ffffff;
  border-radius: 5px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-search__ttl {
    padding: 15px 10px;
    text-align: left;
  }
}
.p-search-box {
  border: 1px solid #cccccc;
  margin-bottom: 50px;
  position: relative;
  transition: .3s;
  cursor: pointer;
}
.p-search-box a.a100:not(.in-link) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-indent: -999px;
  z-index: 5;
}
.p-search-box a.a100.in-link {
  position: relative;
  z-index: 5;
}
.p-search-box:hover {
  opacity: .7;
}
.p-search-box__ttl {
  width: 100%;
  padding: 10px;
  background: #eeeeee;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .p-search-box__ttl {
    font-size: 20px;
    font-size: 1.25rem;
    padding: 15px;
  }
}
.p-search-box__in {
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-search-box__img {
  width: 30%;
  padding-right: 10px;
}
@media screen and (min-width: 812px) {
  .p-search-box__img {
    width: 20%;
    padding-right: 15px;
  }
}
.p-search-box__img img {
  width: 100%;
  height: auto;
  border: 2px solid #eeeeee;
}
.p-search-box__contents {
  width: 70%;
}
@media screen and (min-width: 812px) {
  .p-search-box__contents {
    width: 80%;
  }
}

/*===================
商品が並んでいるコマ　クーポン等
===================*/
.p-goods-box {
  margin: 20px auto 30px;
  border-top: 6px double #e5e5e5;
  border-bottom: 6px double #e5e5e5;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  padding: 10px 10px 0;
}
@media screen and (min-width: 812px) {
  .p-goods-box {
    margin-top: 30px;
    padding: 20px 20px 0;
  }
}

.p-goods-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.p-goods-list__item {
  width: 50%;
  padding: 0 10px;
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .p-goods-list__item {
    width: 25%;
  }
}
.p-goods-list__photo {
  text-align: center;
  max-height: 120px;
  overflow: hidden;
  margin-bottom: 13px;
}
.p-goods-list__name {
  min-height: 40px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 1px dotted #bfbfbf;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-goods-list__name {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-goods-list__pay {
  color: #e84728;
}
.p-goods-list__pay .sub {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
}
.p-goods-list__pay .main {
  font-size: 17px;
  font-size: 1.0625rem;
  display: block;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .p-goods-list__pay .main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-goods-list__new {
  display: block;
  margin-top: 10px;
  background: #EA5261;
  text-align: center;
  padding: 5px;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
}

/*===================
期間限定買取価格
===================*/
.p-attention-main {
  border: 5px solid #D0AC31;
  padding: 5px;
}
@media screen and (min-width: 812px) {
  .p-attention-main {
    padding: 10px;
  }
}
.p-attention-main__in {
  border: 2px solid #D0AC31;
  padding: 35px 10px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .p-attention-main__in {
    padding: 60px 20px 100px;
  }
}
@media screen and (min-width: 812px) {
  .p-attention-main__in {
    padding: 90px 30px 150px;
  }
}
.p-attention-main__in::before {
  content: ' ';
  width: calc(100% - 20px);
  height: 300px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/attention/img_attention_amount_top.png) top center no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 10px;
}
.p-attention-main__in::after {
  content: ' ';
  width: calc(100% - 20px);
  height: 300px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/attention/img_attention_amount_bottom.png) bottom center no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.p-attention-main__ttl {
  margin: 0 auto 20px;
  width: 80%;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-attention-main__ttl {
    margin: 0 auto 50px;
  }
}
.p-attention-main__photo {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-attention-main__photo {
    margin-bottom: 30px;
  }
}

.p-attention-info__main {
  border-top: 1px solid #D1D1D1;
  border-bottom: 1px solid #D1D1D1;
  margin-bottom: 20px;
  padding: 20px 0 0;
}
@media screen and (min-width: 812px) {
  .p-attention-info__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    padding: 50px 0 30px;
  }
}
@media screen and (min-width: 812px) {
  .p-attention-info__main .item {
    width: 50%;
    padding-left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-attention-info__ttl {
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 5px;
}
@media screen and (min-width: 812px) {
  .p-attention-info__ttl {
    font-size: 14px;
    font-size: 0.875rem;
    width: 120px;
    margin-bottom: 15px;
  }
}
.p-attention-info__ttl::after {
  content: ":";
  padding-left: 5px;
}
.p-attention-info__date {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 812px) {
  .p-attention-info__date {
    font-size: 24px;
    font-size: 1.5rem;
    width: calc(100% - 120px);
  }
}
@media screen and (min-width: 812px) {
  .p-attention-info__sub {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}

/*ランク表*/
.p-attention-rank {
  border: 1px solid #E5E5E5;
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-attention-rank {
    max-width: 35%;
  }
}
.p-attention-rank__title {
  background: #F9F9F9;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  font-size: 1rem;
}
.p-attention-rank__list {
  padding: 10px 10px 0;
  margin: 0 auto;
}
@media screen and (min-width: 812px) {
  .p-attention-rank__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-attention-rank__item {
  margin-bottom: 15px;
}
@media screen and (min-width: 812px) {
  .p-attention-rank__item {
    width: 50%;
  }
}
.p-attention-rank__item .rank {
  display: inline-block;
  vertical-align: baseline;
  width: 30px;
  color: #E84728;
  position: relative;
  font-size: 12px;
  font-size: 0.75rem;
}
.p-attention-rank__item .rank::after {
  content: "…";
  position: absolute;
  right: 0;
  top: 0;
  color: #000000;
}
.p-attention-rank__item .text {
  display: inline-block;
  vertical-align: baseline;
  width: calc(100% - 35px);
  color: #000000;
  padding-left: 5px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (min-width: 812px) {
  .p-attention-pay {
    padding-left: 20px;
    width: 65%;
  }
}
.p-attention-pay .ttl {
  width: 100%;
  background: #A37E2B;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-attention-pay .ttl {
    padding: 15px;
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.p-attention-pay .date {
  text-align: center;
  font-size: 35px;
  font-size: 2.1875rem;
  color: #E84728;
}
@media screen and (min-width: 812px) {
  .p-attention-pay .date {
    font-size: 70px;
    font-size: 4.375rem;
  }
}
.p-attention-pay .date .small {
  font-size: 70%;
}

/*===================
会員 マイページの説明
===================*/
.member-guide .p-main-img__in {
  text-align: center;
}
.member-guide .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

/*link*/
.member-guide .p-member-link {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.member-guide .p-member-link__item {
  text-align: center;
  margin-bottom: 10px;
  width: 33.3%;
  padding: 5px;
}

/*会員登録について*/
.p-member-merit {
  border: 5px solid #CBEDF7;
  background-color: #ffffff;
  padding: 20px;
}
@media screen and (min-width: 812px) {
  .p-member-merit {
    background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/member-guide/photo_staff.jpg) no-repeat bottom right;
    background-color: #ffffff;
    background-size: 50%;
    padding: 30px;
  }
}
@media screen and (min-width: 812px) {
  .p-member-merit__list {
    width: 50%;
  }
}
.p-member-merit__item {
  background: #FAFAFA;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-member-merit__item {
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    margin-bottom: 20px;
  }
}
.p-member-merit__item:last-of-type {
  margin-bottom: 0;
}
.p-member-merit__icon {
  max-width: 50px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 812px) {
  .p-member-merit__icon {
    max-width: 100%;
    margin-bottom: 0;
    width: 90px;
  }
}
@media screen and (min-width: 812px) {
  .p-member-merit .c-basic-txt, .p-member-merit .p-basic-list__item, .p-member-merit .p-ol-list__item, .p-member-merit .p-ol-list--sub__item, .p-member-merit .p-ol-list--kana__item {
    font-size: 18px;
    font-size: 1.125rem;
    width: calc(100% - 90px);
    padding-left: 15px;
  }
}

/*マイページについて*/
.p-member-about {
  border: 5px solid #CBEDF7;
  background-color: #ffffff;
  padding: 20px 20px 0;
}
@media screen and (min-width: 812px) {
  .p-member-about {
    padding: 30px 0 0;
  }
}
.p-member-about__ttl {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 30px;
  padding: 30px 0;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .p-member-about__ttl {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
@media screen and (min-width: 812px) {
  .p-member-about__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-member-about__item {
  padding: 0 0 20px;
}
@media screen and (min-width: 812px) {
  .p-member-about__item {
    padding: 0 15px 30px;
    width: 50%;
  }
}
.p-member-about__in {
  position: relative;
  margin-top: 45px;
  padding: 60px 15px 30px;
  background: #F9F9F9;
  text-align: center;
}
.p-member-about__icon {
  position: absolute;
  top: -45px;
  left: calc(50% - 43.5px);
}
.p-member-about__point {
  color: #4BA0B8;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.p-member-about-box {
  background: #ffffff;
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .p-member-about-box {
    padding: 30px;
    margin-bottom: 50px;
  }
}
.p-member-about-box__in {
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .p-member-about-box__in {
    margin-bottom: 70px;
  }
}
.p-member-about-box__in:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 812px) {
  .p-member-about-btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
.p-member-about-btn__btn {
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-member-about-btn__btn {
    width: 50%;
    padding: 0 10px;
  }
}
.p-member-about-btn__btn .link {
  display: block;
  text-align: center;
  border: 5px solid #ECECEC;
  border-radius: 50px;
}
.p-member-about-btn__btn .link.form .in {
  background-color: #B13052;
}
.p-member-about-btn__btn .link.login .in {
  background-color: #4BA0B8;
}
.p-member-about-btn__btn .link .in {
  display: block;
  text-align: center;
  border: 5px solid #ffffff;
  border-radius: 50px;
  padding: 30px;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_right_w.svg) no-repeat right 7.5px center;
  background-size: 15px 15px;
  padding-right: 30px;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 812px) {
  .p-member-about-btn__btn .link .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*===========
アンティーク・ロレックス
============*/
.antique-rolex .p-root-menu {
  overflow: hidden;
  background: #000000;
}
.antique-rolex .p-root-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-menu__list {
    padding: 17px 0;
  }
}
.antique-rolex .p-root-menu__item {
  width: 50%;
  text-align: center;
  border-bottom: 1px dashed #ffffff;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-menu__item {
    width: 20%;
    border-bottom: none;
    border-left: 1px solid #ffffff;
  }
}
.antique-rolex .p-root-menu__item:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-menu__item:last-of-type {
    border-right: 1px solid #ffffff;
  }
}
.antique-rolex .p-root-menu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-size: 0.8125rem;
  color: #ffffff;
  line-height: 1.3;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/icon/icon_arrow_down_w.svg) no-repeat right 5px center;
  background-size: 10px 10px;
  padding-right: 20px;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-menu__link {
    font-size: 17px;
    font-size: 1.0625rem;
    background: none;
    padding: 10px;
  }
}
.antique-rolex .p-root-menu__link:hover {
  background-color: #959595;
}
.antique-rolex .p-root-menu__link .name {
  display: none;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-menu__link .name {
    display: block;
  }
}

.antique-rolex .p-main-img {
  -moz-box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.17);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.17);
  box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.17);
}
.antique-rolex .p-main-img__in {
  text-align: center;
}
.antique-rolex .p-main-img__in img {
  width: 100%;
  vertical-align: bottom;
}

.antique-rolex .p-root-title {
  text-align: center;
  background: #000000;
  padding: 10px 5px;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-title {
    padding: 0px;
  }
}
.antique-rolex .p-root-title .in {
  display: block;
  max-width: 1000px;
  border-top: 6px double #ffffff;
  border-bottom: 6px double #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  margin: 0 auto;
  padding: 10px 5px;
  color: #ffffff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-root-title .in {
    background: none;
    padding: 10px 0;
    border: none;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.antique-rolex .p-antique-rolex-contnets {
  background: #000000;
  padding: 20px 0;
}
.antique-rolex .p-antique-rolex-contnets .c-basic-txt, .antique-rolex .p-antique-rolex-contnets .p-basic-list__item, .antique-rolex .p-antique-rolex-contnets .p-ol-list__item, .antique-rolex .p-antique-rolex-contnets .p-ol-list--sub__item, .antique-rolex .p-antique-rolex-contnets .p-ol-list--kana__item {
  color: #ffffff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 812px) {
  .antique-rolex .p-antique-rolex-contnets .c-basic-txt, .antique-rolex .p-antique-rolex-contnets .p-basic-list__item, .antique-rolex .p-antique-rolex-contnets .p-ol-list__item, .antique-rolex .p-antique-rolex-contnets .p-ol-list--sub__item, .antique-rolex .p-antique-rolex-contnets .p-ol-list--kana__item {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

/*注目アイテム一覧===========*/
.p-antique-rolex-list__list {
  margin-bottom: 30px;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-list__list {
    margin-bottom: 50px;
  }
}
.p-antique-rolex-list__item {
  padding: 0 5px;
  margin-bottom: 10px;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-list__item {
    width: 25%;
  }
}
.p-antique-rolex-list__btn {
  display: block;
  background: #666666;
  padding: 10px;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-list__btn {
    padding: 15px 10px;
  }
}
.p-antique-rolex-list__btn::before {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.p-antique-rolex-list__btn .in {
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-list__btn .in {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

.p-antique-rolex-box__ttl {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-box__ttl {
    margin-bottom: 40px;
  }
}
.p-antique-rolex-box__ttl .in {
  display: inline-block;
  padding: 0 20px;
  border: 2px solid #000000;
  border-top: none;
  border-bottom: none;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-box__ttl .in {
    padding: 0 30px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.p-antique-rolex-goods {
  padding-bottom: 20px;
  border-bottom: 2px dotted #959595;
  margin-bottom: 20px;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-goods {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.p-antique-rolex-goods .p-section-textimg__contents {
  padding: 20px;
}
.p-antique-rolex-goods__name {
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-goods__name {
    font-size: 25px;
    font-size: 1.5625rem;
  }
}
.p-antique-rolex-goods__pay {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images/brandlist/rolex/antique/itemlist_maruka.png) no-repeat left center;
  background-size: 85px auto;
  padding: 10px 0 10px 90px;
  margin-top: 20px;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-goods__pay {
    background-size: 108px 52px;
    padding: 15px 0 15px 118px;
  }
}
.p-antique-rolex-goods__pay .in {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 812px) {
  .p-antique-rolex-goods__pay .in {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
.p-antique-rolex-goods__img {
  text-align: center;
}
.p-antique-rolex-goods__img .c-responsive-img {
  vertical-align: bottom;
}

.antique-rolex .p-benefit-brandlist .p-benefit-brandlist__contents .no .icon {
  fill: #cccccc;
}

.antique-rolex .p-benefit-purchase .in {
  background: #000000;
}

/*===========
アンティーク・ロレックス
============*/
/*メインイメージ*/
.rolexlist .p-main-img {
  background: #005433;
}
.rolexlist .p-main-img .p-main-img__in {
  text-align: center;
}
.rolexlist .p-main-img .p-main-img__in img {
  width: auto;
}

/*時計一覧*/
.p-rolexlist-list {
  background: #F9FCFB;
}
.p-rolexlist-list__h2 {
  background: #327B68;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list__h2 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-rolexlist-list__h3 {
  border-bottom: 1px solid #327B68;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.p-rolexlist-list__h3 .in {
  display: inline-block;
  color: #327B68;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list__h3 .in {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-rolexlist-list__h3 .main {
  display: inline-block;
  vertical-align: middle;
}
.p-rolexlist-list__h3 .sub {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0 0 10px;
  font-size: 60%;
}
.p-rolexlist-list__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.p-rolexlist-list__item {
  width: 50%;
  padding: 5px;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list__item {
    width: 25%;
  }
}
.p-rolexlist-list__in {
  background: #ffffff;
  padding: 5px;
}
.p-rolexlist-list__head {
  text-align: center;
}
.p-rolexlist-list__photo {
  margin-bottom: 10px;
}
.p-rolexlist-list__photo img {
  max-width: 120px;
}
.p-rolexlist-list__name {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list__name {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-rolexlist-list .info {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list .info {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-rolexlist-list__contents .in {
  background: #F2F2F2;
  padding: 5px;
}
.p-rolexlist-list__contents .in:first-of-type {
  margin-bottom: 10px;
}
.p-rolexlist-list__contents .ttl {
  width: 35px;
  display: inline-block;
  vertical-align: middle;
  padding: 5px 3px;
  background: #FF0000;
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list__contents .ttl {
    width: 40px;
    padding: 5px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-rolexlist-list__contents .ttl .new {
  font-size: 120%;
}
.p-rolexlist-list__contents .text {
  width: calc(100% - 43px);
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #FF0000;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 812px) {
  .p-rolexlist-list__contents .text {
    width: calc(100% - 50px);
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.p-rolexlist-list__contents .text .new {
  font-size: 120%;
}
.p-rolexlist-list__contents .text .small {
  font-size: 60%;
}

/* Utility
======================================= */
/* =========================================================
text - 文字の装飾など
========================================================= */
/*=========
フォントファミリーの指定
=========*/
/* Gothic */
.u-ff-base {
  font-family: Lato, "Noto Sans Japanese", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

/* 明朝 */
.u-ff-serif {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, Georgia, メイリオ, Meiryo, serif !important;
}

/* 英語  */
.u-ff-eg {
  font-family: Arial, "Helvetica Neue", Helvetica, Verdana, sans-serif !important;
}

/* 英語  サンセリフ*/
.u-ff-eg-serif {
  font-family: Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif !important;
}

.u-fc-main {
  color: #4BA0B8 !important;
}

.u-fc-white {
  color: #ffffff !important;
}

.u-fc-red {
  color: #d90b23 !important;
}

.u-fc-green {
  color: #766D44 !important;
}

.u-fc-blue {
  color: #2D83BA !important;
}

.u-fw-l {
  font-weight: lighter !important;
}

.u-fw-n {
  font-weight: normal !important;
}

.u-fw-b {
  font-weight: bold !important;
}

.u-ta-l {
  text-align: left;
}

.u-ta-c {
  text-align: center;
}

.u-ta-r {
  text-align: right;
}

/* =========================================================
margin - 余白の調整
========================================================= */
.u-m-0 {
  margin: 0 !important;
}

.u-mt-0,
.u-my-0 {
  margin-top: 0 !important;
}

.u-mr-0,
.u-mx-0 {
  margin-right: 0 !important;
}

.u-mb-0,
.u-my-0 {
  margin-bottom: 0 !important;
}

.u-ml-0,
.u-mx-0 {
  margin-left: 0 !important;
}

.u-m-1 {
  margin: 0.5rem !important;
}

.u-mt-1,
.u-my-1 {
  margin-top: 0.5rem !important;
}

.u-mr-1,
.u-mx-1 {
  margin-right: 0.5rem !important;
}

.u-mb-1,
.u-my-1 {
  margin-bottom: 0.5rem !important;
}

.u-ml-1,
.u-mx-1 {
  margin-left: 0.5rem !important;
}

.u-m-2 {
  margin: 1rem !important;
}

.u-mt-2,
.u-my-2 {
  margin-top: 1rem !important;
}

.u-mr-2,
.u-mx-2 {
  margin-right: 1rem !important;
}

.u-mb-2,
.u-my-2 {
  margin-bottom: 1rem !important;
}

.u-ml-2,
.u-mx-2 {
  margin-left: 1rem !important;
}

.u-m-3 {
  margin: 1.5rem !important;
}

.u-mt-3,
.u-my-3 {
  margin-top: 1.5rem !important;
}

.u-mr-3,
.u-mx-3 {
  margin-right: 1.5rem !important;
}

.u-mb-3,
.u-my-3 {
  margin-bottom: 1.5rem !important;
}

.u-ml-3,
.u-mx-3 {
  margin-left: 1.5rem !important;
}

.u-m-4 {
  margin: 2rem !important;
}

.u-mt-4,
.u-my-4 {
  margin-top: 2rem !important;
}

.u-mr-4,
.u-mx-4 {
  margin-right: 2rem !important;
}

.u-mb-4,
.u-my-4 {
  margin-bottom: 2rem !important;
}

.u-ml-4,
.u-mx-4 {
  margin-left: 2rem !important;
}

.u-m-5 {
  margin: 3rem !important;
}

.u-mt-5,
.u-my-5 {
  margin-top: 3rem !important;
}

.u-mr-5,
.u-mx-5 {
  margin-right: 3rem !important;
}

.u-mb-5,
.u-my-5 {
  margin-bottom: 3rem !important;
}

.u-ml-5,
.u-mx-5 {
  margin-left: 3rem !important;
}

.u-p-0 {
  padding: 0 !important;
}

.u-pt-0,
.u-py-0 {
  padding-top: 0 !important;
}

.u-pr-0,
.u-px-0 {
  padding-right: 0 !important;
}

.u-pb-0,
.u-py-0 {
  padding-bottom: 0 !important;
}

.u-pl-0,
.u-px-0 {
  padding-left: 0 !important;
}

.u-p-1 {
  padding: 0.5rem !important;
}

.u-pt-1,
.u-py-1 {
  padding-top: 0.5rem !important;
}

.u-pr-1,
.u-px-1 {
  padding-right: 0.5rem !important;
}

.u-pb-1,
.u-py-1 {
  padding-bottom: 0.5rem !important;
}

.u-pl-1,
.u-px-1 {
  padding-left: 0.5rem !important;
}

.u-p-2 {
  padding: 1rem !important;
}

.u-pt-2,
.u-py-2 {
  padding-top: 1rem !important;
}

.u-pr-2,
.u-px-2 {
  padding-right: 1rem !important;
}

.u-pb-2,
.u-py-2 {
  padding-bottom: 1rem !important;
}

.u-pl-2,
.u-px-2 {
  padding-left: 1rem !important;
}

.u-p-3 {
  padding: 1.5rem !important;
}

.u-pt-3,
.u-py-3 {
  padding-top: 1.5rem !important;
}

.u-pr-3,
.u-px-3 {
  padding-right: 1.5rem !important;
}

.u-pb-3,
.u-py-3 {
  padding-bottom: 1.5rem !important;
}

.u-pl-3,
.u-px-3 {
  padding-left: 1.5rem !important;
}

.u-p-4 {
  padding: 2rem !important;
}

.u-pt-4,
.u-py-4 {
  padding-top: 2rem !important;
}

.u-pr-4,
.u-px-4 {
  padding-right: 2rem !important;
}

.u-pb-4,
.u-py-4 {
  padding-bottom: 2rem !important;
}

.u-pl-4,
.u-px-4 {
  padding-left: 2rem !important;
}

.u-p-5 {
  padding: 3rem !important;
}

.u-pt-5,
.u-py-5 {
  padding-top: 3rem !important;
}

.u-pr-5,
.u-px-5 {
  padding-right: 3rem !important;
}

.u-pb-5,
.u-py-5 {
  padding-bottom: 3rem !important;
}

.u-pl-5,
.u-px-5 {
  padding-left: 3rem !important;
}

.u-m-auto {
  margin: auto !important;
}

.u-mt-auto,
.u-my-auto {
  margin-top: auto !important;
}

.u-mr-auto,
.u-mx-auto {
  margin-right: auto !important;
}

.u-mb-auto,
.u-my-auto {
  margin-bottom: auto !important;
}

.u-ml-auto,
.u-mx-auto {
  margin-left: auto !important;
}

@media screen and (min-width: 576px) {
  .u-m-sm-0 {
    margin: 0 !important;
  }

  .u-mt-sm-0,
  .u-my-sm-0 {
    margin-top: 0 !important;
  }

  .u-mr-sm-0,
  .u-mx-sm-0 {
    margin-right: 0 !important;
  }

  .u-mb-sm-0,
  .u-my-sm-0 {
    margin-bottom: 0 !important;
  }

  .u-ml-sm-0,
  .u-mx-sm-0 {
    margin-left: 0 !important;
  }

  .u-m-sm-1 {
    margin: 0.5rem !important;
  }

  .u-mt-sm-1,
  .u-my-sm-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-sm-1,
  .u-mx-sm-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-sm-1,
  .u-my-sm-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-sm-1,
  .u-mx-sm-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-sm-2 {
    margin: 1rem !important;
  }

  .u-mt-sm-2,
  .u-my-sm-2 {
    margin-top: 1rem !important;
  }

  .u-mr-sm-2,
  .u-mx-sm-2 {
    margin-right: 1rem !important;
  }

  .u-mb-sm-2,
  .u-my-sm-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-sm-2,
  .u-mx-sm-2 {
    margin-left: 1rem !important;
  }

  .u-m-sm-3 {
    margin: 1.5rem !important;
  }

  .u-mt-sm-3,
  .u-my-sm-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-sm-3,
  .u-mx-sm-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-sm-3,
  .u-my-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-sm-3,
  .u-mx-sm-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-sm-4 {
    margin: 2rem !important;
  }

  .u-mt-sm-4,
  .u-my-sm-4 {
    margin-top: 2rem !important;
  }

  .u-mr-sm-4,
  .u-mx-sm-4 {
    margin-right: 2rem !important;
  }

  .u-mb-sm-4,
  .u-my-sm-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-sm-4,
  .u-mx-sm-4 {
    margin-left: 2rem !important;
  }

  .u-m-sm-5 {
    margin: 3rem !important;
  }

  .u-mt-sm-5,
  .u-my-sm-5 {
    margin-top: 3rem !important;
  }

  .u-mr-sm-5,
  .u-mx-sm-5 {
    margin-right: 3rem !important;
  }

  .u-mb-sm-5,
  .u-my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .u-ml-sm-5,
  .u-mx-sm-5 {
    margin-left: 3rem !important;
  }

  .u-p-sm-0 {
    padding: 0 !important;
  }

  .u-pt-sm-0,
  .u-py-sm-0 {
    padding-top: 0 !important;
  }

  .u-pr-sm-0,
  .u-px-sm-0 {
    padding-right: 0 !important;
  }

  .u-pb-sm-0,
  .u-py-sm-0 {
    padding-bottom: 0 !important;
  }

  .u-pl-sm-0,
  .u-px-sm-0 {
    padding-left: 0 !important;
  }

  .u-p-sm-1 {
    padding: 0.5rem !important;
  }

  .u-pt-sm-1,
  .u-py-sm-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-sm-1,
  .u-px-sm-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-sm-1,
  .u-py-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-sm-1,
  .u-px-sm-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-sm-2 {
    padding: 1rem !important;
  }

  .u-pt-sm-2,
  .u-py-sm-2 {
    padding-top: 1rem !important;
  }

  .u-pr-sm-2,
  .u-px-sm-2 {
    padding-right: 1rem !important;
  }

  .u-pb-sm-2,
  .u-py-sm-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-sm-2,
  .u-px-sm-2 {
    padding-left: 1rem !important;
  }

  .u-p-sm-3 {
    padding: 1.5rem !important;
  }

  .u-pt-sm-3,
  .u-py-sm-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-sm-3,
  .u-px-sm-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-sm-3,
  .u-py-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-sm-3,
  .u-px-sm-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-sm-4 {
    padding: 2rem !important;
  }

  .u-pt-sm-4,
  .u-py-sm-4 {
    padding-top: 2rem !important;
  }

  .u-pr-sm-4,
  .u-px-sm-4 {
    padding-right: 2rem !important;
  }

  .u-pb-sm-4,
  .u-py-sm-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-sm-4,
  .u-px-sm-4 {
    padding-left: 2rem !important;
  }

  .u-p-sm-5 {
    padding: 3rem !important;
  }

  .u-pt-sm-5,
  .u-py-sm-5 {
    padding-top: 3rem !important;
  }

  .u-pr-sm-5,
  .u-px-sm-5 {
    padding-right: 3rem !important;
  }

  .u-pb-sm-5,
  .u-py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .u-pl-sm-5,
  .u-px-sm-5 {
    padding-left: 3rem !important;
  }

  .u-m-sm-auto {
    margin: auto !important;
  }

  .u-mt-sm-auto,
  .u-my-sm-auto {
    margin-top: auto !important;
  }

  .u-mr-sm-auto,
  .u-mx-sm-auto {
    margin-right: auto !important;
  }

  .u-mb-sm-auto,
  .u-my-sm-auto {
    margin-bottom: auto !important;
  }

  .u-ml-sm-auto,
  .u-mx-sm-auto {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 812px) {
  .u-m-md-0 {
    margin: 0 !important;
  }

  .u-mt-md-0,
  .u-my-md-0 {
    margin-top: 0 !important;
  }

  .u-mr-md-0,
  .u-mx-md-0 {
    margin-right: 0 !important;
  }

  .u-mb-md-0,
  .u-my-md-0 {
    margin-bottom: 0 !important;
  }

  .u-ml-md-0,
  .u-mx-md-0 {
    margin-left: 0 !important;
  }

  .u-m-md-1 {
    margin: 0.5rem !important;
  }

  .u-mt-md-1,
  .u-my-md-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-md-1,
  .u-mx-md-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-md-1,
  .u-my-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-md-1,
  .u-mx-md-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-md-2 {
    margin: 1rem !important;
  }

  .u-mt-md-2,
  .u-my-md-2 {
    margin-top: 1rem !important;
  }

  .u-mr-md-2,
  .u-mx-md-2 {
    margin-right: 1rem !important;
  }

  .u-mb-md-2,
  .u-my-md-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-md-2,
  .u-mx-md-2 {
    margin-left: 1rem !important;
  }

  .u-m-md-3 {
    margin: 1.5rem !important;
  }

  .u-mt-md-3,
  .u-my-md-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-md-3,
  .u-mx-md-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-md-3,
  .u-my-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-md-3,
  .u-mx-md-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-md-4 {
    margin: 2rem !important;
  }

  .u-mt-md-4,
  .u-my-md-4 {
    margin-top: 2rem !important;
  }

  .u-mr-md-4,
  .u-mx-md-4 {
    margin-right: 2rem !important;
  }

  .u-mb-md-4,
  .u-my-md-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-md-4,
  .u-mx-md-4 {
    margin-left: 2rem !important;
  }

  .u-m-md-5 {
    margin: 3rem !important;
  }

  .u-mt-md-5,
  .u-my-md-5 {
    margin-top: 3rem !important;
  }

  .u-mr-md-5,
  .u-mx-md-5 {
    margin-right: 3rem !important;
  }

  .u-mb-md-5,
  .u-my-md-5 {
    margin-bottom: 3rem !important;
  }

  .u-ml-md-5,
  .u-mx-md-5 {
    margin-left: 3rem !important;
  }

  .u-p-md-0 {
    padding: 0 !important;
  }

  .u-pt-md-0,
  .u-py-md-0 {
    padding-top: 0 !important;
  }

  .u-pr-md-0,
  .u-px-md-0 {
    padding-right: 0 !important;
  }

  .u-pb-md-0,
  .u-py-md-0 {
    padding-bottom: 0 !important;
  }

  .u-pl-md-0,
  .u-px-md-0 {
    padding-left: 0 !important;
  }

  .u-p-md-1 {
    padding: 0.5rem !important;
  }

  .u-pt-md-1,
  .u-py-md-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-md-1,
  .u-px-md-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-md-1,
  .u-py-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-md-1,
  .u-px-md-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-md-2 {
    padding: 1rem !important;
  }

  .u-pt-md-2,
  .u-py-md-2 {
    padding-top: 1rem !important;
  }

  .u-pr-md-2,
  .u-px-md-2 {
    padding-right: 1rem !important;
  }

  .u-pb-md-2,
  .u-py-md-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-md-2,
  .u-px-md-2 {
    padding-left: 1rem !important;
  }

  .u-p-md-3 {
    padding: 1.5rem !important;
  }

  .u-pt-md-3,
  .u-py-md-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-md-3,
  .u-px-md-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-md-3,
  .u-py-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-md-3,
  .u-px-md-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-md-4 {
    padding: 2rem !important;
  }

  .u-pt-md-4,
  .u-py-md-4 {
    padding-top: 2rem !important;
  }

  .u-pr-md-4,
  .u-px-md-4 {
    padding-right: 2rem !important;
  }

  .u-pb-md-4,
  .u-py-md-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-md-4,
  .u-px-md-4 {
    padding-left: 2rem !important;
  }

  .u-p-md-5 {
    padding: 3rem !important;
  }

  .u-pt-md-5,
  .u-py-md-5 {
    padding-top: 3rem !important;
  }

  .u-pr-md-5,
  .u-px-md-5 {
    padding-right: 3rem !important;
  }

  .u-pb-md-5,
  .u-py-md-5 {
    padding-bottom: 3rem !important;
  }

  .u-pl-md-5,
  .u-px-md-5 {
    padding-left: 3rem !important;
  }

  .u-m-md-auto {
    margin: auto !important;
  }

  .u-mt-md-auto,
  .u-my-md-auto {
    margin-top: auto !important;
  }

  .u-mr-md-auto,
  .u-mx-md-auto {
    margin-right: auto !important;
  }

  .u-mb-md-auto,
  .u-my-md-auto {
    margin-bottom: auto !important;
  }

  .u-ml-md-auto,
  .u-mx-md-auto {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 1000px) {
  .u-m-lg-0 {
    margin: 0 !important;
  }

  .u-mt-lg-0,
  .u-my-lg-0 {
    margin-top: 0 !important;
  }

  .u-mr-lg-0,
  .u-mx-lg-0 {
    margin-right: 0 !important;
  }

  .u-mb-lg-0,
  .u-my-lg-0 {
    margin-bottom: 0 !important;
  }

  .u-ml-lg-0,
  .u-mx-lg-0 {
    margin-left: 0 !important;
  }

  .u-m-lg-1 {
    margin: 0.5rem !important;
  }

  .u-mt-lg-1,
  .u-my-lg-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-lg-1,
  .u-mx-lg-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-lg-1,
  .u-my-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-lg-1,
  .u-mx-lg-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-lg-2 {
    margin: 1rem !important;
  }

  .u-mt-lg-2,
  .u-my-lg-2 {
    margin-top: 1rem !important;
  }

  .u-mr-lg-2,
  .u-mx-lg-2 {
    margin-right: 1rem !important;
  }

  .u-mb-lg-2,
  .u-my-lg-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-lg-2,
  .u-mx-lg-2 {
    margin-left: 1rem !important;
  }

  .u-m-lg-3 {
    margin: 1.5rem !important;
  }

  .u-mt-lg-3,
  .u-my-lg-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-lg-3,
  .u-mx-lg-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-lg-3,
  .u-my-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-lg-3,
  .u-mx-lg-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-lg-4 {
    margin: 2rem !important;
  }

  .u-mt-lg-4,
  .u-my-lg-4 {
    margin-top: 2rem !important;
  }

  .u-mr-lg-4,
  .u-mx-lg-4 {
    margin-right: 2rem !important;
  }

  .u-mb-lg-4,
  .u-my-lg-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-lg-4,
  .u-mx-lg-4 {
    margin-left: 2rem !important;
  }

  .u-m-lg-5 {
    margin: 3rem !important;
  }

  .u-mt-lg-5,
  .u-my-lg-5 {
    margin-top: 3rem !important;
  }

  .u-mr-lg-5,
  .u-mx-lg-5 {
    margin-right: 3rem !important;
  }

  .u-mb-lg-5,
  .u-my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .u-ml-lg-5,
  .u-mx-lg-5 {
    margin-left: 3rem !important;
  }

  .u-p-lg-0 {
    padding: 0 !important;
  }

  .u-pt-lg-0,
  .u-py-lg-0 {
    padding-top: 0 !important;
  }

  .u-pr-lg-0,
  .u-px-lg-0 {
    padding-right: 0 !important;
  }

  .u-pb-lg-0,
  .u-py-lg-0 {
    padding-bottom: 0 !important;
  }

  .u-pl-lg-0,
  .u-px-lg-0 {
    padding-left: 0 !important;
  }

  .u-p-lg-1 {
    padding: 0.5rem !important;
  }

  .u-pt-lg-1,
  .u-py-lg-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-lg-1,
  .u-px-lg-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-lg-1,
  .u-py-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-lg-1,
  .u-px-lg-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-lg-2 {
    padding: 1rem !important;
  }

  .u-pt-lg-2,
  .u-py-lg-2 {
    padding-top: 1rem !important;
  }

  .u-pr-lg-2,
  .u-px-lg-2 {
    padding-right: 1rem !important;
  }

  .u-pb-lg-2,
  .u-py-lg-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-lg-2,
  .u-px-lg-2 {
    padding-left: 1rem !important;
  }

  .u-p-lg-3 {
    padding: 1.5rem !important;
  }

  .u-pt-lg-3,
  .u-py-lg-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-lg-3,
  .u-px-lg-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-lg-3,
  .u-py-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-lg-3,
  .u-px-lg-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-lg-4 {
    padding: 2rem !important;
  }

  .u-pt-lg-4,
  .u-py-lg-4 {
    padding-top: 2rem !important;
  }

  .u-pr-lg-4,
  .u-px-lg-4 {
    padding-right: 2rem !important;
  }

  .u-pb-lg-4,
  .u-py-lg-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-lg-4,
  .u-px-lg-4 {
    padding-left: 2rem !important;
  }

  .u-p-lg-5 {
    padding: 3rem !important;
  }

  .u-pt-lg-5,
  .u-py-lg-5 {
    padding-top: 3rem !important;
  }

  .u-pr-lg-5,
  .u-px-lg-5 {
    padding-right: 3rem !important;
  }

  .u-pb-lg-5,
  .u-py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .u-pl-lg-5,
  .u-px-lg-5 {
    padding-left: 3rem !important;
  }

  .u-m-lg-auto {
    margin: auto !important;
  }

  .u-mt-lg-auto,
  .u-my-lg-auto {
    margin-top: auto !important;
  }

  .u-mr-lg-auto,
  .u-mx-lg-auto {
    margin-right: auto !important;
  }

  .u-mb-lg-auto,
  .u-my-lg-auto {
    margin-bottom: auto !important;
  }

  .u-ml-lg-auto,
  .u-mx-lg-auto {
    margin-left: auto !important;
  }
}
@media screen and (min-width: 1400px) {
  .u-m-xl-0 {
    margin: 0 !important;
  }

  .u-mt-xl-0,
  .u-my-xl-0 {
    margin-top: 0 !important;
  }

  .u-mr-xl-0,
  .u-mx-xl-0 {
    margin-right: 0 !important;
  }

  .u-mb-xl-0,
  .u-my-xl-0 {
    margin-bottom: 0 !important;
  }

  .u-ml-xl-0,
  .u-mx-xl-0 {
    margin-left: 0 !important;
  }

  .u-m-xl-1 {
    margin: 0.5rem !important;
  }

  .u-mt-xl-1,
  .u-my-xl-1 {
    margin-top: 0.5rem !important;
  }

  .u-mr-xl-1,
  .u-mx-xl-1 {
    margin-right: 0.5rem !important;
  }

  .u-mb-xl-1,
  .u-my-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .u-ml-xl-1,
  .u-mx-xl-1 {
    margin-left: 0.5rem !important;
  }

  .u-m-xl-2 {
    margin: 1rem !important;
  }

  .u-mt-xl-2,
  .u-my-xl-2 {
    margin-top: 1rem !important;
  }

  .u-mr-xl-2,
  .u-mx-xl-2 {
    margin-right: 1rem !important;
  }

  .u-mb-xl-2,
  .u-my-xl-2 {
    margin-bottom: 1rem !important;
  }

  .u-ml-xl-2,
  .u-mx-xl-2 {
    margin-left: 1rem !important;
  }

  .u-m-xl-3 {
    margin: 1.5rem !important;
  }

  .u-mt-xl-3,
  .u-my-xl-3 {
    margin-top: 1.5rem !important;
  }

  .u-mr-xl-3,
  .u-mx-xl-3 {
    margin-right: 1.5rem !important;
  }

  .u-mb-xl-3,
  .u-my-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .u-ml-xl-3,
  .u-mx-xl-3 {
    margin-left: 1.5rem !important;
  }

  .u-m-xl-4 {
    margin: 2rem !important;
  }

  .u-mt-xl-4,
  .u-my-xl-4 {
    margin-top: 2rem !important;
  }

  .u-mr-xl-4,
  .u-mx-xl-4 {
    margin-right: 2rem !important;
  }

  .u-mb-xl-4,
  .u-my-xl-4 {
    margin-bottom: 2rem !important;
  }

  .u-ml-xl-4,
  .u-mx-xl-4 {
    margin-left: 2rem !important;
  }

  .u-m-xl-5 {
    margin: 3rem !important;
  }

  .u-mt-xl-5,
  .u-my-xl-5 {
    margin-top: 3rem !important;
  }

  .u-mr-xl-5,
  .u-mx-xl-5 {
    margin-right: 3rem !important;
  }

  .u-mb-xl-5,
  .u-my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .u-ml-xl-5,
  .u-mx-xl-5 {
    margin-left: 3rem !important;
  }

  .u-p-xl-0 {
    padding: 0 !important;
  }

  .u-pt-xl-0,
  .u-py-xl-0 {
    padding-top: 0 !important;
  }

  .u-pr-xl-0,
  .u-px-xl-0 {
    padding-right: 0 !important;
  }

  .u-pb-xl-0,
  .u-py-xl-0 {
    padding-bottom: 0 !important;
  }

  .u-pl-xl-0,
  .u-px-xl-0 {
    padding-left: 0 !important;
  }

  .u-p-xl-1 {
    padding: 0.5rem !important;
  }

  .u-pt-xl-1,
  .u-py-xl-1 {
    padding-top: 0.5rem !important;
  }

  .u-pr-xl-1,
  .u-px-xl-1 {
    padding-right: 0.5rem !important;
  }

  .u-pb-xl-1,
  .u-py-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .u-pl-xl-1,
  .u-px-xl-1 {
    padding-left: 0.5rem !important;
  }

  .u-p-xl-2 {
    padding: 1rem !important;
  }

  .u-pt-xl-2,
  .u-py-xl-2 {
    padding-top: 1rem !important;
  }

  .u-pr-xl-2,
  .u-px-xl-2 {
    padding-right: 1rem !important;
  }

  .u-pb-xl-2,
  .u-py-xl-2 {
    padding-bottom: 1rem !important;
  }

  .u-pl-xl-2,
  .u-px-xl-2 {
    padding-left: 1rem !important;
  }

  .u-p-xl-3 {
    padding: 1.5rem !important;
  }

  .u-pt-xl-3,
  .u-py-xl-3 {
    padding-top: 1.5rem !important;
  }

  .u-pr-xl-3,
  .u-px-xl-3 {
    padding-right: 1.5rem !important;
  }

  .u-pb-xl-3,
  .u-py-xl-3 {
    padding-bottom: 1.5rem !important;
  }

  .u-pl-xl-3,
  .u-px-xl-3 {
    padding-left: 1.5rem !important;
  }

  .u-p-xl-4 {
    padding: 2rem !important;
  }

  .u-pt-xl-4,
  .u-py-xl-4 {
    padding-top: 2rem !important;
  }

  .u-pr-xl-4,
  .u-px-xl-4 {
    padding-right: 2rem !important;
  }

  .u-pb-xl-4,
  .u-py-xl-4 {
    padding-bottom: 2rem !important;
  }

  .u-pl-xl-4,
  .u-px-xl-4 {
    padding-left: 2rem !important;
  }

  .u-p-xl-5 {
    padding: 3rem !important;
  }

  .u-pt-xl-5,
  .u-py-xl-5 {
    padding-top: 3rem !important;
  }

  .u-pr-xl-5,
  .u-px-xl-5 {
    padding-right: 3rem !important;
  }

  .u-pb-xl-5,
  .u-py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .u-pl-xl-5,
  .u-px-xl-5 {
    padding-left: 3rem !important;
  }

  .u-m-xl-auto {
    margin: auto !important;
  }

  .u-mt-xl-auto,
  .u-my-xl-auto {
    margin-top: auto !important;
  }

  .u-mr-xl-auto,
  .u-mx-xl-auto {
    margin-right: auto !important;
  }

  .u-mb-xl-auto,
  .u-my-xl-auto {
    margin-bottom: auto !important;
  }

  .u-ml-xl-auto,
  .u-mx-xl-auto {
    margin-left: auto !important;
  }
}
/* =========================================================
display - ブレイクポイントごとに表示切替
========================================================= */
.u-none {
  display: none !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-table {
  display: table !important;
}

.u-table-row {
  display: table-row !important;
}

.u-table-cell {
  display: table-cell !important;
}

.u-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media screen and (min-width: 576px) {
  .u-sm-none {
    display: none !important;
  }

  .u-sm-inline {
    display: inline !important;
  }

  .u-sm-inline-block {
    display: inline-block !important;
  }

  .u-sm-block {
    display: block !important;
  }

  .u-sm-table {
    display: table !important;
  }

  .u-sm-table-row {
    display: table-row !important;
  }

  .u-sm-table-cell {
    display: table-cell !important;
  }

  .u-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media screen and (min-width: 812px) {
  .u-mu-none {
    display: none !important;
  }

  .u-mu-inline {
    display: inline !important;
  }

  .u-mu-inline-block {
    display: inline-block !important;
  }

  .u-mu-block {
    display: block !important;
  }

  .u-mu-table {
    display: table !important;
  }

  .u-mu-table-row {
    display: table-row !important;
  }

  .u-mu-table-cell {
    display: table-cell !important;
  }

  .u-mu-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-mu-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1000px) {
  .u-lg-none {
    display: none !important;
  }

  .u-lg-inline {
    display: inline !important;
  }

  .u-lg-inline-block {
    display: inline-block !important;
  }

  .u-lg-block {
    display: block !important;
  }

  .u-lg-table {
    display: table !important;
  }

  .u-lg-table-row {
    display: table-row !important;
  }

  .u-lg-table-cell {
    display: table-cell !important;
  }

  .u-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1400px) {
  .u-xl-none {
    display: none !important;
  }

  .u-xl-inline {
    display: inline !important;
  }

  .u-xl-inline-block {
    display: inline-block !important;
  }

  .u-xl-block {
    display: block !important;
  }

  .u-xl-table {
    display: table !important;
  }

  .u-xl-table-row {
    display: table-row !important;
  }

  .u-xl-table-cell {
    display: table-cell !important;
  }

  .u-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .u-print-none {
    display: none !important;
  }

  .u-print-inline {
    display: inline !important;
  }

  .u-print-inline-block {
    display: inline-block !important;
  }

  .u-print-block {
    display: block !important;
  }

  .u-print-table {
    display: table !important;
  }

  .u-print-table-row {
    display: table-row !important;
  }

  .u-print-table-cell {
    display: table-cell !important;
  }

  .u-print-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .u-print-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
/* =========================================================
flex - flexを使った位置調整など
========================================================= */
.u-flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.u-flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.u-flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.u-flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.u-flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.u-flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.u-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.u-flex-fill {
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.u-flex-grow-0 {
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.u-flex-grow-1 {
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.u-flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.u-justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.u-justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.u-justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.u-justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.u-justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.u-align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.u-align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.u-align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.u-align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.u-align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.u-align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.u-align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.u-align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.u-align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.u-align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.u-align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.u-align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.u-align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.u-align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media screen and (min-width: 576px) {
  .u-flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .u-flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .u-flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .u-flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .u-align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .u-flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .u-flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .u-flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-md-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .u-flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .u-align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media screen and (min-width: 1000px) {
  .u-flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .u-flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .u-flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-lg-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .u-flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .u-align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media screen and (min-width: 1400px) {
  .u-flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .u-flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .u-flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .u-flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .u-flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .u-flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .u-flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .u-flex-xl-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .u-flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .u-flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .u-flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .u-flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .u-justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .u-justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .u-justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .u-justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .u-justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .u-align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .u-align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .u-align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .u-align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .u-align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .u-align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .u-align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .u-align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .u-align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .u-align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .u-align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .u-align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .u-align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .u-align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .u-align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .u-align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .u-align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

/***スピード査定**/
.speedsatei{
margin: 0 auto;
text-align: center;
}
.assessment-mail .speedsatei{
margin: 60px auto -60px
}
