@charset "UTF-8";
/*!
【記述ルール】
p-header-****_****--****
 -****  セクション・最大他飲位の要素名称（sectionなどの最大枠となるクラス名称）
 _**** 各ブロック要素の名称（最大枠の中で、さらにコンテンツ毎に仕訳けられる要素名称）
 --**** 最小単位の要素名称（タイトルやテキスト、画像などといった最小要素名称）

 注意：クラス名が長くなり過ぎないような名称設定にする
*/
/* =========================================================
flex - flex関連の指定
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
/* =========================================================
color - 色の設定
========================================================= */
/* =========================================================
font - font-familyの設定など
========================================================= */
@font-face {
  font-family: YuGothicM;
  src: local("Yu Gothic Medium");
}
/* =========================================================
typography - テキスト関連の設定
========================================================= */
html {
  font-size: 100%;
  line-height: 1.5em;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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 - 基本設定
========================================================= */
body {
  background-color: #f7f7f7;
  overflow-x: hidden;
  font-size: calc(16 * (100vw / 520));
  line-height: 1.4;
  color: #394656;
  width: 100vw;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-font-feature-settings: "pkna";
  font-feature-settings: "pkna";
}
@media screen and (min-width: 520px) {
  body {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  body {
    overflow-x: hidden !important;
    font-size: 16px;
    font-size: 1rem;
  }
}

a {
  cursor: pointer;
  text-decoration: none;
  transition: .4s;
  line-height: 1;
}
a:hover {
  color: inherit;
}

p {
  color: #555555;
}



img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
}

.pc-show {
  display: none;
}
@media screen and (min-width: 980px) {
  .pc-show {
    display: block;
  }
}

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

.pc-show-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-show-md {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp-show-md {
    display: none;
  }
}

.pc-show-inline {
  display: none;
}
@media screen and (min-width: 980px) {
  .pc-show-inline {
    display: inline-block;
  }
}

.bg-lazy {
  background-image: none !important;
}

/* =========================================================
section - コンテンツの大枠
========================================================= */
.l-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .l-container {
    max-width: 1230px;
  }
}

/* =========================================================
body - bodyの大枠
========================================================= */
.l-body--wrap {
  padding: 60px 0 120px;
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 768px) {
  .l-body--wrap {
    padding: 60px 0 0;
  }
}
@media screen and (min-width: 980px) {
  .l-body--wrap {
    padding: 0;
  }
}

/* =========================================================
header - ヘッダー
========================================================= */
/* =========================================================
main - メイン
========================================================= */
.l-main {
  position: relative;
}
.l-main > .l-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 55px;
  padding-bottom: 55px;
}
.l-main > .l-container section:last-of-type {
  margin-bottom: 0;
}
.l-main > .l-container.fullwidth {
  -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-main-container {
  width: 100%;
}
@media screen and (min-width: 980px) {
  .l-main-container {
    margin-right: 3%;
    margin-right: -webkit-calc(((100 / 30) * 1) / 100 *1200);
    margin-right: calc(((100 / 30) * 1) / 100 *1200);
    max-width: 880px;
    width: 74%;
    width: -webkit-calc(((100 / 30) * 22) / 100 *1200);
    width: calc(((100 / 30) * 22) / 100 *1200);
  }
}

/* =========================================================
footer - フッターのレイアウト
========================================================= */
/* =========================================================
title - 共通のタイトルやテキストなど
========================================================= */
.c-basic-h2-style01 {
  border-bottom: 1px solid #dcdcdc;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.2;
  padding: 20px 25px;
  position: relative;
}
@media screen and (min-width: 980px) {
  .c-basic-h2-style01 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.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;
}

/* =========================================================
button - ボタン関係のコンポーネント
========================================================= */
.c-button-style01 {
  max-width: 240px;
}
.c-button-style01 button {
  border: none;
  margin: auto;
  width: 100%;
}
.c-button-style01 a,
.c-button-style01 button {
  background-color: #ccc;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1rem;
  overflow: hidden;
  padding: 17px 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .c-button-style01 a,
  .c-button-style01 button {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-button-style01 a:before,
.c-button-style01 button: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,
.c-button-style01 button: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,
.c-button-style01 button:hover {
  opacity: .7;
}
.c-button-style01 a:hover:after,
.c-button-style01 button:hover:after {
  right: 15px;
}
.c-button-style02 {
  max-width: 440px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .c-button-style02 {
    width: auto;
  }
}
.c-button-style02 button {
  border: none;
  margin: auto;
  width: 100%;
}
.c-button-style02 a,
.c-button-style02 button {
  background-color: #00b900;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: .1rem;
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .c-button-style02 a,
  .c-button-style02 button {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.c-button-style02 a:before,
.c-button-style02 button: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-style02 a:after,
.c-button-style02 button: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-style02 a:hover,
.c-button-style02 button:hover {
  opacity: .7;
}
.c-button-style02 a:hover:after,
.c-button-style02 button:hover:after {
  right: 15px;
}

/* =========================================================
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: 980px) {
  .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;
  position: absolute;
  bottom: -30px;
  left: -5px;
  margin: auto;
  font-family: "EB Garamond", serif;
}
.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: 980px) {
  .c-drawer_close {
    display: none;
  }
}
.c-drawer_menu {
  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: 980px) {
  .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: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", 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_search {
  position: relative;
}
.c-drawer_menu .c-nav-sidenav_search .c-nav-search--btn {
  background-color: #003558;
  display: block;
  content: '';
  height: 46px;
  width: 46px;
  padding: 12px;
  position: absolute;
  right: 0;
  top: 0;
}
.c-drawer_menu .c-nav-sidenav_search input.c-nav-search--input {
  border: none;
  padding: 15px 50px 15px 15px;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
}
.c-drawer_menu .c-nav-sidenav_search input.c-nav-search--input:focus {
  outline: none;
}
.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.beginners:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/img_about_marukaquality.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.merit:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/img_about_merit.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.voice:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/img_about_voice.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.qa:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/img_about_qa.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.customer-center:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/img_about_customer-center.png);
}
.c-drawer_menu .c-nav-sidenav_about_linklist li.magazine:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/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;
}

/* =========================================================
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;
  padding: 13px;
}
.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.search {
  min-width: 300px;
  right: 0;
  left: inherit;
}
.c-nav-menulist--wrap.search:before, .c-nav-menulist--wrap.search:after {
  right: 10px;
  left: inherit;
}
.c-nav-menulist--wrap.search .c-nav-menulist--child {
  padding: 7px 5px;
}
.c-nav-menulist--wrap.search input.c-nav-search--input {
  border: none;
  border-radius: 10px;
  padding: 8px 5px;
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
}
.c-nav-menulist--wrap.search input.c-nav-search--input:focus {
  outline: none;
}
.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--search {
  background-color: #003558;
  width: 40px;
}
.c-nav-menulist .c-nav-menulist--search:hover {
  background-color: #003558;
}
.c-nav-menulist .c-nav-menulist--search > a {
  padding: 12px;
}
.c-nav-menulist .c-nav-menulist--search > a:after {
  background-color: #082b43;
  height: 2px;
  min-width: 40px;
}
.c-nav-menulist .c-nav-menulist--search > a img {
  width: 17px;
}
.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 {
  padding: 12px;
}
.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: 980px) {
  .c-nav-sidenav {
    display: block;
  }
}
.c-nav-sidenav_h3 {
  color: #9d8256;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, 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: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", 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: #00b900;
  /*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(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/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(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/sidenavi/bg_sidenav_gold.jpg);
  border: 5px solid #f2ece3;
  margin: 5px auto 0;
  max-width: 270px;
}
.c-nav-sidenav_metalsrate_goldrate:hover {
  opacity: .7;
}
.c-nav-sidenav_metalsrate_goldrate:hover .c-nav-sidenav_metalsrate--btn:after {
  right: 15px;
}
.c-nav-sidenav_metalsrate_goldrate .c-nav-sidenav_metalsrate--btn {
  background-color: #9d8256;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1rem;
  overflow: hidden;
  padding: 17px 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .c-nav-sidenav_metalsrate_goldrate .c-nav-sidenav_metalsrate--btn {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-nav-sidenav_metalsrate_goldrate .c-nav-sidenav_metalsrate--btn: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-nav-sidenav_metalsrate_goldrate .c-nav-sidenav_metalsrate--btn: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-nav-sidenav_metalsrate_platinumrate {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/sidenavi/bg_sidenav_platinum.jpg);
  border: 5px solid #e5e5e5;
  margin: 10px auto 0;
  max-width: 270px;
}
.c-nav-sidenav_metalsrate_platinumrate:hover {
  opacity: .7;
}
.c-nav-sidenav_metalsrate_platinumrate:hover .c-nav-sidenav_metalsrate--btn:after {
  right: 15px;
}
.c-nav-sidenav_metalsrate_platinumrate .c-nav-sidenav_metalsrate--btn {
  background-color: #818181;
  border-radius: 8px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: .1rem;
  overflow: hidden;
  padding: 17px 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .c-nav-sidenav_metalsrate_platinumrate .c-nav-sidenav_metalsrate--btn {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-nav-sidenav_metalsrate_platinumrate .c-nav-sidenav_metalsrate--btn: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-nav-sidenav_metalsrate_platinumrate .c-nav-sidenav_metalsrate--btn: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-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, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, 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.beginners 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;
  z-index: 0;
}
.c-nav-sidenav_bnrarea ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 980px) {
  .c-nav-sidenav_bnrarea ul {
    display: block;
  }
}
.c-nav-sidenav_bnrarea ul li {
  margin: 0 2% 20px;
  width: 46%;
}
@media screen and (min-width: 980px) {
  .c-nav-sidenav_bnrarea ul li {
    border-bottom: 1px dotted #cdcdcd;
    margin: 0 0 10px;
    padding: 0 0 10px;
    width: auto;
  }
}
.c-nav-sidenav_bnrarea ul li:last-of-type {
  margin: 0;
}
.c-nav-ui {
  background-color: #005169;
  position: fixed;
  z-index: 11;
  width: 100%;
  top: 0;
}
.c-nav-ui--list {
  background-color: #005169;
  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;
  height: 60px;
  padding: 0 60px 0 0;
}
.c-nav-ui--list > li {
  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: 0 1%;
  max-width: 250px;
  position: relative;
  width: 48%;
  text-align: center;
}
.c-nav-ui--list > li::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: block;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
  z-index: 10;
}
.c-nav-ui--list > li.accordion::after {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-nav-ui--toggle {
  display: none;
}
.c-nav-ui--label {
  background-repeat: repeat-x;
  background-size: auto 100%;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  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-size: 14px;
  font-size: 0.875rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  height: 51px;
  line-height: 1.1;
  padding: 3px 0 0;
  position: relative;
  text-align: center;
  transition: .4s;
  width: 100%;
}
.c-nav-ui--label.campaign, .c-nav-ui--label.shoplist {
  position: relative;
}
@media screen and (min-width: 980px) {
  .c-nav-ui--label.campaign, .c-nav-ui--label.shoplist {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-nav-ui--label.campaign::before, .c-nav-ui--label.campaign::after, .c-nav-ui--label.shoplist::before, .c-nav-ui--label.shoplist::after {
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  content: '';
  height: 35px;
  width: 23px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
.c-nav-ui--label.campaign::before, .c-nav-ui--label.shoplist::before {
  left: 10px;
}
.c-nav-ui--label.campaign::after, .c-nav-ui--label.shoplist::after {
  right: 10px;
  transform: scale(-1, 1);
}
.c-nav-ui--label.campaign:hover, .c-nav-ui--label.shoplist:hover {
  cursor: pointer;
  color: #fff;
}
.c-nav-ui--label.shoplist {
  border: 2px solid #9b4814;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/top/bg_index_btn01.jpg);
}
.c-nav-ui--label.shoplist::before, .c-nav-ui--label.shoplist::after {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/top/bg_index01.png);
}
.c-nav-ui--label.campaign {
  border: 2px solid #004c01;
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/top/bg_index_btn02.jpg);
}
.c-nav-ui--label.campaign::before, .c-nav-ui--label.campaign::after {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/top/bg_index02.png);
}
.c-nav-ui--label, .c-nav-ui--content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.c-nav-ui--content {
  background-color: #005169;
  overflow: hidden;
  position: absolute;
  top: 60px;
  left: 0;
  height: 0;
  width: 100vw;
}
.c-nav-ui--toggle:checked + .c-nav-ui--label + .c-nav-ui--content {
  height: 75vh;
  padding: 20px;
  transition: all .4s;
}
.c-nav-ui--banner {
  display: flex;
  flex-wrap: wrap;
}
.c-nav-ui--banner > li {
  margin: 5px 1%;
  width: 48%;
  display: flex;
}

/* =========================================================
comparts - 共通パーツ
========================================================= */
.c-comparts-logo img {
  max-width: 165px;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .c-comparts-logo img {
    max-width: 250px;
  }
}
.c-comparts-pankuzu--wrap {
  overflow-x: scroll;
}
@media screen and (min-width: 768px) {
  .c-comparts-pankuzu--wrap {
    overflow-x: inherit;
  }
}
.c-comparts-cs {
  display: none;
}
@media screen and (min-width: 980px) {
  .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: "EB Garamond", 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;
}
.c-comparts-cs_tel--number a:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/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 16px;
}
.c-comparts-cs_reception--open {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "EB Garamond", serif;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .c-comparts-cs_reception--open {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.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;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
  padding: 20px 4vw;
}
@media screen and (min-width: 980px) {
  .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: 768px) {
  .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-family: "EB Garamond", serif;
  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: 768px) {
  .c-comparts-cs_cont--number a {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
@media screen and (min-width: 980px) {
  .c-comparts-cs_cont--number a {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}
@media screen and (min-width: 1200px) {
  .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: 768px) {
  .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: 768px) {
  .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-family: "EB Garamond", serif;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .c-comparts-cs_cont--open {
    font-size: 27px;
    font-size: 1.6875rem;
  }
}
.c-comparts-cs_cont--img {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-comparts-cs_cont--img {
    display: block;
  }
}
.c-comparts-cs_cont--subtitle {
  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: 19px;
  font-size: 1.1875rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  margin: 30px 0 0;
}
@media screen and (min-width: 768px) {
  .c-comparts-cs_cont--subtitle {
    font-size: 25px;
    font-size: 1.5625rem;
    margin: 20px 0 0;
  }
}
.c-comparts-cs_cont--subtitle::before, .c-comparts-cs_cont--subtitle::after {
  background-color: #333;
  content: '';
  display: block;
  height: 2px;
  width: 20px;
}
@media screen and (min-width: 768px) {
  .c-comparts-cs_cont--subtitle::before, .c-comparts-cs_cont--subtitle::after {
    width: 43px;
  }
}
.c-comparts-cs_cont--subtitle::before {
  transform: rotate(45deg);
}
.c-comparts-cs_cont--subtitle::after {
  transform: rotate(-45deg);
}
.c-comparts-cs_cont--sns {
  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;
  padding: 10px 0;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .c-comparts-cs_cont--sns {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    padding: 20px 0 30px;
  }
}
.c-comparts-cs_cont--snsicon {
  border-radius: 8px;
  margin: 0 auto 10px;
  max-width: 250px;
  overflow: hidden;
  width: 80%;
}
@media screen and (min-width: 576px) {
  .c-comparts-cs_cont--snsicon {
    margin: 0 10px;
    width: 33%;
    width: -webkit-calc(100% / 3);
    width: calc(100% / 3);
  }
}
.c-comparts-cs_cont--snsicon a {
  border: 5px solid #ccc;
  border-radius: 8px;
  color: #333;
  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: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 5px 15px;
  transition: .4s;
}
@media screen and (min-width: 768px) {
  .c-comparts-cs_cont--snsicon a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-comparts-cs_cont--snsicon a:hover {
  background-color: #eee;
}
.c-comparts-cs_cont--snsicon a.line {
  border-color: #3fd13a;
}
.c-comparts-cs_cont--snsicon a.instagram {
  -webkit-border-image: -webkit-linear-gradient(left, #ffd721 0%, #ba00b1 100%);
  -o-border-image: -o-linear-gradient(left, #ffd721 0%, #ba00b1 100%);
  border-image: linear-gradient(to right, #ffd721 0%, #ba00b1 100%);
  border-image-slice: 1;
}
.c-comparts-cs_cont--snsicon a.twitter {
  border-color: #1da1f2;
}
.c-comparts-cs_cont--snsicon a span {
  flex-grow: 1;
  text-align: center;
}
.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-pagetop_float {
  display: none;
  position: fixed;
  bottom: 125px;
  right: 5px;
  z-index: 10;
}
.c-comparts-pagetop_float a {
  background: #508294;
  background: linear-gradient(0deg, #508294 0%, #629fb5 36%, #629fb5 100%);
  border-radius: 50%;
  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;
  height: 50px;
  width: 50px;
}
.c-comparts-pagetop_float a img {
  width: 30px;
}
.c-comparts-floatmenu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 98;
  padding: 0 8px 8px;
}
.c-comparts-floatmenu::after {
  background-color: rgba(41, 45, 56, 0.85);
  content: '';
  display: block;
  height: 79px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.c-comparts-floatmenu_list {
  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: none;
  padding-right: 117px;
}
.c-comparts-floatmenu_list li {
  width: 120px;
}
.c-comparts-floatmenu_list li a {
  display: block;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 2px;
}
.c-comparts-floatmenu_list li a:after {
  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;
  }
}

/* =========================================================
pankuzu - パンクズのスタイル
========================================================= */
.c-pankuzu {
  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: 10px;
  font-size: 0.625rem;
  width: 200%;
}
.c-pankuzu__item {
  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;
  padding: 0 0 0 5px;
}
.c-pankuzu__item:not(:first-of-type)::before {
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-pankuzu__link {
  color: #4BA0B8;
  display: block;
  text-decoration: underline;
}
.c-pankuzu__name {
  margin: 0 0 0 5px;
}

/* =========================================================
assessment - あなたにピッタリの査定・買取方法
========================================================= */
.c-assessment {
  margin: 0 auto 50px;
}
.c-assessment_h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-assessment_h2 {
    line-height: 1.7;
  }
}
.c-assessment_h2--beige {
  color: #9d8256;
  display: block;
  font-size: 28px;
  font-size: 1.75rem;
  margin: 5px 0 0;
}
@media screen and (min-width: 768px) {
  .c-assessment_h2--beige {
    display: inline;
    margin: 0;
  }
}
.c-assessment_h2--decoration {
  display: inline-block;
  padding: 10px 60px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-assessment_h2--decoration {
    border-bottom: 1px solid #333;
    display: inline;
    padding: 10px 84px;
  }
}
.c-assessment_h2--decoration:before, .c-assessment_h2--decoration:after {
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 49px;
  width: 58px;
  position: absolute;
  top: -8px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-assessment_h2--decoration:before, .c-assessment_h2--decoration:after {
    height: 62px;
    width: 74px;
    top: -13px;
  }
}
.c-assessment_h2--decoration:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-assessment/h2l.png);
  left: 0;
}
.c-assessment_h2--decoration:after {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-assessment/h2r.png);
  right: 0;
}
.c-assessment_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;
  flex-wrap: wrap;
  margin: 2px auto 0;
}
@media screen and (min-width: 768px) {
  .c-assessment_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin: 40px auto 0;
  }
}
.c-assessment_list li {
  margin: 10px 15px 10px 0;
  max-width: 230px;
  width: 48%;
  width: -webkit-calc((100% - 15px) / 2);
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 576px) {
  .c-assessment_list li {
    max-width: 225px;
    width: 33%;
    width: -webkit-calc((100% - 30px) / 3);
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (min-width: 768px) {
  .c-assessment_list li {
    max-width: 283px;
  }
}
.c-assessment_list li:nth-of-type(2n) {
  margin: 10px 0;
}
@media screen and (min-width: 576px) {
  .c-assessment_list li:nth-of-type(2n) {
    margin: 10px 15px 10px 0;
  }
}
@media screen and (min-width: 576px) {
  .c-assessment_list li:nth-of-type(3n) {
    margin: 10px 0;
  }
}
.c-assessment_list li a {
  background: #dddddd;
  background: -webkit-linear-gradient(bottom, #dddddd 0%, #efefef 25%, #e3e2e2 50%, #eaeaea 100%);
  background: -o-linear-gradient(bottom, #dddddd 0%, #efefef 25%, #e3e2e2 50%, #eaeaea 100%);
  background: linear-gradient(to top, #dddddd 0%, #efefef 25%, #e3e2e2 50%, #eaeaea 100%);
  border-bottom: 2px solid #c7c6c6;
  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-direction: column-reverse;
  color: #333;
  opacity: 1;
  padding: 12px 17px;
  transition: .4s;
}
@media screen and (min-width: 768px) {
  .c-assessment_list li a {
    flex-direction: row;
    padding: 25px 17px 17px;
  }
}
.c-assessment_list li a:hover {
  background: #e0e0e0;
  background: -webkit-linear-gradient(bottom, #e0e0e0 0%, #f1f1f1 25%, #eeeeee 50%, #fffbfb 100%);
  background: -o-linear-gradient(bottom, #e0e0e0 0%, #f1f1f1 25%, #eeeeee 50%, #fffbfb 100%);
  background: linear-gradient(to top, #e0e0e0 0%, #f1f1f1 25%, #eeeeee 50%, #fffbfb 100%);
  opacity: .9;
}
.c-assessment_list li a:hover .c-assessment_list--title:after {
  right: -2px;
}
.c-assessment_list li.line a:hover {
  border-color: #12db11;
}
.c-assessment_list li.line .p-top-assessment_list--title:after {
  border-color: #12db11;
}
.c-assessment_list li.tel a:hover {
  border-color: #f39800;
}
.c-assessment_list li.tel .p-top-assessment_list--title:after {
  border-color: #f39800;
}
.c-assessment_list li.mail a:hover {
  border-color: #00599a;
}
.c-assessment_list li.mail .p-top-assessment_list--title:after {
  border-color: #00599a;
}
.c-assessment_list li.delivery a:hover {
  border-color: #fe5dad;
}
.c-assessment_list li.delivery .p-top-assessment_list--title:after {
  border-color: #fe5dad;
}
.c-assessment_list li.counter a:hover {
  border-color: #4ab883;
}
.c-assessment_list li.counter .p-top-assessment_list--title:after {
  border-color: #4ab883;
}
.c-assessment_list li.bulgeout a:hover {
  border-color: #4aa0b8;
}
.c-assessment_list li.bulgeout .p-top-assessment_list--title:after {
  border-color: #4aa0b8;
}
.c-assessment_list--wrap {
  margin: 5px 0 0;
  max-width: 155px;
}
@media screen and (min-width: 768px) {
  .c-assessment_list--wrap {
    margin: 0 15px 0 0;
  }
}
.c-assessment_list--title {
  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: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  min-height: 38px;
  line-height: 1.3;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-assessment_list--title {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    font-size: 16px;
    font-size: 1rem;
    min-height: 48px;
    line-height: 1.5;
    text-align: left;
  }
}
.c-assessment_list--title:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
@media screen and (min-width: 1200px) {
  .c-assessment_list--title:after {
    right: 0;
  }
}
.c-assessment_list--text {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.4;
  margin: 2px 0 0;
}
@media screen and (min-width: 768px) {
  .c-assessment_list--text {
    line-height: 1.6;
    margin: 6px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-assessment_list--text {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-assessment_list--img {
  background-color: #fff;
  border-radius: 50px;
  min-width: inherit;
  overflow: hidden;
  padding: 12px;
}
@media screen and (min-width: 768px) {
  .c-assessment_list--img {
    min-width: 60px;
    padding: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .c-assessment_list--img {
    min-width: 79px;
    padding: 20px;
  }
}
.c-assessment_bnr {
  text-align: center;
}

/* =========================================================
deal - 買取ブランド・アイテム一覧
========================================================= */
.c-deal {
  margin: 0 auto 75px;
}
.c-deal_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;
  flex-wrap: wrap;
}
.c-deal_list li {
  margin: 5px 10px 5px 0;
  max-width: 250px;
  width: 48%;
  width: -webkit-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .c-deal_list li {
    margin: 10px 15px 10px 0;
    max-width: 283px;
    width: 33%;
    width: -webkit-calc((100% - 30px) / 3);
    width: calc((100% - 30px) / 3);
  }
}
.c-deal_list li:nth-of-type(2n) {
  margin: 5px 0;
}
@media screen and (min-width: 768px) {
  .c-deal_list li:nth-of-type(2n) {
    margin: 10px 15px 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .c-deal_list li:nth-of-type(3n) {
    margin: 10px 0;
  }
}
.c-deal_list li a {
  border: 1px solid #dcdcdc;
  background: #efefef;
  background: -webkit-linear-gradient(bottom, #efefef 0%, #f8f8f8 34%, white 100%);
  background: -o-linear-gradient(bottom, #efefef 0%, #f8f8f8 34%, white 100%);
  background: linear-gradient(to top, #efefef 0%, #f8f8f8 34%, #ffffff 100%);
  color: #333;
  display: block;
  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;
  flex-direction: column-reverse;
  opacity: 1;
  padding: 6px 10px;
  transition: .4s;
}
@media screen and (min-width: 768px) {
  .c-deal_list li a {
    flex-direction: row;
    padding: 15px 10px;
  }
}
@media screen and (min-width: 980px) {
  .c-deal_list li a {
    padding: 35px 10px 23px;
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_list li a {
    padding: 35px 17px 23px;
  }
}
.c-deal_list li a:hover {
  border: 1px solid #676767;
  opacity: .5;
}
.c-deal_list li a:hover .p-top-item_list--title:after {
  right: -5px;
}
.c-deal_list--wrap {
  max-width: 165px;
}
@media screen and (min-width: 980px) {
  .c-deal_list--wrap {
    margin: 0 6px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_list--wrap {
    margin: 0 10px 0 0;
  }
}
.c-deal_list--title {
  font-size: 16px;
  font-size: 1rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  margin: 8px 0 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-deal_list--title {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0;
    text-align: left;
  }
}
.c-deal_list--title:first-letter {
  color: #7a5f34;
}
@media screen and (min-width: 768px) {
  .c-deal_list--title:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: .4s;
  }
}
.c-deal_list--text {
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 1.6;
  margin: 5px auto 0;
}
@media screen and (min-width: 1200px) {
  .c-deal_list--text {
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 15px auto 0;
  }
}
.c-deal_list--img {
  max-width: 60px;
}
@media screen and (min-width: 980px) {
  .c-deal_list--img {
    min-width: 55px;
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_list--img {
    min-width: 70px;
  }
}
.c-deal_sublist {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.c-deal_sublist li {
  margin: 8px 14px 7px 0;
  width: 31%;
  width: -webkit-calc((100% - 28px) / 3);
  width: calc((100% - 28px) / 3);
}
@media screen and (min-width: 768px) {
  .c-deal_sublist li {
    width: 23%;
    width: -webkit-calc((100% - 42px) / 4);
    width: calc((100% - 42px) / 4);
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_sublist li {
    max-width: 135px;
    width: 16.7%;
    width: -webkit-calc((100% - 70px) / 6);
    width: calc((100% - 70px) / 6);
  }
}
.c-deal_sublist li:nth-of-type(3n) {
  margin: 8px 0 7px 0;
}
@media screen and (min-width: 768px) {
  .c-deal_sublist li:nth-of-type(3n) {
    margin: 8px 14px 7px 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_sublist li:nth-of-type(3n) {
    margin: 8px 14px 7px 0;
  }
}
@media screen and (min-width: 768px) {
  .c-deal_sublist li:nth-of-type(4n) {
    margin: 8px 0 7px 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_sublist li:nth-of-type(4n) {
    margin: 8px 14px 7px 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-deal_sublist li:nth-of-type(6n) {
    margin: 8px 0 7px 0;
  }
}
.c-deal_sublist li a {
  background: #cab696;
  background: -webkit-linear-gradient(bottom, #cab696 0%, #d0bea0 30%, #e3d7c3 100%);
  background: -o-linear-gradient(bottom, #cab696 0%, #d0bea0 30%, #e3d7c3 100%);
  background: linear-gradient(to top, #cab696 0%, #d0bea0 30%, #e3d7c3 100%);
  border-bottom: 2px solid #7a5f34;
  color: #333;
  font-weight: bold;
  display: block;
  opacity: 1;
  padding: 9px 18px;
  transition: .4s;
}
@media screen and (min-width: 576px) {
  .c-deal_sublist li a {
    padding: 12px 25px;
  }
}
.c-deal_sublist li a:hover {
  border-bottom: 2px solid #6f552c;
  opacity: .8;
}
.c-deal_sublist li a:hover figcaption:after {
  right: -20px;
}
.c-deal_sublist figure {
  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-direction: column;
}
.c-deal_sublist figcaption {
  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: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  min-height: 33px;
  margin: 6px auto 0;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .c-deal_sublist figcaption {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-deal_sublist figcaption:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-deal_sublist--img {
  background-color: #fff;
  border-radius: 50px;
  display: inline-block;
}
.c-deal_other {
  border: 2px solid #d1c0a5;
  margin: 25px auto 0;
  padding: 3px 0;
}
.c-deal_other--wrap {
  border-top: 1px solid #d1c0a5;
  border-bottom: 1px solid #d1c0a5;
  padding: 25px;
}
.c-deal_other--text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
  margin: 10px auto 0;
}
@media screen and (min-width: 576px) {
  .c-deal_other--text {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.5em;
  }
}
.c-deal_btn {
  margin: 20px auto 0;
  max-width: 80%;
}
@media screen and (min-width: 768px) {
  .c-deal_btn {
    max-width: 460px;
    width: 90%;
  }
}
.c-deal_btn a {
  background-color: #c03759;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .c-deal_btn a {
    padding: 22px 0;
  }
}
.c-deal_btn--wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .c-deal_btn--wrap {
    flex-direction: row;
    padding: 22px 0;
  }
}
.c-deal_btn--wrap .c-deal_btn {
  margin: 20px auto 0;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .c-deal_btn--wrap .c-deal_btn {
    margin: 20px 5% 0;
  }
}
.c-deal_btn.brand a {
  background-color: #4aa0b8;
}

/* =========================================================
faq - 高価買取 Q ＆ A
========================================================= */
.c-faq {
  margin: 0 auto 50px;
}
.c-faq--title {
  color: #9d8256;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .c-faq--title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-faq--titleline {
  color: #333;
}
@media screen and (min-width: 980px) {
  .c-faq--titleline {
    border-bottom: 1px solid #000;
    padding: 8px 0;
  }
}
.c-faq--titlebrand {
  margin: 0 8px 0 0;
}
.c-faq--list {
  margin: 35px auto 0;
}
.c-faq--item {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/brand/rolex/bg_ratelist.gif);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.c-faq--acdcheck {
  display: none;
}
.c-faq--acdlabel {
  background-color: #003359;
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  display: block;
  letter-spacing: .1rem;
  position: relative;
}
@media screen and (min-width: 980px) {
  .c-faq--acdlabel {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-faq--acdlabel::before {
  content: 'Q';
  height: 1.6rem;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-faq--acdlabel label {
  display: block;
  padding: 13px 60px 13px;
  width: 100%;
}
.c-faq--acdlabel label::before {
  background-color: #818181;
  border-radius: 50px;
  content: '';
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-faq--acdlabel label::after {
  content: '';
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 25px;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: .4s;
}
.c-faq--acdlabel label:hover {
  cursor: pointer;
}
.c-faq--acdcontent {
  background: #d4d4d4;
  background: -webkit-linear-gradient(bottom, rgba(212, 212, 212, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
  background: -o-linear-gradient(bottom, rgba(212, 212, 212, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
  background: linear-gradient(to top, rgba(212, 212, 212, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: .6s;
  visibility: hidden;
}
.c-faq--acdcheck:checked + .c-faq--acdlabel label::after {
  top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-faq--acdcheck:checked + .c-faq--acdlabel + .c-faq--acdcontent {
  height: auto;
  opacity: 1;
  padding: 20px;
  visibility: visible;
}
@media screen and (min-width: 576px) {
  .c-faq--acdcheck:checked + .c-faq--acdlabel + .c-faq--acdcontent {
    padding: 30px;
  }
}
.c-faq--text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 0 0 0 60px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .c-faq--text {
    font-size: 16px;
    font-size: 1rem;
    padding: 0 0 0 80px;
  }
}
.c-faq--text::before {
  border: 1px solid #9d8256;
  content: 'A';
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  padding: 12px 15px;
  position: absolute;
  left: 0;
}

/* =========================================================
important -買取ブランド強化商品
========================================================= */
.c-importance {
  margin: 0 auto 50px;
}
.c-importance_title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.c-importance_title--decoration {
  padding: 0 44px;
  position: relative;
}
.c-importance_title--decoration:before, .c-importance_title--decoration:after {
  background-repeat: no-repeat;
  background-size: auto;
  content: '';
  display: block;
  height: 55px;
  width: 34px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-importance_title--decoration:before {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/icon_ttl01.png);
  left: 0;
}
.c-importance_title--decoration:after {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/icon_ttl01.png);
  transform: scale(-1, 1);
  right: 0;
}
.c-importance_title--beige {
  color: #9d8256;
}
.c-importance_subtitle {
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  flex-direction: column;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  height: 60px;
  min-height: 3rem;
  letter-spacing: -.05rem;
  text-shadow: 1px 1px 0 #fff;
}
@media screen and (min-width: 576px) {
  .c-importance_subtitle {
    height: 72px;
  }
}
@media screen and (min-width: 768px) {
  .c-importance_subtitle {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    font-size: 13px;
    font-size: 0.8125rem;
    flex-direction: row;
    height: auto;
    letter-spacing: -.01rem;
  }
}
@media screen and (min-width: 980px) {
  .c-importance_subtitle {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    flex-direction: row;
    font-size: 12px;
    font-size: 0.75rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .c-importance_subtitle {
    font-size: 13px;
    font-size: 0.8125rem;
    height: auto;
  }
}
.c-importance_subtitle span {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: -.02rem;
  margin: 0 1rem 0 0;
  max-width: none;
}
@media screen and (min-width: 576px) {
  .c-importance_subtitle span {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0;
    max-width: 7rem;
  }
}
@media screen and (min-width: 768px) {
  .c-importance_subtitle span {
    font-size: 24px;
    font-size: 1.5rem;
    max-width: 8rem;
  }
}
@media screen and (min-width: 980px) {
  .c-importance_subtitle span {
    font-size: 21px;
    font-size: 1.3125rem;
    letter-spacing: -.02rem;
    max-width: 7rem;
    margin: 0 .3rem 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .c-importance_subtitle span {
    max-width: 8rem;
    margin: 0 1rem 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .c-importance_subtitle span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.c-importance_subtitle span:first-letter {
  color: #9f8254;
}
.c-importance_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;
  flex-wrap: wrap;
  margin: 30px auto 0;
}
@media screen and (min-width: 980px) {
  .c-importance_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
.c-importance_list--wrap {
  background-color: inherit;
  background-repeat: no-repeat;
  background-position: center left 19vw;
  background-size: 56%;
  border: 4px solid #fff;
  padding: 10px 5px;
}
@media screen and (min-width: 576px) {
  .c-importance_list--wrap {
    background-position: top right;
    background-size: contain;
    padding: 15px 20px;
  }
}
@media screen and (min-width: 768px) {
  .c-importance_list--wrap {
    background-position: bottom right;
    background-size: auto 130px;
    padding: 10px 5px;
  }
}
.rolex .c-importance_list--wrap {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_rolex-sp.png);
}
@media screen and (min-width: 768px) {
  .rolex .c-importance_list--wrap {
    background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_rolex.png);
  }
}
.louisvuitton .c-importance_list--wrap {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_louisvuitton-sp.png);
}
@media screen and (min-width: 768px) {
  .louisvuitton .c-importance_list--wrap {
    background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_louisvuitton.png);
  }
}
.hermes .c-importance_list--wrap {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_hermes-sp.png);
}
@media screen and (min-width: 768px) {
  .hermes .c-importance_list--wrap {
    background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_hermes.png);
  }
}
.chanel .c-importance_list--wrap {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_chanel-sp.png);
}
@media screen and (min-width: 768px) {
  .chanel .c-importance_list--wrap {
    background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_chanel.png);
  }
}
.cartier .c-importance_list--wrap {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_cartier-sp.png);
}
@media screen and (min-width: 768px) {
  .cartier .c-importance_list--wrap {
    background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_cartier.png);
  }
}
.omega .c-importance_list--wrap {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_omega-sp.png);
}
@media screen and (min-width: 768px) {
  .omega .c-importance_list--wrap {
    background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/common/c-importance/img_important_omega.png);
  }
}
.c-importance_list li {
  background: #efefef;
  background: -webkit-linear-gradient(bottom, #efefef 0%, #fcfcfc 34%, white 100%);
  background: -o-linear-gradient(bottom, #efefef 0%, #fcfcfc 34%, white 100%);
  background: linear-gradient(to top, #efefef 0%, #fcfcfc 34%, #ffffff 100%);
  border: 1px solid #dcdcdc;
  margin: 0 5px 5px;
  width: 49%;
  width: -webkit-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .c-importance_list li {
    margin: 0 10px 20px 0;
    width: 33.33%;
    width: -webkit-calc((100% - 20px) / 3);
    width: calc((100% - 20px) / 3);
  }
}
.c-importance_list li:nth-of-type(3n) {
  margin: 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .c-importance_list li:nth-of-type(3n) {
    margin: 0 0 20px;
  }
}
.c-importance_list li figure {
  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-importance_list li:hover {
  opacity: .7;
}
.c-importance_list li:hover .c-importance_btn:after {
  right: 15px;
}
.c-importance_explain {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .c-importance_explain {
    max-width: 175px;
    width: 60%;
  }
}
.c-importance_text {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-importance_text {
    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: 12px;
    font-size: 0.75rem;
    min-height: 5rem;
    line-height: 1.6;
    margin: 5px auto 0;
    min-height: 4.9rem;
    text-shadow: 1px 1px 2px #fff;
  }
}
@media screen and (min-width: 980px) {
  .c-importance_text {
    margin: auto;
  }
}
@media screen and (min-width: 1200px) {
  .c-importance_text {
    margin: 5px auto 0;
    min-height: 48px;
  }
}
.c-importance_btn {
  background-color: #c03759;
  border-radius: 3px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.24);
  color: #fff;
  display: block;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: .1rem;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 5px 0;
  max-width: 110px;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .c-importance_btn {
    border-radius: 8px;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 10px auto 0;
    max-width: 160px;
    padding: 8px 0;
  }
}
.c-importance_btn: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-importance_btn: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;
  right: 5px;
  width: 3px;
  height: 3px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media screen and (min-width: 1200px) {
  .c-importance_btn:after {
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

/* =========================================================
results -ブランドアイテム買取実績
========================================================= */
.c-results {
  margin: 0 auto 70px;
}
.c-results .c-basic-h2-style01 {
  padding: 20px 25px 20px 25px;
}
.c-results_slidarea {
  position: relative;
}
.c-results_slidarea .slide-arrow {
  background-color: #818181;
  border-radius: 50px;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 0;
  top: 12px;
  opacity: 1;
  transition: .4s;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-results_slidarea .slide-arrow {
    top: -50px;
  }
}
.c-results_slidarea .slide-arrow:hover {
  cursor: pointer;
  opacity: .7;
}
.c-results_slidarea .slide-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 13px;
  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-results_slidarea .prev-arrow {
  right: 100px;
}
.c-results_slidarea .prev-arrow:before {
  right: 9px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.c-results_slidarea .slick-counter {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-weight: bold;
  position: absolute;
  right: 39px;
  top: 20px;
  width: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-results_slidarea .slick-counter {
    top: -42px;
  }
}
.c-results_slidarea .count-current {
  color: #9d8256;
  font-size: 24px;
  font-size: 1.5rem;
}
.c-results_slidarea .count-total {
  font-size: 15px;
  font-size: 0.9375rem;
}
.c-results_slidlist {
  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;
  flex-wrap: wrap;
  margin: 50px auto 0;
  max-width: 880px;
}
@media screen and (min-width: 768px) {
  .c-results_slidlist {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin: auto;
  }
}
.c-results_slidlist li {
  background-color: #f9f9f9;
  max-width: 205px;
  margin: 10px 6px;
  width: 48%;
  width: -webkit-calc((100% - 24px) / 2);
  width: calc((100% - 24px) / 2);
}
@media screen and (min-width: 576px) {
  .c-results_slidlist li {
    margin: 10px 6px 10px 0;
    width: 31%;
    width: -webkit-calc((100% - 12px) / 3);
    width: calc((100% - 12px) / 3);
  }
}
@media screen and (min-width: 768px) {
  .c-results_slidlist li {
    margin: 20px 20px 20px 0;
    width: 23%;
    width: -webkit-calc((100% - 60px) / 4);
    width: calc((100% - 60px) / 4);
  }
}
.c-results_slidlist li:nth-of-type(3n) {
  margin: 10px 0 10px 0;
}
@media screen and (min-width: 768px) {
  .c-results_slidlist li:nth-of-type(3n) {
    margin: 20px 20px 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .c-results_slidlist li:nth-of-type(4n) {
    margin: 20px 0 20px 0;
  }
}
.c-results_slidlist figcaption {
  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-direction: column;
}
.c-results_slidlist--brand {
  background-color: #505050;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 3px 5px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--brand {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-results_slidlist--category {
  font-size: 10px;
  font-size: 0.625rem;
  margin: 5px 0 0;
  padding: 0 5px;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--category {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 9px 0 0;
  }
}
.c-results_slidlist--title {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.2;
  height: 2rem;
  margin: 5px 0 0;
  overflow: hidden;
  padding: 0 8px;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--title {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1rem;
    min-height: 2.65rem;
  }
}
.c-results_slidlist--price {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  margin: 2px 0 0;
  padding: 0 5px;
  min-height: 1.4rem;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--price {
    font-size: 16px;
    font-size: 1rem;
    margin: 4px 0 0;
    min-height: 1.4rem;
  }
}
.c-results_slidlist--price span {
  color: #df443f;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--price span {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-results_slidlist--update {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: -.01rem;
  line-height: 1;
  margin: 2px 0 0;
  padding: 0 5px 8px;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--update {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: normal;
    margin: 8px 0 0;
  }
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--update:before {
    border: 1px solid #333;
    content: 'UP';
    display: block;
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: bold;
    line-height: 1;
    margin: 0 10px 0 0;
    padding: 3px 8px;
  }
}
.c-results_slidlist--img {
  background-color: #fbfbfb;
  overflow: hidden;
}
.c-results_slidlist--img img {
  object-fit: cover;
  height: 140px;
  margin: auto;
}
@media screen and (min-width: 576px) {
  .c-results_slidlist--img img {
    height: 125px;
  }
}
@media screen and (min-width: 768px) {
  .c-results_slidlist--img img {
    height: 145px;
  }
}
@media screen and (min-width: 980px) {
  .c-results_slidlist--img img {
    height: 175px;
  }
}
.c-results_btn {
  margin: 15px auto 0;
  max-width: 80%;
}
@media screen and (min-width: 768px) {
  .c-results_btn {
    max-width: 460px;
    width: 90%;
  }
}
.c-results_btn a {
  background-color: #c03759;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .c-results_btn a {
    padding: 22px 0;
  }
}

/* =========================================================
shop - お近くのマルカ店舗を探す
========================================================= */
.c-shoplist {
  margin: 0 auto 50px;
}
.c-shoplist_list {
  margin: 20px 0 0;
}
.c-shoplist_list--area {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: .1rem;
  padding: 8px 0;
  text-align: center;
}
.c-shoplist_list--area.kanto {
  background: #e6ded0;
  background: -webkit-linear-gradient(bottom, #d9c8ab 0%, #e9e3d9 50%, #ede9dc 100%);
  background: -o-linear-gradient(bottom, #d9c8ab 0%, #e9e3d9 50%, #ede9dc 100%);
  background: linear-gradient(to top, #d9c8ab 0%, #e9e3d9 50%, #ede9dc 100%);
}
.c-shoplist_list--area.kansai {
  background: #e6ded0;
  background: -webkit-linear-gradient(bottom, #d9c8ab 0%, #e9e3d9 50%, #ede9dc 100%);
  background: -o-linear-gradient(bottom, #d9c8ab 0%, #e9e3d9 50%, #ede9dc 100%);
  background: linear-gradient(to top, #d9c8ab 0%, #e9e3d9 50%, #ede9dc 100%);
  margin: 40px 0 0;
}
.c-shoplist_list--detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
@media screen and (min-width: 576px) {
  .c-shoplist_list--detail {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  .c-shoplist_list--detail {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.c-shoplist_list--detail li {
  border-radius: 5px;
  overflow: hidden;
  margin: 0 4px 15px;
  max-width: 285px;
  width: 48%;
  width: -webkit-calc((100% - 20px) / 2);
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .c-shoplist_list--detail li {
    width: 33%;
    width: -webkit-calc((100% - 25px) / 3);
    width: calc((100% - 25px) / 3);
  }
}
.c-shoplist_list--detail li figure {
  opacity: 1;
  transition: .4s;
}
.c-shoplist_list--detail li figure:hover figcaption {
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  opacity: .8;
}
.c-shoplist_list--detail li figure:hover figcaption:after {
  right: 10px;
}
.c-shoplist_list--detail li figure figcaption {
  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-size: 13px;
  font-size: 0.8125rem;
  height: 49px;
  line-height: 1.4;
  letter-spacing: -.03rem;
  transition: .4s;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-shoplist_list--detail li figure figcaption {
    font-size: 16px;
    font-size: 1rem;
    height: 60px;
    letter-spacing: 0;
  }
}
.c-shoplist_list--detail li figure figcaption::before, .c-shoplist_list--detail li figure figcaption::after {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/shop/list/bg_index.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  content: '';
  height: 44px;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
}
.c-shoplist_list--detail li figure figcaption::after {
  right: 10px;
  left: auto;
  transform: scale(-1, 1);
}
.c-shoplist_list--detail li figure figcaption span {
  display: block;
  width: 100%;
  position: relative;
}
.c-shoplist_list--detail li figure figcaption span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
}
.c-shoplist_list--detail.kanto figure figcaption {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/shop/list/bg_index_btn01.gif);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.c-shoplist_list--detail.kansai figure figcaption {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/shop/list/bg_index_btn02.gif);
  background-repeat: repeat-x;
  background-size: auto 100%;
}
.c-shoplist_list--detail.kansai .shinsaibashi figure figcaption {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/shop/list/bg_index_btn03.gif);
  background-repeat: repeat-x;
  background-size: auto 100%;
}

/* =========================================================
voice - お客様の声
========================================================= */
.c-voice {
  margin: 0 auto 50px;
}
.c-voice--title {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .c-voice--title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-voice--titleline {
  border-bottom: 1px solid #000;
  padding: 8px 5rem;
}
.c-voice--titlecolor {
  color: #9d8256;
  font-size: 22px;
  font-size: 1.375rem;
}
@media screen and (min-width: 980px) {
  .c-voice--titlecolor {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.c-voice--list {
  margin: 25px auto 0;
}
.c-voice--item {
  background-image: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/brand/rolex/bg_ratelist.gif);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
  padding: 5px;
}
.c-voice--img {
  max-width: 140px;
  min-width: 120px;
  text-align: center;
}
.c-voice--acdcheck {
  display: none;
}
.c-voice--acdlabel {
  background-color: #003359;
  color: #fff;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  display: block;
  letter-spacing: .1rem;
  position: relative;
}
@media screen and (min-width: 980px) {
  .c-voice--acdlabel {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-voice--acdlabel label {
  display: block;
  padding: 13px;
  width: 100%;
}
.c-voice--acdlabel label::before {
  background-color: #818181;
  border-radius: 50px;
  content: '';
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-voice--acdlabel label::after {
  content: '';
  display: block;
  height: 35px;
  width: 35px;
  position: absolute;
  right: 25px;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: .4s;
}
.c-voice--acdlabel label:hover {
  cursor: pointer;
}
.c-voice--acdcontent {
  background: #d4d4d4;
  background: -webkit-linear-gradient(bottom, rgba(212, 212, 212, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
  background: -o-linear-gradient(bottom, rgba(212, 212, 212, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
  background: linear-gradient(to top, rgba(212, 212, 212, 0.7) 0%, rgba(255, 255, 255, 0) 60%);
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition: .6s;
  visibility: hidden;
}
.c-voice--acdcontent figure {
  border-bottom: 1px solid #707070;
  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: 0 0 30px;
  padding: 0 0 30px;
}
.c-voice--acdcontent figure:last-of-type {
  border: none;
  margin: 0;
  padding: 0;
}
.c-voice--acdcheck:checked + .c-voice--acdlabel label::after {
  top: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-voice--acdcheck:checked + .c-voice--acdlabel + .c-voice--acdcontent {
  height: auto;
  opacity: 1;
  padding: 20px;
  visibility: visible;
}
@media screen and (min-width: 576px) {
  .c-voice--acdcheck:checked + .c-voice--acdlabel + .c-voice--acdcontent {
    padding: 30px;
  }
}
.c-voice--text {
  font-size: 14px;
  font-size: 0.875rem;
  flex-grow: 1;
  line-height: 1.8;
  padding: 0 0 0 20px;
  position: relative;
}
@media screen and (min-width: 576px) {
  .c-voice--text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-voice--staff {
  border-left: 3px solid #9d8256;
  display: block;
  font-weight: bold;
  margin: 0 0 10px;
  padding: 0 0 0 10px;
}
.c-voice--user {
  display: block;
  font-weight: bold;
  text-align: right;
}

/* =========================================================
column - コラムページ（post配下）
========================================================= */
.c-column {
  margin: 0 auto 50px;
}
.c-column--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;
  margin: 25px auto 0;
  overflow-y: scroll;
}
@media screen and (min-width: 768px) {
  .c-column--list {
    height: 370px;
  }
}
.c-column--wrap {
  background-color: #fff;
  border: 2px solid #E2E2E2;
  height: 100%;
}
.c-column--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-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.c-column--item {
  padding: 5px;
  max-width: 50%;
  width: 100%;
  height: 310px;
}
@media screen and (min-width: 768px) {
  .c-column--item {
    max-width: 16.6%;
  }
}
.c-column--more {
  background-color: #a1a1a1;
  display: block;
  color: #fff;
  text-align: center;
  padding: 4px;
}
.c-column--photo {
  height: 130px;
  overflow: hidden;
  padding: 2px;
  text-align: center;
}
.c-column--photo img {
  height: 130px;
  object-fit: contain;
}
.c-column--name {
  color: #000000;
  line-height: 1.3;
  padding: 10px;
  position: relative;
  text-align: center;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  .c-column--name {
    line-height: 1.2;
  }
}

/* =========================================================
brandlist - 取扱ブランド
========================================================= */
.c-brandlist {
  margin: 0 auto 50px;
}
.c-brandlist--wrap {
  background: #F9F9F9;
  border: 2px solid #fff;
  padding: 10px;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .c-brandlist--wrap {
    padding: 40px 30px;
    margin-bottom: 20px;
  }
}
.c-brandlist__in {
  margin: 0 -5px;
}
.c-brandlist__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;
}
.c-brandlist__menu .menu-item {
  width: 20%;
  padding: 5px;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .c-brandlist__menu .menu-item {
    width: 10%;
    margin-bottom: 15px;
  }
}
.c-brandlist__menu .menu-item.js-tab-active .menu-item__in {
  background: #4BA0B8;
  color: #ffffff;
}
.c-brandlist__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);
}
.c-brandlist__menu .menu-item__in {
  display: block;
  padding: 6px 5px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  background: #ffffff;
  position: relative;
}
.c-brandlist__body {
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .c-brandlist__body {
    padding-top: 25px;
  }
}
@media screen and (min-width: 768px) {
  .c-brandlist__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;
  }
}
.c-brandlist__item {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .c-brandlist__item {
    width: 50%;
    margin-bottom: 10px;
  }
}
.c-brandlist__item .link {
  color: #333;
  font-size: 13px;
  font-size: 0.8125rem;
  position: relative;
  padding-left: 16px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-brandlist__item .link {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-brandlist__item .link:hover {
  opacity: .8;
  text-decoration: underline;
}
.c-brandlist__item .link::before {
  content: "・";
  display: inline-block;
  vertical-align: baseline;
  position: absolute;
  top: 0;
  left: 0;
}
.c-brandlist__item .link span {
  padding-left: 5px;
}

.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;
}

/* =========================================================
series - ブランドシリーズなど一覧のスタイルなど
========================================================= */
.c-series--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;
  flex-wrap: wrap;
  margin: 30px auto 0;
  max-width: 880px;
}
.c-series--list li {
  border-bottom: 1px solid #dcdcdc;
  margin: 0 2% 30px;
  padding: 0 0 1rem;
  width: 96%;
}
@media screen and (min-width: 980px) {
  .c-series--list li {
    margin: 0 0 30px;
    width: 46%;
  }
}
.c-series--list li:nth-of-type(2n) {
  margin: 0 2% 30px;
}
@media screen and (min-width: 980px) {
  .c-series--list li:nth-of-type(2n) {
    margin: 0 0 30px 4%;
  }
}
.c-series--name {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 15px auto 0;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .c-series--name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-series--textarea {
  margin: 15px auto 0;
}

/* =========================================================
addcolumn - 追加コラム（SEOテキスト）
========================================================= */
.c-addcolumn {
  margin: 0 auto 50px;
}
.c-addcolumn--wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.c-addcolumn--wrap li {
  background-color: #003055;
  padding: 3px 17px 0 8px;
  margin: 0 8px 8px 0;
  position: relative;
}
.c-addcolumn--wrap li::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  right: 5px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-addcolumn--check {
  display: none;
}
.c-addcolumn--check:checked + label + .c-addcolumn--text p {
  visibility: visible;
  opacity: 1;
}
.c-addcolumn--check:checked + label + .c-addcolumn--text .c-addcolumn--bg {
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}
.c-addcolumn--label {
  color: #fff;
  display: inline-block;
  line-height: 1.2;
}
.c-addcolumn--label:hover {
  cursor: pointer;
  opacity: .8;
}
.c-addcolumn--text p {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  height: 50vh;
  width: 95vw;
  max-width: 792px;
  z-index: 999;
  overflow-y: scroll;
  right: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  padding: 25px 15px 15px;
  transition: .4s;
}
.c-addcolumn--text p em {
  border-bottom: 1px solid #333;
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 15px;
  padding: 15px 0;
}
.c-addcolumn--text p label {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
}
.c-addcolumn--text p label:hover {
  cursor: pointer;
}

/* =========================================================
contact
========================================================= */
.c-contact {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .c-contact {
    padding: 80px 0;
  }
}
.c-contact--wrap {
  background-color: #fff;
  border-radius: 5px;
  margin: auto;
  max-width: 1000px;
  padding: 20px;
  width: 96vw;
}
.c-contact--container {
  background-color: #f2e5e6;
  border-radius: 5px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .c-contact--container {
    padding: 50px;
  }
}
.c-contact--text {
  font-size: calc(19 * (100vw / 520));
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .c-contact--text {
    font-size: calc(19 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-contact--text {
    font-size: calc(20 * (100vw / 980));
    line-height: 1.6;
  }
}
@media screen and (min-width: 980px) {
  .c-contact--text {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-contact_link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 15px auto 0;
  max-width: 570px;
}
@media screen and (min-width: 768px) {
  .c-contact_link {
    flex-direction: row;
    margin: 30px auto 0;
  }
}
.c-contact_link > li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-contact_link > li {
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  .c-contact_link > li:not(:first-of-type) {
    margin: 0 0 0 4%;
  }
}
.c-contact_link > li a.line {
  background-color: #0abf7d;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(18 * (100vw / 520));
  font-weight: 500;
  height: 50px;
  margin: 15px 0 0;
  padding: 14px;
  text-align: center;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .c-contact_link > li a.line {
    font-size: calc(18 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-contact_link > li a.line {
    font-size: calc(15 * (100vw / 980));
    margin: 0;
  }
}
@media screen and (min-width: 980px) {
  .c-contact_link > li a.line {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-contact_link > li a.line:hover {
  background-color: #35d99d;
}
.c-contact_link > li a.line img {
  margin: 0 2px;
  max-width: 25px;
}
.c-contact_link > li a.tel {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-contact_link > li a.tel {
    justify-content: flex-start;
  }
}
.c-contact_link > li a.tel img {
  max-width: 63px;
}
.c-contact_link > li a.tel .tel-info {
  font-size: calc(34 * (100vw / 520));
  text-align: center;
}
@media screen and (min-width: 520px) {
  .c-contact_link > li a.tel .tel-info {
    font-size: calc(34 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-contact_link > li a.tel .tel-info {
    font-size: calc(28 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-contact_link > li a.tel .tel-info {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.c-contact_link > li a.tel .tel-info .num {
  display: block;
  font-family: "Lato", serif;
  font-weight: 700;
}
.c-contact_link > li a.tel .tel-info .reduce {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 50%;
  font-weight: 500;
  margin: 5px 0 0;
}

/* =========================================================
header
========================================================= */
.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding: 18px 0 10px;
  width: 92vw;
}
@media screen and (min-width: 768px) {
  .p-header {
    display: block;
    margin: 0;
    padding: 50px 0 20px;
    width: auto;
  }
}
.p-header--wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header--wrap {
    max-width: 1450px;
    margin: auto;
    width: 96vw;
  }
}
@media screen and (min-width: 768px) {
  .p-header--wrap.secondary {
    margin: 25px auto 0;
  }
}
.p-header--wrap.tertiary {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header--wrap.tertiary {
    display: none;
  }
}
.p-header-logo {
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 210px;
}
.p-header-logo picture {
  display: block;
  width: 100%;
}
.p-header-logo picture img {
  min-width: calc(160 * (100vw / 520));
}
@media screen and (min-width: 520px) {
  .p-header-logo picture img {
    min-width: 160px;
  }
}
.p-header-search {
  display: none;
  flex-grow: 1;
  margin: auto;
  width: 92vw;
}
@media screen and (min-width: 768px) {
  .p-header-search {
    display: block;
    max-width: 610px;
    margin: 0 0 0 15px;
    width: auto;
  }
}
.p-header-search .search_form {
  display: flex;
}
.p-header-search .search_input {
  background-color: #fff;
  border: none;
  border-radius: 50px 0 0 50px;
  color: #9c9c9c;
  font-weight: 200;
  outline: none;
  font-size: calc(16 * (100vw / 520));
  padding: 12px 25px;
  transition: .4s;
  width: calc(100% - 60px);
}
@media screen and (min-width: 520px) {
  .p-header-search .search_input {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-search .search_input {
    font-size: calc(16 * (100vw / 980));
    padding: 16px 25px;
  }
}
@media screen and (min-width: 980px) {
  .p-header-search .search_input {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-search .search_input:hover {
  background-color: #eee;
}
.p-header-search .search_submit {
  background-color: #81a6c9;
  background-image: url("../../images/common/icon-search_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: none;
  border-radius: 0 50px 50px 0;
  font-size: calc(16 * (100vw / 520));
  transition: .4s;
  width: 60px;
}
@media screen and (min-width: 520px) {
  .p-header-search .search_submit {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-search .search_submit {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-search .search_submit {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-search .search_submit:hover {
  background-color: #6889a9;
  cursor: pointer;
}
.p-header-search_resultsbtn a {
  background: #b29443;
  border-radius: 50px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: calc(17 * (100vw / 520));
  font-weight: 500;
  text-align: center;
  max-width: 450px;
  padding: 8px 15px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 520px) {
  .p-header-search_resultsbtn a {
    font-size: calc(17 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-search_resultsbtn a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-search_resultsbtn a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-search_resultsbtn a::before {
  background-image: url(../../images/common/icon-results.webp);
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50px;
  content: '';
  display: block;
  height: 30px;
  width: 30px;
  margin: 0 5px 0 0;
}
.p-header-search_resultsbtn a::after {
  background-image: url(../../images/common/icon-triangle01.svg);
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 12px;
  width: 12px;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(-90deg);
}
.p-header-tel {
  display: flex;
  align-items: center;
  flex-grow: 1;
  max-width: 270px;
  margin: 0 0 0 15px;
}
.p-header-tel--wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-header-tel--wrap > a {
  color: #394656;
  font-family: "Lato", serif;
  font-size: calc(30 * (100vw / 520));
  font-weight: bold;
  letter-spacing: .06rem;
}
@media screen and (min-width: 520px) {
  .p-header-tel--wrap > a {
    font-size: calc(28 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-tel--wrap > a {
    font-size: calc(28 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-tel--wrap > a {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-header-tel--wrap .reduce {
  display: block;
  font-size: calc(14 * (100vw / 520));
  font-weight: 400;
  letter-spacing: .06rem;
  margin: 2px 0 0;
}
@media screen and (min-width: 520px) {
  .p-header-tel--wrap .reduce {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-tel--wrap .reduce {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-tel--wrap .reduce {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-header-tel--wrap .time {
  font-family: "Lato", serif;
  margin: 0 8px 0 0;
}
.p-header-tel .icon {
  display: none;
  padding: 0 12px 0 0;
  position: relative;
}
@media screen and (min-width: 520px) {
  .p-header-tel .icon {
    display: block;
  }
}
.p-header-tel .icon:before {
  background-image: url(../../images/common/icon-phone_white.svg);
  background-color: #f17989;
  background-size: 38%;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  display: block;
  height: 50px;
  width: 50px;
}
.p-header-tel .icon:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 19px 7.5px;
  border-color: transparent transparent #f17989 transparent;
  position: absolute;
  top: 55%;
  left: 36px;
}
.p-header-line {
  display: none;
  flex-grow: 1;
  max-width: 260px;
  margin: 0 0 0 15px;
}
@media screen and (min-width: 980px) {
  .p-header-line {
    display: block;
  }
}
.p-header-line a {
  background-color: #0abf7d;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16 * (100vw / 520));
  padding: 11px;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .p-header-line a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-line a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-line a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-line a:hover {
  background-color: #35d99d;
}
.p-header-line a img {
  margin: 0 6px;
  max-width: 30px;
}
.p-header-globalnav {
  display: none;
  flex-grow: 1;
  max-width: 920px;
}
@media screen and (min-width: 768px) {
  .p-header-globalnav {
    display: block;
  }
}
.p-header-globalnav ul.main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
}
.p-header-globalnav ul.main > li {
  display: flex;
  align-items: center;
  height: 50px;
  position: relative;
}
.p-header-globalnav ul.main > li > span,
.p-header-globalnav ul.main > li a {
  color: #394656;
  cursor: pointer;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
}
@media screen and (min-width: 520px) {
  .p-header-globalnav ul.main > li > span,
  .p-header-globalnav ul.main > li a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-globalnav ul.main > li > span,
  .p-header-globalnav ul.main > li a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-globalnav ul.main > li > span,
  .p-header-globalnav ul.main > li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-globalnav ul.main > li:not(:first-of-type) {
  margin: 0 0 0 20px;
}
.p-header-globalnav ul.main > li:hover ul.sub {
  opacity: 1;
  visibility: visible;
  max-height: 999vh;
}
.p-header-globalnav ul.sub {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  padding: 15px 10px;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  position: absolute;
  top: 50px;
  left: -60px;
  width: 240px;
  transition: .4s;
  z-index: 2;
}
.p-header-globalnav ul.sub > li > span,
.p-header-globalnav ul.sub > li a {
  color: #394656;
  cursor: pointer;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
}
@media screen and (min-width: 520px) {
  .p-header-globalnav ul.sub > li > span,
  .p-header-globalnav ul.sub > li a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-globalnav ul.sub > li > span,
  .p-header-globalnav ul.sub > li a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-globalnav ul.sub > li > span,
  .p-header-globalnav ul.sub > li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-globalnav ul.sub > li a {
  background-color: #f8f8f8;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  transition: .4s;
}
.p-header-globalnav ul.sub > li a::after {
  background-image: url(../../images/common/icon-triangle02.svg);
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  position: relative;
  transform: rotate(-90deg);
}
.p-header-globalnav ul.sub > li a:hover {
  background-color: #9bbddd;
  color: #fff;
}
.p-header-globalnav ul.sub > li a:hover::after {
  background-image: url(../../images/common/icon-triangle01.svg);
}
.p-header-globalnav ul.sub > li:not(:first-of-type) {
  margin: 6px 0 0;
}
.p-header-globalnav ul.sub > li.boundary::before {
  background: radial-gradient(circle farthest-side, #9dd0eb, #9dd0eb 30%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0));
  background-size: 5px 6px;
  content: '';
  display: inline-block;
  flex-grow: 1;
  height: 5px;
  margin: 0 0 8px 0;
  width: 100%;
}
.p-header-mypage {
  display: none;
  margin: 0 0 0 25px;
}
@media screen and (min-width: 1150px) {
  .p-header-mypage {
    display: block;
  }
}
.p-header-mypage a {
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
}
@media screen and (min-width: 520px) {
  .p-header-mypage a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-mypage a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-mypage a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-mypage a::before {
  background-color: #f9dad6;
  background-image: url(../../images/common/icon-mypage.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  border-radius: 50px;
  content: '';
  display: block;
  height: 50px;
  width: 50px;
  margin: 0 10px 0 0;
  transition: .4s;
}
.p-header-mypage a::after {
  background-image: url(../../images/common/icon-arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  height: 25px;
  width: 25px;
  margin: 0 0 0 10px;
  transition: .4s;
}
.p-header-mypage a:hover::before {
  background-color: #e7bdb8;
}
.p-header-drawerbtn {
  margin: 0 0 0 10px;
}
@media screen and (min-width: 520px) {
  .p-header-drawerbtn {
    margin: 0 0 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn {
    margin: 0 0 0 25px;
  }
}
.p-header-drawerbtn label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.p-header-drawerbtn .icon {
  background-color: #81a6c9;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  position: relative;
  transition: .4s;
}
.p-header-drawerbtn .icon::before, .p-header-drawerbtn .icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-header-drawerbtn .icon::before {
  top: 14px;
}
.p-header-drawerbtn .icon::after {
  bottom: 14px;
}
.p-header-drawerbtn .icon:hover {
  background-color: #6889a9;
}
.p-header-drawerbtn .icon .border {
  background-color: #fff;
  height: 2px;
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-header-drawerbtn .text {
  color: #394656;
  display: none;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
  margin: 0 0 0 10px;
}
@media screen and (min-width: 520px) {
  .p-header-drawerbtn .text {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-drawerbtn .text {
    font-size: calc(16 * (100vw / 980));
    display: inline-block;
  }
}
@media screen and (min-width: 980px) {
  .p-header-drawerbtn .text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-spnav {
  display: block;
  margin: auto;
  padding: 5px 0 10px;
  width: 92vw;
}
@media screen and (min-width: 768px) {
  .p-header-spnav {
    display: none;
  }
}
.p-header-spnav > .p-header-search {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-header-spnav > .p-header-search {
    display: none;
  }
}
.p-header-spnav_list {
  display: flex;
  flex-wrap: wrap;
}
.p-header-spnav_list > li {
  margin: 10px 1% 0;
  width: calc(94% / 3);
}
.p-header-spnav_list > li > a,
.p-header-spnav_list > li .p-header-spnav--label {
  background-color: #ccc;
  border-radius: 5px;
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
  min-height: calc(54 * (100vw / 520));
  width: 100%;
}
@media screen and (min-width: 520px) {
  .p-header-spnav_list > li > a,
  .p-header-spnav_list > li .p-header-spnav--label {
    font-size: calc(16 * (100vw / 768));
    min-height: calc(54 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-header-spnav_list > li > a,
  .p-header-spnav_list > li .p-header-spnav--label {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-header-spnav_list > li > a,
  .p-header-spnav_list > li .p-header-spnav--label {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-header-spnav_list > li > a .icon,
.p-header-spnav_list > li .p-header-spnav--label .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-header-spnav_list > li > a .icon::before,
.p-header-spnav_list > li .p-header-spnav--label .icon::before {
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
  display: block;
  height: 23px;
  width: 23px;
  margin: 0 3px 0 0;
}
.p-header-spnav_list > li > a.campaign,
.p-header-spnav_list > li .p-header-spnav--label.campaign {
  background-color: #faee68;
}
.p-header-spnav_list > li > a.campaign .icon::before,
.p-header-spnav_list > li .p-header-spnav--label.campaign .icon::before {
  background-image: url(../../images/common/icon-campaign.webp);
}
.p-header-spnav_list > li > a.shop,
.p-header-spnav_list > li .p-header-spnav--label.shop {
  background-color: #b7d5cd;
}
.p-header-spnav_list > li > a.shop .icon::before,
.p-header-spnav_list > li .p-header-spnav--label.shop .icon::before {
  background-image: url(../../images/common/icon-shop.webp);
}
.p-header-spnav_list > li > a.mypage,
.p-header-spnav_list > li .p-header-spnav--label.mypage {
  background-color: #f9dad6;
}
.p-header-spnav_list > li > a.mypage .icon::before,
.p-header-spnav_list > li .p-header-spnav--label.mypage .icon::before {
  background-image: url(../../images/common/icon-mypage.webp);
}
.p-header-spnav--checkbox:checked ~ .p-header-spnav--container {
  visibility: visible;
  opacity: 1;
  max-height: 999vh;
  z-index: 501;
}
.p-header-spnav--checkbox:checked ~ .p-header-spnav--overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
}
.p-header-spnav_banner {
  display: flex;
  flex-wrap: wrap;
}
.p-header-spnav_banner > li {
  margin: 0 1% 10px;
  width: calc(94% / 3);
}
.p-header-spnav--container {
  background-color: #fff;
  padding: 25px 0 10px;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  max-height: 0;
  width: calc(92vw - 2%);
  transition: .4s;
}
.p-header-spnav--overlay {
  transition: .4s;
}
.p-header-spnav--close {
  background-color: #81a6c9;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  right: -5px;
  height: 28px;
  width: 28px;
}
.p-header-float {
  background-color: rgba(247, 247, 247, 0.9);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  padding: 10px 2vw;
  position: fixed;
  width: 100vw;
  z-index: 499;
  transition: .4s;
}
@media screen and (min-width: 768px) {
  .p-header-float {
    display: none;
  }
}
.p-header-float > .p-header-search {
  display: block;
  margin: 0 0 0 10px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .p-header-float > .p-header-search {
    display: none;
  }
}
.p-header-float > .p-header-search .search_input {
  padding: 12px 10px;
  width: calc(100% - 50px);
}
.p-header-float > .p-header-search .search_submit {
  width: 50px;
}
.p-header-float > .p-header-logo {
  max-width: 120px;
  min-width: calc(160*(100vw / 520));
}
.p-header .textline {
  position: relative;
}
.p-header .textline::after {
  background-color: #929292;
  content: '';
  display: block;
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -4px;
  z-index: 0;
  transition: .4s;
}
.p-header .textline:hover::after {
  width: 100%;
}

/* =========================================================
footer - フッター内のクラス
========================================================= */
.p-footer {
  background-color: #fff;
  padding: 40px 0 calc(160 * (100vw / 768));
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 50px 0;
  }
}
.p-footer--wrap {
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 1450px;
  width: 96vw;
}
.p-footer--wrap.secondary {
  margin: 25px auto 0;
}
@media screen and (min-width: 768px) {
  .p-footer--wrap.secondary {
    margin: 65px auto 0;
  }
}
.p-footer-logo {
  display: none;
  align-items: center;
  flex-grow: 1;
  max-width: 210px;
}
@media screen and (min-width: 768px) {
  .p-footer-logo {
    display: flex;
  }
}
.p-footer-logo picture {
  display: block;
  width: 100%;
}
.p-footer-logo picture img {
  min-width: calc(160 * (100vw / 520));
}
@media screen and (min-width: 520px) {
  .p-footer-logo picture img {
    min-width: 160px;
  }
}
.p-footer-search {
  flex-grow: 1;
  max-width: 610px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer-search {
    margin: 0 0 0 15px;
  }
}
.p-footer-search .search_form {
  display: flex;
}
.p-footer-search .search_input {
  background-color: #f7f7f7;
  border: none;
  border-radius: 50px 0 0 50px;
  color: #9c9c9c;
  font-weight: 200;
  outline: none;
  font-size: calc(16 * (100vw / 520));
  padding: 12px 25px;
  transition: .4s;
  width: calc(100% - 60px);
}
@media screen and (min-width: 520px) {
  .p-footer-search .search_input {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-search .search_input {
    font-size: calc(16 * (100vw / 980));
    padding: 16px 25px;
  }
}
@media screen and (min-width: 980px) {
  .p-footer-search .search_input {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer-search .search_input:hover {
  background-color: #eee;
}
.p-footer-search .search_submit {
  background-color: #81a6c9;
  background-image: url("../../images/common/icon-search_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: none;
  border-radius: 0 50px 50px 0;
  font-size: calc(16 * (100vw / 520));
  transition: .4s;
  width: 60px;
}
@media screen and (min-width: 520px) {
  .p-footer-search .search_submit {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-search .search_submit {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-search .search_submit {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer-search .search_submit:hover {
  background-color: #6889a9;
  cursor: pointer;
}
.p-footer-tel {
  display: none;
  align-items: center;
  flex-grow: 1;
  max-width: 270px;
  margin: 0 0 0 15px;
}
@media screen and (min-width: 768px) {
  .p-footer-tel {
    display: flex;
  }
}
.p-footer-tel--wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.p-footer-tel--wrap > a {
  color: #394656;
  font-family: "Lato", serif;
  font-size: calc(28 * (100vw / 520));
  font-weight: bold;
  letter-spacing: .06rem;
}
@media screen and (min-width: 520px) {
  .p-footer-tel--wrap > a {
    font-size: calc(28 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-tel--wrap > a {
    font-size: calc(28 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-tel--wrap > a {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-footer-tel--wrap .reduce {
  display: block;
  font-size: calc(14 * (100vw / 520));
  font-weight: 400;
  letter-spacing: .06rem;
  margin: 2px 0 0;
}
@media screen and (min-width: 520px) {
  .p-footer-tel--wrap .reduce {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-tel--wrap .reduce {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-tel--wrap .reduce {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-footer-tel--wrap .time {
  font-family: "Lato", serif;
  margin: 0 8px 0 0;
}
.p-footer-tel .icon {
  padding: 0 12px 0 0;
  position: relative;
}
.p-footer-tel .icon:before {
  background-image: url(../../images/common/icon-phone_white.svg);
  background-color: #f17989;
  background-size: 38%;
  border-radius: 50px;
  background-repeat: no-repeat;
  background-position: center;
  content: '';
  display: block;
  height: 50px;
  width: 50px;
}
.p-footer-tel .icon:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 19px 7.5px;
  border-color: transparent transparent #f17989 transparent;
  position: absolute;
  top: 55%;
  left: 36px;
}
.p-footer-line {
  display: none;
  flex-grow: 1;
  max-width: 260px;
  margin: 0 0 0 15px;
}
@media screen and (min-width: 980px) {
  .p-footer-line {
    display: block;
  }
}
.p-footer-line a {
  background-color: #0abf7d;
  border-radius: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16 * (100vw / 520));
  padding: 11px;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .p-footer-line a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-line a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-line a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer-line a:hover {
  background-color: #35d99d;
}
.p-footer-line a img {
  margin: 0 6px;
  max-width: 30px;
}
.p-footer-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 1150px) {
  .p-footer-nav {
    flex-direction: row;
  }
}
.p-footer-nav_list01 {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01 {
    flex-direction: row;
  }
}
@media screen and (min-width: 1150px) {
  .p-footer-nav_list01 {
    width: calc(100% - 325px - 80px);
  }
}
.p-footer-nav_list01--wrap {
  border-bottom: 1px solid #f7f7f7;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01--wrap {
    border-bottom: none;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01--wrap:not(:first-of-type) {
    margin: 0 0 0 30px;
  }
}
.p-footer-nav_list01--wrap dt {
  color: #394656;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
  margin: 0 0 10px;
}
@media screen and (min-width: 520px) {
  .p-footer-nav_list01--wrap dt {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01--wrap dt {
    font-size: calc(16 * (100vw / 980));
    margin: 0 0 35px;
  }
}
@media screen and (min-width: 980px) {
  .p-footer-nav_list01--wrap dt {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer-nav_list01--wrap dd .subpage {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01--wrap dd .subpage {
    flex-direction: column;
  }
}
.p-footer-nav_list01--wrap dd .subpage > li {
  margin: 0 7px 7px 0;
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01--wrap dd .subpage > li {
    margin: 0 0 10px;
  }
}
.p-footer-nav_list01--wrap dd .subpage > li a {
  color: #394656;
  font-size: calc(14 * (100vw / 520));
}
@media screen and (min-width: 520px) {
  .p-footer-nav_list01--wrap dd .subpage > li a {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list01--wrap dd .subpage > li a {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-nav_list01--wrap dd .subpage > li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-footer-nav_list01--wrap dd .subpage > li a:hover {
  text-decoration: underline;
}
.p-footer-nav_list02 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 20px 0 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list02 {
    margin: 40px 0 0;
  }
}
@media screen and (min-width: 1150px) {
  .p-footer-nav_list02 {
    margin: 0 0 0 80px;
    max-width: 325px;
    width: auto;
  }
}
.p-footer-nav_list02 .page {
  display: flex;
  flex-wrap: wrap;
}
.p-footer-nav_list02 .page > li {
  margin: 0 25px 15px 0;
}
@media screen and (min-width: 1150px) {
  .p-footer-nav_list02 .page > li {
    margin: 0 0 35px;
    width: 48%;
  }
}
@media screen and (min-width: 1150px) {
  .p-footer-nav_list02 .page > li:nth-of-type(2n+2) {
    margin: 0 0 35px 4%;
  }
}
.p-footer-nav_list02 .page > li a {
  color: #394656;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
}
@media screen and (min-width: 520px) {
  .p-footer-nav_list02 .page > li a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-nav_list02 .page > li a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-nav_list02 .page > li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer-mypage {
  margin: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .p-footer-mypage {
    margin: 0;
  }
}
.p-footer-mypage a {
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
}
@media screen and (min-width: 520px) {
  .p-footer-mypage a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-mypage a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-mypage a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-footer-mypage a::before {
  background-color: #f9dad6;
  background-image: url(../../images/common/icon-mypage.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px;
  border-radius: 50px;
  content: '';
  display: block;
  height: 50px;
  width: 50px;
  margin: 0 10px 0 0;
  transition: .4s;
}
.p-footer-mypage a::after {
  background-image: url(../../images/common/icon-arrow01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  height: 25px;
  width: 25px;
  margin: 0 0 0 10px;
  transition: .4s;
}
.p-footer-mypage a:hover::before {
  background-color: #e7bdb8;
}
.p-footer-ltd_hikida {
  margin: 30px auto 0;
}
@media screen and (min-width: 768px) {
  .p-footer-ltd_hikida {
    margin: 0 auto;
  }
}
.p-footer-ltd_hikida a {
  transition: .4s;
}
.p-footer-ltd_hikida a:hover {
  opacity: .7;
}
.p-footer-ltd_hikida .authorization,
.p-footer-ltd_hikida .copyright {
  font-size: calc(14 * (100vw / 520));
}
@media screen and (min-width: 520px) {
  .p-footer-ltd_hikida .authorization,
  .p-footer-ltd_hikida .copyright {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .p-footer-ltd_hikida .authorization,
  .p-footer-ltd_hikida .copyright {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .p-footer-ltd_hikida .authorization,
  .p-footer-ltd_hikida .copyright {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-footer-ltd_hikida .authorization {
  margin: 15px auto 0;
}
.p-footer .textline {
  color: #394656;
  position: relative;
}
.p-footer .textline::after {
  background-color: #929292;
  content: '';
  display: block;
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -4px;
  z-index: 0;
  transition: .4s;
}
.p-footer .textline:hover::after {
  width: 100%;
}
/* =========================================================
drawer
========================================================= */
.c-drawer {
  background-color: #f7f7f7;
  height: 100vh;
  padding: 0;
  max-width: 0;
  width: 90vw;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
  right: -390px;
  transition: .4s;
  z-index: 501;
  scrollbar-color: #929292 #fff;
  scrollbar-width: thin;
}
.c-drawer::-webkit-scrollbar {
  width: 8px;
  background-color: #fff;
}
.c-drawer::-webkit-scrollbar-thumb {
  background: #929292;
  width: 6px;
  border-radius: 5px;
}
.c-drawer-btn label {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
}
.c-drawer-btn .icon {
  background-color: #81a6c9;
  border-radius: 50px;
  cursor: pointer;
  height: 50px;
  width: 50px;
  position: relative;
  transition: .4s;
}
.c-drawer-btn .icon::before, .c-drawer-btn .icon::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 2px;
  width: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-drawer-btn .icon::before {
  top: 14px;
  transition: .4s;
}
.c-drawer-btn .icon::after {
  bottom: 14px;
  transition: .4s;
}
.c-drawer-btn .icon:hover {
  background-color: #6889a9;
}
.c-drawer-btn .icon .border {
  color: #fff;
  font-size: calc(11 * (100vw / 520));
  font-weight: 500;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  letter-spacing: -.1rem;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .c-drawer-btn .icon .border {
    font-size: calc(11 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-btn .icon .border {
    font-size: calc(11 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-btn .icon .border {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.c-drawer-highlighted {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 5px auto 0;
}
.c-drawer-highlighted li {
  margin: 0 0 8px;
  width: 49%;
}
.c-drawer-highlighted li:first-of-type {
  width: 100%;
}
.c-drawer-highlighted li a {
  border-radius: 5px;
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(18 * (100vw / 520));
  font-weight: 500;
}
@media screen and (min-width: 520px) {
  .c-drawer-highlighted li a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-highlighted li a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-highlighted li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-drawer-highlighted li a::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border-radius: 50px;
  content: '';
  display: block;
  height: 50px;
  width: 25px;
}
.c-drawer-highlighted li a.results {
  background-color: #b29443;
  color: #fff;
}
.c-drawer-highlighted li a.results:hover {
  background-color: #977c32;
}
.c-drawer-highlighted li a.results::before {
  background-image: url(../../images/common/icon-results.webp);
  background-size: 30px;
  height: 50px;
  width: 40px;
}
.c-drawer-highlighted li a.shop {
  background-color: #b7d5cd;
}
.c-drawer-highlighted li a.shop:hover {
  background-color: #8fbdb1;
}
.c-drawer-highlighted li a.shop::before {
  background-image: url(../../images/common/icon-shop.webp);
  background-size: 30px;
  height: 50px;
  width: 40px;
}
.c-drawer-highlighted li a.mypage {
  background-color: #f9dad6;
}
.c-drawer-highlighted li a.mypage:hover {
  background-color: #e7bdb8;
}
.c-drawer-highlighted li a.mypage::before {
  background-image: url(../../images/common/icon-mypage.webp);
}
.c-drawer-assessment {
  background-color: #f0f0f0;
  margin: 20px auto 0;
  padding: 15px 8px;
}
.c-drawer-assessment_title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(22 * (100vw / 520));
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .c-drawer-assessment_title {
    font-size: calc(20 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-assessment_title {
    font-size: calc(20 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-assessment_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-drawer-assessment_title::before, .c-drawer-assessment_title::after {
  background-color: #FEF07F;
  content: '';
  display: block;
  height: 2px;
  width: 40px;
}
.c-drawer-assessment_title::before {
  transform: rotate(60deg);
}
.c-drawer-assessment_title::after {
  transform: rotate(-60deg);
}
.c-drawer-assessment_title .reduce {
  display: block;
  font-size: 80%;
}
.c-drawer-assessment_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px auto 0;
}
.c-drawer-assessment_list > li {
  margin: 0 0 8px;
  width: 48%;
}
.c-drawer-assessment_list > li:nth-of-type(2n+1) {
  margin: 0 2% 8px 0;
}
.c-drawer-assessment_list > li a {
  border-radius: 5px;
  color: #394656;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(18 * (100vw / 520));
  font-weight: 500;
  padding: 10px;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .c-drawer-assessment_list > li a {
    font-size: calc(16 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-assessment_list > li a {
    font-size: calc(16 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-assessment_list > li a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.c-drawer-assessment_list > li a img {
  margin: 0 6px 0 0;
  max-width: 25px;
}
.c-drawer-assessment_list > li a.counter {
  background-color: #b7d5cd;
}
.c-drawer-assessment_list > li a.counter:hover {
  background-color: #8fbdb1;
}
.c-drawer-assessment_list > li a.line {
  background-color: #0abf7d;
  color: #fff;
  font-size: calc(16 * (100vw / 520));
  max-height: 45px;
  letter-spacing: -.05rem;
  padding: 15px 5px;
}
@media screen and (min-width: 520px) {
  .c-drawer-assessment_list > li a.line {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-assessment_list > li a.line {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-assessment_list > li a.line {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-drawer-assessment_list > li a.line:hover {
  background-color: #35d99d;
}
.c-drawer-assessment_list > li a.line img {
  margin: 0 3px;
  max-width: 20px;
}
.c-drawer-assessment_list > li a.delivery {
  background-color: #f9dad6;
}
.c-drawer-assessment_list > li a.delivery:hover {
  background-color: #e7bdb8;
}
.c-drawer-assessment_list > li a.bulgeout {
  background-color: #83c5e8;
}
.c-drawer-assessment_list > li a.bulgeout:hover {
  background-color: #6889a9;
}
.c-drawer-nav {
  margin: 37px auto 0;
  padding: 0 10px;
}
.c-drawer-nav_title {
  font-size: calc(22 * (100vw / 520));
  font-weight: 700;
  margin: 0 0 15px;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .c-drawer-nav_title {
    font-size: calc(20 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-nav_title {
    font-size: calc(20 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-nav_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-drawer-nav_title .reduce {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80%;
}
.c-drawer-nav_title .reduce::before, .c-drawer-nav_title .reduce::after {
  background-color: #FEF07F;
  content: '';
  display: block;
  height: 2px;
  width: 20px;
  margin: 0 5px;
}
.c-drawer-nav_title .reduce::before {
  transform: rotate(60deg);
}
.c-drawer-nav_title .reduce::after {
  transform: rotate(-60deg);
}
.c-drawer-nav_list {
  display: flex;
  flex-wrap: wrap;
}
.c-drawer-nav_list > li {
  margin: 0 0 18px;
  width: 48%;
}
.c-drawer-nav_list > li:first-of-type {
  width: 100%;
}
.c-drawer-nav_list > li:nth-of-type(2n+3) {
  margin: 0 0 18px 4%;
}
.c-drawer-nav_list > li a {
  color: #394656;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .c-drawer-nav_list > li a {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-nav_list > li a {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-nav_list > li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-drawer-nav_list > li figure picture {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}
.c-drawer-nav_list > li figure picture:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.c-drawer-nav_list > li figure picture img {
  max-height: 75px;
}
.c-drawer-nav_list > li figure figcaption {
  margin: 3px 0 0;
}
.c-drawer-nav_sublist {
  display: flex;
  flex-wrap: wrap;
}
.c-drawer-nav_sublist > li {
  margin: 0 0 18px;
  width: 48%;
}
.c-drawer-nav_sublist > li:nth-of-type(2n+2) {
  margin: 0 0 18px 4%;
}
.c-drawer-nav_sublist > li a {
  color: #394656;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .c-drawer-nav_sublist > li a {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-nav_sublist > li a {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-nav_sublist > li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-drawer-nav_sublist > li figure picture {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s;
}
.c-drawer-nav_sublist > li figure picture:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.c-drawer-nav_sublist > li figure picture img {
  max-height: 75px;
}
.c-drawer-nav_sublist > li figure figcaption {
  margin: 3px 0 0;
}
.c-drawer-about {
  background-color: #efece4;
  margin: 34px auto 0;
  padding: 15px 8px;
}
.c-drawer-about_title {
  font-size: calc(22 * (100vw / 520));
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .c-drawer-about_title {
    font-size: calc(20 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-about_title {
    font-size: calc(20 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-about_title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.c-drawer-about_title .reduce {
  display: block;
  font-size: 80%;
}
.c-drawer-about_list {
  display: flex;
  flex-wrap: wrap;
  margin: 15px 0 0;
}
.c-drawer-about_list > li {
  margin: 0 0 10px;
  width: 48%;
}
.c-drawer-about_list > li:nth-of-type(2n+2) {
  margin: 0 0 10px 4%;
}
.c-drawer-about_list > li a {
  background: #81a6c9;
  border: 3px solid #ffffff;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: calc(16 * (100vw / 520));
  font-weight: 500;
  min-height: 49px;
  padding: 5px;
  transition: .4s;
}
@media screen and (min-width: 520px) {
  .c-drawer-about_list > li a {
    font-size: calc(14 * (100vw / 768));
  }
}
@media screen and (min-width: 768px) {
  .c-drawer-about_list > li a {
    font-size: calc(14 * (100vw / 980));
  }
}
@media screen and (min-width: 980px) {
  .c-drawer-about_list > li a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-drawer-about_list > li a::after {
  background-image: url(../../images/common/icon-arrow02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: '';
  display: block;
  height: 8px;
  width: 18px;
  margin: 0 0 0 5px;
  transition: .4s;
}
.c-drawer-about_list > li a:hover {
  background-color: #6889a9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.c-drawer-about_list > li a img {
  margin: 0 6px 0 0;
  max-width: 20px;
}
.c-drawer-banner {
  margin: 25px 0 0;
}
.c-drawer-banner_list {
  display: flex;
  flex-wrap: wrap;
}
.c-drawer-banner_list > li {
  margin: 0 0 10px;
  width: 48%;
}
.c-drawer-banner_list > li:nth-of-type(2n+2) {
  margin: 0 0 10px 4%;
}
.c-drawer-banner_list > li a {
  transition: .4s;
}
.c-drawer-banner_list > li a:hover {
  opacity: .7;
}
.c-drawer-acc--container {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: .4s;
}
.c-drawer-acc--more label {
  background: url(../../images/common/icon-triangle01.svg) center no-repeat;
  background-size: 18px;
  background-color: #81A6C9;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  width: 50px;
  height: 50px;
  margin: auto;
  transition: .4s;
}
.c-drawer-acc--more label:hover {
  background-color: #6889a9;
}
.c-drawer-acc--check:checked + .c-drawer-acc > .c-drawer-acc--container {
  max-height: 999vh;
  visibility: visible;
  opacity: 1;
}
.c-drawer-acc--check:checked + .c-drawer-acc > .c-drawer-acc--more label {
  transform: rotate(-180deg);
}

#drawer:checked + .c-drawer {
  padding: 5px 10px 15px;
  max-width: 390px;
  right: 0;
}
#drawer:checked + .c-drawer .c-drawer-btn .icon::before {
  top: -5px;
  transform: rotate(45deg);
}
#drawer:checked + .c-drawer .c-drawer-btn .icon::after {
  bottom: 5px;
  transform: rotate(-45deg);
}
#drawer:checked ~ .c-drawer-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
}

/* =========================================================
louisvitton89 - 買取ブランド LOUIS VUITTONページのクラスなど
========================================================= */
.p-louisvitton89 {
  overflow-x: hidden;
  background: #ffffff;
}
.p-louisvitton89 .louisvitton89-btn {
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 20px 10px;
  text-align: center;
  box-shadow: 14px 14px 24px -5px #bfbfbf;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89 .louisvitton89-btn {
    padding: 25px 10px;
  }
}
.p-louisvitton89 .louisvitton89-btn:hover {
  opacity: 0.6;
}
.p-louisvitton89 .louisvitton89-btn .in {
  display: inline-block;
  width: 100%;
  padding-right: 20px;
  color: #ffffff;
  font-weight: bold;
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/brand/louisvitton89/icon_w_right.png) no-repeat center right;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89 .louisvitton89-btn .in {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-louisvitton89 .louisvitton89-btn.btn-shop {
  background: #f08300;
}
.p-louisvitton89 .louisvitton89-btn.btn-takuhai {
  background: #d65477;
}
.p-louisvitton89 .louisvitton89-btn.btn-line {
  background: #00b900;
}
.p-louisvitton89 .c-voice {
  margin: 80px auto 80px;
}

.p-louisvitton89-mainvisual {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/brand/louisvitton89/bg250225.jpg) repeat-y bottom;
  background-size: cover;
  background-position: center;
  padding: 30px 0 0;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual {
    padding: 0;
  }
}
.p-louisvitton89-mainvisual .l-container {
  padding-right: 5px;
  padding-left: 5px;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual .l-container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.p-louisvitton89-mainvisual__in {
  background: url(https://www.7-7maruka.com/kanri/wp-content/themes/original2025/old/images_22/brand/louisvitton89/fv-img-main250225.png) right bottom no-repeat;
  background-size: 100% auto;
  padding-bottom: 320px;
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 576px) {
  .p-louisvitton89-mainvisual__in {
    background-position: bottom center;
    background-size: auto 330px;
    padding-bottom: 260px;
  }
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__in {
    display: block;
    padding: 30px 20% 30px 0;
    background-position: center right;
    background-size: 400px auto;
    max-width: none;
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-mainvisual__in {
    padding: 60px 20% 60px 0;
    background-size: 500px auto;
  }
}
.p-louisvitton89-mainvisual__ttl {
  display: inline-block;
  margin: auto;
  font-size: 15px;
  font-size: 0.9375rem;
  position: relative;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__ttl {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.p-louisvitton89-mainvisual__ttl .ttl-sub {
  display: inline-block;
  color: #e6d8b2;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 1.2px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__ttl .ttl-sub {
    font-size: 25px;
    font-size: 1.5625rem;
    letter-spacing: 2.2px;
    top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-mainvisual__ttl .ttl-sub {
    font-size: 31px;
    font-size: 1.9375rem;
  }
}
.p-louisvitton89-mainvisual__ttl .ttl-main {
  display: block;
  color: #d5c4b3;
  font-size: 32px;
  font-size: 2rem;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__ttl .ttl-main {
    font-size: 55px;
    font-size: 3.4375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-mainvisual__ttl .ttl-main {
    font-size: 65px;
    font-size: 4.0625rem;
  }
}
.p-louisvitton89-mainvisual__ttl .ttl-main .num {
  display: inline-block;
  font-size: 200%;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(155deg, #ffffff 0%, #ffffff 50%, #d5c4b3 50%, #d5c4b3 100%);
  color: transparent;
  line-height: 1;
}
.p-louisvitton89-mainvisual__ttl .ttl-main .percent {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
.p-louisvitton89-mainvisual__ttl .ttl-main .big {
  display: inline-block;
  font-weight: bold;
}
.p-louisvitton89-mainvisual__ttl .text {
  display: inline-block;
  color: #cecece;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__ttl .text {
    font-size: 23px;
    font-size: 1.4375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-mainvisual__ttl .text {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-louisvitton89-mainvisual__ttl .text .in{
  display: inline-block;
  vertical-align: baseline;
  letter-spacing: -3px;
}
.p-louisvitton89-mainvisual__ttl .text .line{
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  display: inline-block;
  padding-bottom: 1px;
  font-size: 115%;
  font-weight: normal;
  margin-left: 5px;
  vertical-align: baseline;
}
.p-louisvitton89-mainvisual__ttl .text .line .num{
  font-size: 150%;
  font-weight: 500;
  line-height: 0.5;
  display: inline-block;
  vertical-align: baseline;
}
.p-louisvitton89-mainvisual__line {
  color: #ffffff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 4px 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-mainvisual__line {
    margin: 8px 0 0;
  }
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__line {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-mainvisual__line {
    font-size: 21px;
    font-size: 1.3125rem;
  }
}
.p-louisvitton89-mainvisual__line .icon-line {
  display: inline-block;
  vertical-align: middle;
  padding: 5px 10px;
  margin-right: 10px;
  background: #00B900;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__line .icon-line {
    padding: 10px 15px;
  }
}
.p-louisvitton89-mainvisual__list {
  margin: 20px auto 0;
  width: 90%;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__list {
    margin: 16px 0 0;
    width: 100%;
  }
}
.p-louisvitton89-mainvisual__list .item {
  position: relative;
  padding-left: 15px;
  color: #ffffff;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-mainvisual__list .item {
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.8;
    margin-top: 10px;
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-mainvisual__list .item {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.p-louisvitton89-mainvisual__list .item::before {
  content: '※';
  position: absolute;
  top: 0;
  left: 0;
}

.p-louisvitton89-main-btn {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-main-btn {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-main-btn__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;
  }
}
.p-louisvitton89-main-btn__item {
  padding-bottom: 20px;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-main-btn__item {
    padding: 0 10px;
    max-width: 380px;
  }
}
.p-louisvitton89-main-btn__item:last-of-type {
  padding-bottom: 0;
}

.p-louisvitton89-contact__in {
  border: 2px solid #b32048;
  border-top: 4px double #b32048;
  border-bottom: 4px double #b32048;
  text-align: center;
  padding: 25px 10px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-contact__in {
    padding: 30px 10px;
  }
}
.p-louisvitton89-contact__in .ttl {
  display: inline-block;
  padding: 0 15px;
  position: relative;
  font-size: 15px;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-contact__in .ttl {
    font-size: 17px;
    font-size: 1.0625rem;
  }
}
.p-louisvitton89-contact__in .ttl::before {
  content: '';
  transform: rotate(337deg);
  display: block;
  width: 1px;
  height: 30px;
  background: #000000;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
}
.p-louisvitton89-contact__in .ttl::after {
  content: '';
  transform: rotate(-337deg);
  display: block;
  width: 1px;
  height: 30px;
  background: #000000;
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
}
.p-louisvitton89-contact__in .contact {
  display: block;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-contact__in .contact {
    padding: 15px 0;
  }
}
.p-louisvitton89-contact__in .contact .in {
  display: inline-block;
  color: #c0af9f;
  font-weight: bold;
  padding-left: 30px;
  background: url(/images_22/common/icon_tel-beige.svg) no-repeat center left;
  background-size: 25px 25px;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Noto Serif JP", "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
  font-size: 35px;
  font-size: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-contact__in .contact .in {
    background-size: 50px 50px;
    padding-left: 60px;
    font-size: 70px;
    font-size: 4.375rem;
  }
}
.p-louisvitton89-contact__in .data {
  display: inline-block;
  width: 100%;
  max-width: 460px;
  padding: 10px;
  background: #b32048;
  color: #ffffff;
  font-size: 13px;
  font-size: 0.8125rem;
  padding: 7px 10px;
}

.p-louisvitton89-check {
  background: #e5e5e5;
  padding: 30px 0;
}
.p-louisvitton89-check__in {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-check__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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
}
.p-louisvitton89-check__in .text {
  display: block;
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 17px;
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-check__in .text {
    font-size: 30px;
    font-size: 1.875rem;
    padding-bottom: 0;
    padding-right: 20px;
  }
}
.p-louisvitton89-check__in .text .in {
  color: #b32048;
  display: inline-block;
  padding: 5px;
}
.p-louisvitton89-check__in .text .big {
  font-size: 150%;
}
.p-louisvitton89-check__in .btn {
  width: 100%;
  max-width: 320px;
}

.p-louisvitton89-nav {
  padding: 30px 0;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-nav {
    padding: 50px 0;
  }
}
.p-louisvitton89-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;
  max-width: 1080px;
  margin: auto;
}
.p-louisvitton89-nav__item {
  width: 50%;
  padding: 0 5px 30px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-nav__item {
    width: 33.3%;
    padding: 0 5px 20px;
  }
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-nav__item {
    width: calc(100% / 4);
  }
}
@media screen and (min-width: 1200px) {
  .p-louisvitton89-nav__item {
    width: calc(100% / 4);
  }
}
.p-louisvitton89-nav__item .btn {
  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;
  border: 1px solid #9C866D;
  padding: 10px;
  background-color: #d1c0a5;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2QxYzBhNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M0YWU4ZCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #d1c0a5), color-stop(100%, #c4ae8d));
  background-image: -moz-linear-gradient(top, #d1c0a5 0%, #c4ae8d 100%);
  background-image: -webkit-linear-gradient(top, #d1c0a5 0%, #c4ae8d 100%);
  background-image: linear-gradient(to bottom, #d1c0a5 0%, #c4ae8d 100%);
  min-height: 67px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-nav__item .btn {
    padding: 14px 10px;
  }
}
.p-louisvitton89-nav__item .btn::before {
  content: "";
  display: block;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #ffffff;
  position: absolute;
  top: 0;
  left: 0;
}
.p-louisvitton89-nav__item .btn:after {
  content: '';
  width: 10px;
  height: 10px;
  border-left: 2px solid #000000;
  border-bottom: 2px solid #000000;
  position: absolute;
  left: calc(50% - 5px);
  bottom: -15px;
  transform: rotate(315deg);
}
.p-louisvitton89-nav__item .btn .img {
  width: 40px;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-nav__item .btn .img {
    width: 60px;
  }
}
.p-louisvitton89-nav__item .btn .in {
  width: calc(100% - 40px);
  color: #000000;
  font-weight: bold;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.1;
}
@media screen and (min-width: 576px) {
  .p-louisvitton89-nav__item .btn .in {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-nav__item .btn .in {
    width: calc(100% - 60px);
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-nav__item .btn .in {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-louisvitton89-nav__item .btn .in .color {
  color: #b32048;
  font-size: 120%;
}

.p-louisvitton89-box__in {
  background: #e5e5e5;
  padding: 20px 4px 10px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-box__in {
    padding: 20px 10px 10px;
  }
}
.p-louisvitton89-box__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;
  padding-bottom: 5px;
  border-bottom: 1px solid #5c3810;
  margin-bottom: 20px;
}
.p-louisvitton89-box__ttl .img {
  width: 85px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-box__ttl .img {
    width: 100px;
    padding-right: 15px;
  }
}
.p-louisvitton89-box__ttl .text {
  width: calc(100% - 85px);
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-box__ttl .text {
    width: calc(100% - 165px);
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-louisvitton89-box__ttl .text .in {
  color: #b32048;
}
.p-louisvitton89-box__ttl .text .in .big {
  font-size: 150%;
}
.p-louisvitton89-box__list {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-auto-rows: minmax(auto, auto);
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-box__list {
    grid-template-columns: 25% 25% 25% 25%;
    grid-auto-rows: minmax(auto, auto, auto, auto);
  }
}
.p-louisvitton89-box__item {
  padding: 0 5px 30px;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .p-louisvitton89-box__item {
    padding: 0 10px 30px;
  }
}
.p-louisvitton89-box__btn {
  padding: 30px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-box__btn {
    padding: 50px 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;
  }
}
.p-louisvitton89-box__btn .louisvitton89-btn {
  margin: 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-box__btn .louisvitton89-btn {
    margin: 0 15px 5px;
  }
}

.p-louisvitton89-item {
  background: #ece4d9;
  height: 100%;
  position: relative;
  padding: 0 0 70px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item {
    padding: 0 0 80px;
  }
}
.p-louisvitton89-item__photo {
  background: #ffffff;
  padding: 10px;
  text-align: 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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  min-height: 160px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__photo {
    min-height: 210px;
  }
}
.p-louisvitton89-item__photo img {
  display: inline-block;
  width: 100%;
  width: auto;
  max-height: 190px;
  max-width: 100%;
}
.p-louisvitton89-item__ritu {
  display: block;
  width: 100%;
  padding: 5px;
  background: #d1c0a5;
  font-weight: bold;
}
.p-louisvitton89-item__ritu .color {
  color: #b32048;
}
.p-louisvitton89-item__data {
  background: #ece4d9;
  padding: 15px 4px 5px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__data {
    padding: 15px 10px;
  }
}
.p-louisvitton89-item__ttl {
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__ttl {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
  }
}
.p-louisvitton89-item__num {
  font-size: 12px;
  font-size: 0.75rem;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__num {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-louisvitton89-item__icon {
  padding-bottom: 5px;
  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;
}
.p-louisvitton89-item__icon .icon {
  display: inline-block;
  min-width: 115px;
  padding: 0 5px;
  margin: 5px auto 0;
  border: 1px solid #5c3810;
  line-height: 1.5;
}
.p-louisvitton89-item__icon .icon .in {
  display: inline-block;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__icon .icon .in {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-louisvitton89-item__icon .icon.type1 {
  background: #5c3810;
  color: #ffffff;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__icon .icon.type1 {
    width: 78%;
  }
}
.p-louisvitton89-item__icon .icon.type2 {
  color: #000000;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__icon .icon.type2 {
    width: 78%;
  }
}
.p-louisvitton89-item__pay {
  padding: 8px 5px;
  background: #c03759;
  font-weight: bold;
  color: #ffffff;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  bottom: 21px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__pay {
    font-size: 30px;
    font-size: 1.875rem;
    padding: 5px;
    bottom: 26px;
  }
}
.p-louisvitton89-item__pay .mini {
  font-size: 50%;
}
.p-louisvitton89-item__pay-tei {
  color: #b32048;
  padding: 4px;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1;
  background: #e5e5e5;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-item__pay-tei {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 6px 10px;
  }
}

.p-louisvitton89-textarea {
  margin: 30px auto 70px;
}

.p-louisvitton89-textarea--title {
  letter-spacing: .05rem;
}

.p-louisvitton89-textarea--list {
  background-color: #e5e5e5;
  margin: 20px auto;
  padding: 20px 2vw;
}
.p-louisvitton89-textarea--list li {
  border-bottom: 1px dotted #fff;
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  padding: 8px 5px;
  position: relative;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-textarea--list li {
    font-size: 16px;
    font-size: 1rem;
    padding: 4px 5px;
  }
}
.p-louisvitton89-textarea--list li .red {
  color: #c03759;
  font-size: 120%;
}
.p-louisvitton89-textarea--list li .detail {
  margin: 0 0 0 5px;
}

.p-louisvitton89-textarea--att {
  font-size: 11px;
  font-size: 0.6875rem;
  margin: auto;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-louisvitton89-textarea--att {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.readmore {
  position: relative;
  box-sizing: border-box;
}

.readmore-content {
  position: relative;
  overflow: hidden;
  height: 60px;
}

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

.readmore-label {
  display: table;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 6px auto 0;
  z-index: 2;
  padding: 0 10px;
  background-color: #b32048;
  border-radius: 10px;
  color: #FFF;
}

.readmore-label:before {
  content: '続きを読む';
}

.readmore-check {
  display: none;
}

.readmore-check:checked ~ .readmore-label {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.readmore-check:checked ~ .readmore-label:before {
  content: '閉じる';
}

.readmore-check:checked ~ .readmore-content {
  height: auto;
}

.readmore-check:checked ~ .readmore-content::before {
  display: none;
}

.following {
  background: rgb(143,93,38);
  background: linear-gradient(0deg, rgba(143,93,38,1) 0%, rgba(92,56,16,1) 50%);
  box-shadow: 2px 2px 2px rgba(203,203,203,.5);
  position: fixed;
  z-index: 10;
  transition: .4s;
  width: 100%;
  padding: 60px 0 0;
}
@media screen and (min-width: 768px) {
  .following {
    background: rgba(65,65,65,.4);
    box-shadow: 2px 2px 2px rgba(203,203,203,.5);
    padding: 0;
  }
}
.floatmenu.p-louisvitton89-nav {
  padding: 2px 0;
}
.floatmenu .p-louisvitton89-nav__list {
  max-width: none;
  margin: auto;
}
.floatmenu .p-louisvitton89-nav__item {
  width: calc(100% / 7);
  padding: 0 5px 0px;
}
.floatmenu .p-louisvitton89-nav__item .btn .in {
  width: 100%;
  font-size: 13px;
  line-height: 1.1;
}
.floatmenu .p-louisvitton89-nav__item .btn .img {
  display: none;
}
@media screen and (min-width: 1200px) {
  .floatmenu .p-louisvitton89-nav__item .btn .img {
    display: block;
  }
}
.floatmenu .p-louisvitton89-nav__item .btn {
  padding: 0 10px;
  min-height: 54px;
  text-align: center;
}
.floatmenu .p-louisvitton89-nav__item .btn:after {
  content: '';
  width: 5px;
  height: 5px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
  position: absolute;
  left: calc(50% - 5px);
  bottom: 5px;
  transform: rotate(315deg);
}
.floatmenu .p-louisvitton89-nav__category {
  text-align-last: center;
}
.floatmenu .p-louisvitton89-nav__category a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
}
.floatmenu .p-louisvitton89-nav__category a::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  display: block;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: .4s;
  z-index: 10;
}
.floatmenu .p-louisvitton89-nav__list {
  display: none;
}
@media screen and (min-width: 980px) {
  .floatmenu .p-louisvitton89-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;
  }
}

#chatplusview, chat {
  position: relative;
  z-index: 1;
}
/* =========================================================
followbtn
========================================================= */
.c-followbtn {
  background: #efece4;
  background: linear-gradient(0deg, #efece4 80%, rgba(239, 236, 228, 0) 80%);
  position: fixed;
  bottom: 0;
  width: 100vw;
}
.c-followbtn_list {
  display: flex;
  max-width: 768px;
  margin: auto;
}
.c-followbtn_list > li {
  padding: 0 5px;
  width: calc(100% / 3);
}
.c-followbtn_list > li a {
  display: block;
  padding: 0 0 6px;
}
