@charset "UTF-8";
/*----------------------------------------------------

	読み込み専用のマスターファイルです。
	このファイルに直接スタイルを書き込まないでください。

----------------------------------------------------*/
/**
 * ▼ カラートークン
 *
 * - $primary-color:
 *   サイト全体で共通して使用する基準色。
 */
/**
 * ▼ メディアクエリ用ブレイクポイント
 *
 * - $bp-sp:
 *   スマホの上限幅（例: ~767px）
 * - $bp-tab:
 *   タブレットの上限幅（例: ~1023px）
 */
/**
 * ▼ メディアクエリミックスイン
 *
 * - media-pc:
 *   PC向けのスタイルを適用するためのメディアクエリ。
 * - media-tab:
 *   タブレット向けのスタイルを適用するためのメディアクエリ。
 * - media-sp:
 *   スマホ向けのスタイルを適用するためのメディアクエリ。
 */
/**
 * ▼ fluidスケーリングに関する設定
 *
 * - $fluid-vw-min / $fluid-vw-max:
 *   clamp()で滑らかに変化させる際のビューポート最小・最大値。
 *   → 通常はスマホ〜PCの幅（375〜1280pxなど）を想定。
 */
/**
 * ▼ fluid()
 *
 * - clamp()を生成するSass関数。
 * - 引数に最小サイズ・最大サイズを渡すことで、
 *   指定したビューポート範囲内で値を滑らかに変化させる。
 *
 * 使用例:
 *   font-size: fluid(14, 20);
 */
/**
 * @function vw-○○()
 * 指定されたサイズを基準に、ビューポート幅に応じたvw単位の値を計算します。
 * 
 * @param {Number} $size - 基準となるサイズ（ピクセル単位）。
 * @param {Number} $viewport - ビューポートの幅（デフォルトは1920px, 768px, 375px）。
 * @return {String} - 計算されたvw単位の値。
 */
:root {
  --color-base-black: #000000;
  --colorGray: #909090;
  --border-gray: #EBEBEB;
}

:root {
  --content-max: 650px;
  /* SP本文幅の上限 */
  --side-max: 100%;
  /* サイドの想定幅（必要なら調整） */
  --frame-gap: 0px;
  /* 余白 */
}

/* SP（〜650px）：本文だけ */
.site-frame {
  display: block;
  width: 100%;
  background-color: #FFF674;
}

.site-main {
  max-width: var(--content-max);
  margin: 0 auto;
  background-color: #fff;
}

.site-side {
  display: none;
}

@media (min-width: 1200px) {
  .site-side {
    display: block;
    height: 100vh;
  }
  .site-frame {
    display: grid;
    grid-template-columns: 1fr var(--content-max) 1fr;
  }
  header nav {
    display: none;
  }
}
/* PC（651px〜）：左右サイド＋本文650px */
/* ===== ここから上書き（HTML変更なし） ===== */
@media (min-width: 651px) {
  /* グリッドの行の高さ揃え（stickyを効かせやすく） */
  .site-frame {
    align-items: start;
  }
  .site-side__inner {
    padding: 0 !important;
    position: fixed;
  }
  /* 余計なstickyを無効化して、fixedだけで制御 */
  .site-side__inner {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: calc((100vw - var(--content-max)) / 2);
  }
  .site-side__inner--left .side-image {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .site-side__inner--left .box {
    width: 70%;
    margin: 15px auto;
    text-align: center;
  }
  .site-side__inner--left .box p.side-text {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    line-height: 35px;
    margin: 20px 0;
  }
  .site-side__inner--left .box .tel {
    color: #FF0000;
    font-weight: bold;
    text-align: center;
    font-size: 40px;
  }
  .site-side__inner--left .box p.side-text--sub {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
    margin: 10px 0;
  }
  .fixed-menu ul {
    display: none !important;
  }
  .content-menu {
    display: none;
  }
}
main {
  background-color: #fff;
}

/* （任意）サイドに画像や箱を置くときのベース */
.side-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.side-box {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
  font-size: 10px;
  margin: 0 !important;
}
@media (max-width: 1000px) {
  html {
    font-size: 1vw;
    /* 10px / 1000px * 100 */
  }
}
@media (max-width: 767px) {
  html {
    font-size: 2.6667vw;
    /* 10px / 375px * 100 */
  }
}

body {
  color: var(--color-base-black);
  line-height: 1.15;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  background: #fff;
  transition: background-color 0.8s ease, color 0.8s ease;
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  vertical-align: bottom;
}

@media (min-width: 651px) {
  .top-btn img {
    left: calc(50vw + 325px - 50px - 16px);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ===== inner ===== */
.inner {
  padding: 0 2.5rem;
}
@media (min-width: 1024px) {
  .inner {
    margin: 0 auto;
  }
}

@media (min-width: 651px) {
  .inner {
    padding: 0 5rem;
  }
}
/* ===== 赤文字 ===== */
.color-red {
  color: #FF0000;
}

/* ===== 太文字 ===== */
.font-bold {
  font-weight: bold;
}

/* ===== sectionタイトル ===== */
.sec-title {
  position: relative;
  margin: 0 auto;
}
.sec-title::before {
  position: absolute;
  content: "";
  width: 209px;
  height: 1px;
  background: #000;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
.sec-title img {
  display: block;
  width: 60px;
  margin: 20px auto;
}
.sec-title h2 {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  padding-bottom: 15px;
}

@media (min-width: 650px) {
  .sec-title img {
    width: 111px;
  }
  .sec-title h2 {
    font-size: 28px;
    line-height: 38px;
  }
}
/* ===== タイトル下テキスト ===== */
.sec-text {
  font-size: 16px;
  text-align: center;
  margin: 20px 0 40px;
}

/* ===== 下層ページ共通テキストセクション ===== */
#text-section {
  background-color: #FFEE00;
  text-align: center;
  padding: 50px 0;
}
#text-section h3 {
  font-size: 22px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}
#text-section p {
  font-size: 16px;
  line-height: 32px;
}
#text-section p strong {
  font-size: 18px;
  font-weight: bold;
}

/* ===== 取扱品目の正方形カード ===== */
.item-section-list li {
  width: calc(25% - 4px) !important;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.item-section-list li img {
  width: 100%;
  height: auto;
  display: block;
}
.item-section-list li p {
  font-size: 13px !important;
  font-feature-settings: "palt";
  font-weight: bold;
  text-align: center;
  margin: 0 !important;
  padding: 0 !important;
}
.item-section-list li:nth-child(12) p {
  font-size: 11px !important;
}

/* ===== 404ページ ===== */
.page-404 {
  text-align: center;
  margin: 5rem 0 10rem;
}
.page-404 h2 {
  font-size: 2rem;
  font-weight: bold;
}
.page-404__text {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.page-404__sub {
  font-size: 1.4rem;
  margin: 3rem 0 5rem;
}

/* ===== アコーディオンの初期表示 ===== */
.acc-contents {
  display: none;
}

@media (min-width: 650px) {
  .sec-title::before {
    width: 418px;
  }
  .sec-text {
    font-size: 20px;
    line-height: 30px;
  }
}
/*--------------------------
	Reset
--------------------------*/
/**
 * Minified by jsDelivr using clean-css v5.3.3.
 * Original file: /npm/the-new-css-reset@1.8.0/css/reset.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a,
button {
  cursor: revert;
}

menu,
ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

pre {
  all: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}


/*--------------------------
	utility
--------------------------*/
/* ---------------
  btn-A
--------------- */
.btn-A {
  background: #FFEE00;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 5rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.45);
}

/* ---------------
  menu-banner
--------------- */
.menu-banner ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.menu-banner ul li {
  width: calc(33.3333333333% - 10px);
}
.menu-banner ul li a {
  font-size: clamp(1.4rem, 1.2vw, 2rem);
  font-weight: bold;
  color: #fff;
  line-height: 73px;
  display: block;
  text-align: center;
  border-radius: 8px;
  box-shadow: #000000 2px 2px 2px;
  width: 100%;
}
.menu-banner ul li:nth-child(1) a {
  background-color: #FF6E1A;
}
.menu-banner ul li:nth-child(2) a {
  background-color: #6CD51C;
}
.menu-banner ul li:nth-child(3) a {
  background-color: #CC5EDA;
}
.menu-banner.content-menu {
  position: relative;
  z-index: 1000;
  margin-top: -40px;
}

/* ---------------
  fixed-menu --追従ボタン
--------------- */
.fixed-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1000;
}
.fixed-menu.is-show {
  transform: translateY(0);
  opacity: 1;
}

/* ---------------
  top-btn --TOPへ戻る追従ボタン
--------------- */
.top-btn img {
  position: fixed;
  right: 5%;
  display: block;
  width: 50px;
  bottom: 90px;
}

/* ---------------
  お問い合わせフォームのボタン
--------------- */
.btn-area {
  text-align: center;
  margin-top: 3rem;
}
.btn-area input[type=submit] {
  width: 100%;
  background: #FFEE00;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  margin-top: 1.5rem;
}

.u-block {
  display: block !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-block-tab {
    display: block !important;
  }
}
@media (max-width: 767px) {
  body .u-block-sp {
    display: block !important;
  }
}
.u-inline {
  display: inline !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-inline-tab {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-sp {
    display: inline !important;
  }
}
.u-inline-block {
  display: inline-block !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-inline-block-tab {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-block-sp {
    display: inline-block !important;
  }
}
.u-flex {
  display: flex !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-flex-tab {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  body .u-flex-sp {
    display: flex !important;
  }
}
.u-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-inline-flex-tab {
    display: inline-flex !important;
  }
}
@media (max-width: 767px) {
  body .u-inline-flex-sp {
    display: inline-flex !important;
  }
}
.u-grid {
  display: grid !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-grid-tab {
    display: grid !important;
  }
}
@media (max-width: 767px) {
  body .u-grid-sp {
    display: grid !important;
  }
}
.u-hidden {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1023px) {
  body .u-hidden-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body .u-hidden-sp {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .u-is-pc {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-is-tab {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .u-is-tab {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .u-is-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-is-pc-tab {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .u-is-tab-sp {
    display: none !important;
  }
}

/*--------------------------
module
--------------------------*/
/* ===== TOPのKV ===== */
#kv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#kv .kv-frame {
  width: 100%;
  height: auto;
  display: block;
}
#kv .kv-frame:nth-child(1) {
  position: relative;
  z-index: 1;
  opacity: 1;
  animation: kv-flip 1.2s steps(1) infinite;
}
#kv .kv-frame:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  animation: kv-flip 1.2s steps(1) infinite;
  animation-delay: 0.6s;
}
@keyframes kv-flip {
  0% {
    opacity: 1;
  }
  65% {
    opacity: 1;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===== 下層ページのKV ===== */
#kv-lower-page {
  background-image: url("../images/first-time/kv.png");
  background-size: cover;
  background-position: center;
  height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#kv-lower-page h2 {
  color: #000;
  font-size: 40px;
  background-color: #FFF4D2;
  padding: 10px 0;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}
#kv-lower-page h2 span {
  display: block;
  font-size: 25px;
}

@media (min-width: 650px) {
  #kv-lower-page {
    height: 510px;
  }
}
header {
  position: relative;
  background-color: #FFEE00;
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  display: block;
  width: 125px;
  padding-bottom: 10px;
}

header nav {
  position: fixed;
  right: calc(50vw - var(--content-max) / 2 + 20px);
  z-index: 1100;
}
@media (max-width: 1200px) {
  header nav {
    right: max(20px, 50vw - var(--content-max) / 2 + 20px);
  }
}

header nav ul {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

header nav ul li a img {
  width: 40px;
  display: block;
}

/* ===== ハンバーガー本体 ===== */
.humberger_menu {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background-color: #000;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

/* 線 */
.humberger_menu span {
  width: 70%;
  height: 3px;
  background-color: #fff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* ×（バツ）への変形 */
.humberger_menu.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.humberger_menu.is-open span:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
  visibility: hidden !important;
}

.humberger_menu.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* メニュー（開閉アニメーション） */
.humberger_menu_ul {
  overflow-x: hidden;
  overflow-y: scroll;
  max-height: 0;
  opacity: 0;
  position: fixed;
  top: 66px;
  width: 100%;
  transform: translateY(-6px);
  transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
  z-index: 1050;
}

/* 開いた状態 */
.humberger_menu_ul.is-open {
  min-height: 100vh;
  opacity: 1;
  transform: translateY(0);
  background-color: #FFEE00;
  top: 0;
}

.humberger_menu_ul .humberger_menu_logo img {
  display: block;
  width: 125px;
  padding-bottom: 10px;
  margin: 10px;
}

.humberger_menu_ul .sns-icon {
  padding: 30px;
}

.humberger_menu_ul .sns-icon ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
  align-items: center;
}

.humberger_menu_ul .sns-icon ul li a img {
  height: 35px;
  width: auto;
}

.frame {
  margin-top: 10px;
}

.frame .frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* 共通行コンポーネント */
.frame .div,
.frame .div-2 {
  display: flex;
  width: 100%;
  padding: 12px 0;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.frame .div {
  border-bottom: 1px solid #ffc300;
}

.child-frame {
  border-bottom: 1px solid #ffc300;
  padding-bottom: 7px;
}
.child-frame .div {
  width: 42%;
  gap: 0.5rem;
  border-bottom: none;
  padding: 5px 0;
}

/* テキスト */
.frame .text-wrapper,
.frame .TOP {
  font-family: "Noto Sans JP-Medium", Helvetica;
  font-weight: 500;
  color: #000;
  font-size: 17px;
  line-height: 22px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

/* アイコン背景 */
.frame .vector-wrapper {
  width: 20px;
  height: 20px;
  padding: 6px;
  background-color: #ffc300;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* SVG */
.frame .vector {
  width: 8px;
  height: auto;
}

.footer h1 img {
  display: block;
  width: 168px;
  margin: 0 auto 22px auto;
}
.footer .info {
  margin-top: 4rem;
}
.footer .info p {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 10px;
}
.footer .footer-menu {
  margin: 25px auto;
  display: flex;
  justify-content: space-between;
}
.footer .footer-menu__list {
  width: 50%;
}
.footer .footer-menu__list li {
  font-size: 14px;
  line-height: 1.6;
  margin: 15px 0;
  font-weight: bold;
}
.footer .footer-menu__list ul li {
  margin: 0;
}
.footer .footer-content {
  background-color: #FFEE00;
  padding: 20px 0 120px 0;
  text-align: center;
}

.pc_side_menu {
  width: 75%;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 1px solid #FFEE00;
  border-radius: 12px;
  padding: 10px 5%;
}
.pc_side_menu .sns-icon ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}
.pc_side_menu .sns-icon ul img {
  width: 30px;
  height: auto;
}

.frame .text-wrapper,
.frame .TOP {
  font-size: clamp(1.2rem, 1vw, 1.8rem);
}

.frame .div {
  padding: 1rem 0 0.5rem;
}

.side_content-menu {
  width: 75%;
  margin: 0 auto;
}

.frame > .frame-wrapper:has(.child-frame) > a.div {
  border: none;
}

@media (min-width: 650px) {
  .footer .footer-menu__list li {
    font-size: 22px;
    line-height: 66px;
    font-weight: normal;
  }
  .footer .footer-menu__list li ul li {
    line-height: 39px;
    margin: 0;
  }
  .footer .footer-content {
    padding: 40px 0 60px 0;
  }
  .footer .footer-content .info {
    margin-top: 35px;
  }
  .footer .footer-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 20px;
  }
}
#line-application-section {
  background-image: url("../images/dot-bg.png");
  position: relative;
  top: 3rem;
  max-width: 650px;
  margin: 0 auto;
}
#line-application-section .content {
  background-size: cover;
  padding: 20px 0 60px 0;
  text-align: center;
}
#line-application-section .top-img {
  position: absolute;
  top: -7rem;
  left: 0;
  width: 100%;
  display: block;
}
#line-application-section h2 img {
  width: 80%;
  margin: 20px auto;
}
#line-application-section p {
  font-size: 16px;
  line-height: 1.6;
  padding-top: 10px;
  text-align: center;
}
#line-application-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px auto;
  align-items: center;
}
@media screen and (min-width: 651px) {
  #line-application-section ul {
    width: 350px;
  }
}

#tel-application-section {
  background-image: url("../images/dot-bg.png");
  background-size: cover;
  padding-bottom: 70px;
  position: relative;
}
#tel-application-section .tel-icon-img {
  display: block;
  width: 108px;
  position: absolute;
  top: 40px;
  right: 10px;
}
#tel-application-section .top-img {
  display: block;
  width: 100%;
}
#tel-application-section h2 {
  text-align: center;
}
#tel-application-section h2 img {
  width: 70%;
  margin: 20px auto;
}
#tel-application-section p {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
  text-align: center;
}
#tel-application-section .text-box p {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
#tel-application-section .text-box span {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}
#tel-application-section .text-box .tel-number a {
  color: #0037FF;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  display: block;
}
#tel-application-section .btn {
  display: flex;
  justify-content: center;
  padding: 15px;
  margin: 30px auto 0 auto;
  background-color: #FFEE00;
  color: #000;
  font-size: 17px;
  line-height: 17px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: #000000 2px 2px 2px;
  text-align: center;
  align-items: center;
}
#tel-application-section .btn span {
  margin-top: 0;
  margin-left: 10px;
}
#tel-application-section .btn img {
  display: block;
  width: 28px;
}
@media screen and (min-width: 651px) {
  #tel-application-section .btn {
    width: 350px;
  }
}
#tel-application-section .sns-banner {
  margin: 65px auto 0 auto;
}
#tel-application-section .sns-banner ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  justify-content: space-between;
}
#tel-application-section .sns-banner ul li {
  width: 49%;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 10px;
}
#tel-application-section .sns-banner ul li span {
  margin: 5px 0;
  display: block;
}
#tel-application-section .line {
  display: block;
  width: 225px;
  margin: 10px auto;
}

@media (min-width: 651px) {
  #line-application-section {
    top: 5rem;
  }
  #line-application-section .top-img {
    top: -12rem;
  }
  #line-application-section p {
    font-size: 28px;
    line-height: 44px;
  }
  #line-application-section .sns-banner ul li span {
    font-size: 22px;
    line-height: 29px;
  }
  #tel-application-section .line {
    width: 398px;
  }
  #tel-application-section p {
    font-size: 28px;
    line-height: 52px;
  }
  #tel-application-section .btn {
    font-size: 26px;
    margin: 60px auto 0 auto;
  }
  #tel-application-section .text-box {
    margin: 20px 0;
  }
  #tel-application-section .text-box p {
    font-size: 38px;
    line-height: 53px;
  }
  #tel-application-section .text-box .tel-number a {
    font-size: 82px;
    line-height: 86px;
  }
  #tel-application-section .text-box span {
    font-size: 31px;
    line-height: 39px;
  }
}
/*--------------------------
pages
--------------------------*/
.wrap-top {
  /* ------------------------------
   * movie-content
   * ------------------------------ */
}
.wrap-top .movie-content {
  background-image: url(../images/top/movie-bg.webp);
  height: 570px;
  background-size: cover;
  background-position: center;
  padding: 77px 0 0;
  margin-top: -62px;
  position: relative;
}
.wrap-top .movie-content h2 {
  text-align: center;
}
.wrap-top .movie-content .movie-content-title {
  width: 250px;
  margin: 0 auto;
}
.wrap-top .movie-content iframe {
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9.2;
  object-fit: cover;
  right: 0;
  left: 0;
  margin: 10px auto 0;
  border: 5px solid #00D512;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 650px) {
  .wrap-top .movie-content {
    height: 942px;
    padding: 82px 0 0;
    background-image: url(../images/top/movie-bg-pc.webp);
  }
  .wrap-top .movie-content iframe {
    margin: 20px auto 0;
  }
  .wrap-top .movie-content .movie-content-title {
    width: 435px;
  }
}
.wrap-top {
  /* ------------------------------
   * latest-buy
   * ------------------------------ */
}
.wrap-top .latest-buy {
  /* 背景の薄黄色はページ側で付ける想定 */
  padding: 50px 0;
  margin: 0 auto;
  background-color: #FFEE00;
}
.wrap-top .latest-buy .slick-list {
  overflow: hidden;
}
.wrap-top .latest-buy .slick-track {
  display: flex !important;
  align-items: stretch; /* 段差防止 */
}
.wrap-top .latest-buy .slick-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}
.wrap-top .latest-buy .slick-slide > div {
  display: flex;
  height: 100%;
  width: 100%;
}
.wrap-top .latest-buy .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.wrap-top .latest-buy {
  /* dots（slickの既定を上書き） */
}
.wrap-top .latest-buy .slick-dots {
  position: static;
  margin: 10px 0 0;
}
.wrap-top .latest-buy .slick-dots li {
  margin: 0 4px;
}
.wrap-top .latest-buy .slick-dots li button:before {
  font-size: 10px;
  color: #cfcfcf !important;
  opacity: 1;
}
.wrap-top .latest-buy .slick-dots li.slick-active button:before {
  color: #e60012 !important;
}
.wrap-top .latest-buy {
  /* PC */
}
@media (min-width: 650px) {
  .wrap-top .latest-buy {
    padding: 100px 0;
  }
  .wrap-top .latest-buy .slick-dots {
    margin: 20px 0;
  }
  .wrap-top .latest-buy .slick-dots li {
    margin: 0 8px;
  }
  .wrap-top .latest-buy .slick-dots li button:before {
    font-size: 19px !important;
  }
}
.wrap-top .latest-buy__panel {
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #e7e7e7;
}
.wrap-top .latest-buy__head {
  background: #e60012;
  color: #fff;
  text-align: center;
  padding: 16px 12px 14px;
}
.wrap-top .latest-buy__title {
  margin: 0;
  font-size: 22px;
  line-height: 32px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__title {
    font-size: 40px;
    line-height: 41px;
  }
}
.wrap-top .latest-buy__sub {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
  display: block;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__sub {
    font-size: 28px;
    line-height: 41px;
  }
}
.wrap-top .latest-buy__slider {
  position: relative;
  padding: 14px 5px 0;
}
@media (max-width: 360px) {
  .wrap-top .latest-buy__slider {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.wrap-top .latest-buy__item {
  padding: 0 3px 5px;
  display: flex;
  height: 100%;
  width: 100%;
}
.wrap-top .latest-buy__card {
  text-decoration: none;
  color: #111;
  border: 1px solid #dcdcdc;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  background: #fff;
  padding-bottom: 2px;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wrap-top .latest-buy__thumb {
  padding: 10px 10px 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.wrap-top .latest-buy__thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.wrap-top .latest-buy__name {
  margin: 8px 10px 6px;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  flex: 1 1 auto;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__name {
    font-size: 22px;
    line-height: 27px;
  }
}
.wrap-top .latest-buy__label,
.wrap-top .latest-buy__price {
  flex: 0 0 auto;
}
.wrap-top .latest-buy__label {
  display: block;
  width: 100px;
  background: #e60012;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__label {
    font-size: 22px;
    line-height: 27px;
    width: 153px;
    margin: 10px auto;
  }
}
.wrap-top .latest-buy__price {
  margin: 0 10px 12px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.wrap-top .latest-buy__priceNum {
  font-size: 21px;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__priceNum {
    font-size: 38px;
    line-height: 27px;
  }
}
.wrap-top .latest-buy__yen {
  font-size: 14px;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__yen {
    font-size: 22px;
    line-height: 27px;
  }
}
.wrap-top {
  /* 矢印（丸ボタン） */
}
.wrap-top .latest-buy__arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  z-index: 5;
  cursor: pointer;
}
.wrap-top .latest-buy__arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  margin: 0 auto;
}
.wrap-top .latest-buy__arrow--prev {
  left: 8px;
}
.wrap-top .latest-buy__arrow--prev::before {
  transform: rotate(-135deg);
}
.wrap-top .latest-buy__arrow--next {
  right: 8px;
}
.wrap-top .latest-buy__arrow--next::before {
  transform: rotate(45deg);
}
.wrap-top {
  /* CTA */
}
.wrap-top .latest-buy__cta {
  padding: 16px 16px 18px;
}
.wrap-top .latest-buy__btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #e60012;
  color: #fff;
  font-weight: 900;
  padding: 14px 10px;
  border-radius: 4px;
}
@media (min-width: 650px) {
  .wrap-top .latest-buy__btn {
    font-size: 25px;
    line-height: 63px;
  }
}
.wrap-top {
  /* ------------------------------
   * slider
   * ------------------------------ */
}
.wrap-top #slider {
  background-image: url("../images/top/slider-bg.webp");
  background-size: cover;
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.wrap-top #slider .slider {
  margin-inline: auto;
  width: 100%;
}
.wrap-top #slider .slick-track {
  display: flex !important;
}
.wrap-top #slider .slick-slide {
  height: auto;
  margin: 0 2.5px;
  display: flex;
}
.wrap-top #slider .slick-slide img {
  height: auto;
  width: 100%;
}
.wrap-top #slider .arrow_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.wrap-top #slider .prev-arrow,
.wrap-top #slider .next-arrow {
  display: block;
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: absolute;
  z-index: 999;
  transform: translateY(-50%);
  top: 45%;
}
.wrap-top #slider .prev-arrow::before,
.wrap-top #slider .next-arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  top: 0;
  bottom: 0;
  left: -1px;
  right: 0;
  margin: auto;
}
.wrap-top #slider .prev-arrow {
  left: 2%;
}
.wrap-top #slider .prev-arrow::before {
  transform: rotate(225deg);
}
.wrap-top #slider .next-arrow {
  right: 2%;
}
.wrap-top #slider .next-arrow::before {
  transform: rotate(45deg);
}
.wrap-top #slider .slick-dots {
  /* 既存の .slick-dots{bottom:-60px} が効く前提ならここで調整 */
  margin: 10px 0 0;
}
.wrap-top #slider .slick-dots li button:before {
  font-size: 11px !important;
  color: #3339B9 !important;
}
@media (min-width: 650px) {
  .wrap-top #slider .slick-dots {
    margin: 20px 0;
  }
  .wrap-top #slider .slick-dots li button:before {
    font-size: 23px !important;
  }
}
.wrap-top {
  /* ------------------------------
   * trust-section
   * ------------------------------ */
}
.wrap-top #trust-section {
  background-color: #FFEE00;
  padding: 20px 0 40px;
  position: relative;
}
.wrap-top #trust-section .anm-img img {
  display: block;
  width: 103px;
  position: absolute;
  top: -20px;
  right: 20px;
}
.wrap-top #trust-section .fly-char {
  display: block;
  width: 240px;
  transform-origin: 60% 60%;
  animation: floatY 1s ease-in-out infinite, roll 3s ease-in-out infinite;
  will-change: transform;
}
.wrap-top #trust-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}
.wrap-top #trust-section ul li img {
  display: block;
  width: 100%;
}
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes roll {
  0%, 100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wrap-top #trust-section .fly-char {
    animation: none;
  }
}
@media (min-width: 650px) {
  .wrap-top #trust-section {
    padding: 40px 0 80px;
  }
  .wrap-top #trust-section .anm-img img {
    width: 207px;
    top: -50px;
  }
}
.wrap-top {
  /* ------------------------------
   * understanding-section
   * ------------------------------ */
}
.wrap-top #understanding-section {
  background-color: rgba(255, 238, 0, 0.3);
  padding: 10px 0 60px;
  text-align: center;
  position: relative;
}
.wrap-top #understanding-section .anm-img img {
  display: block;
  width: 100px;
  position: absolute;
  top: 120px;
  right: 10px;
}
.wrap-top #understanding-section .cheer-fairy {
  display: block;
  width: 200px;
  transform-origin: 50% 65%;
  animation: swayX 1.5s ease-in-out infinite, bobY 1.3s ease-in-out infinite;
}
@keyframes swayX {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(8deg);
  }
  75% {
    transform: rotate(-8deg);
  }
}
@keyframes bobY {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}
.wrap-top #understanding-section p {
  font-size: 16px;
  line-height: 1.6;
  padding-top: 20px;
}
@media (min-width: 650px) {
  .wrap-top #understanding-section p {
    font-size: 20px;
    line-height: 33px;
  }
}
.wrap-top #understanding-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}
.wrap-top #understanding-section ul li img {
  display: block;
  width: 100%;
}
@media (min-width: 650px) {
  .wrap-top #understanding-section .anm-img img {
    width: 158px;
    top: 86px;
  }
}
.wrap-top {
  /* ------------------------------
   * usage-menu-section
   * ------------------------------ */
}
.wrap-top #usage-menu-section {
  background-image: url("../images/dot-v2-bg.png");
  background-size: cover;
  padding: 10px 0 60px;
  text-align: center;
  position: relative;
}
.wrap-top #usage-menu-section .anm-img img {
  display: block;
  width: 108px;
  position: absolute;
  top: -30px;
  left: 12px;
}
.wrap-top #usage-menu-section .magic-fairy {
  display: block;
  width: 240px;
  transform-origin: 60% 60%;
  animation: floatDiagonal 1.7s ease-in-out infinite, rollMagic 2.4s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatDiagonal {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(24px, -20px);
  }
}
@keyframes rollMagic {
  0%, 100% {
    rotate: -4deg;
  }
  50% {
    rotate: 6deg;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wrap-top #usage-menu-section .magic-fairy {
    animation: none;
  }
}
.wrap-top #usage-menu-section p {
  font-size: 16px;
  line-height: 1.6;
  padding-top: 20px;
}
@media (min-width: 650px) {
  .wrap-top #usage-menu-section p {
    font-size: 20px;
    line-height: 33px;
  }
}
.wrap-top #usage-menu-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
  justify-content: center;
}
.wrap-top #usage-menu-section ul li {
  width: calc(50% - 5px);
}
.wrap-top #usage-menu-section ul a {
  width: 100%;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  line-height: 73px;
  display: block;
  text-align: center;
  border-radius: 8px;
  box-shadow: #000 2px 2px 2px;
  height: 75px;
  background-color: #FFAA00;
}
@media (min-width: 650px) {
  .wrap-top #usage-menu-section .anm-img img {
    width: 216px;
    top: 47px;
  }
  .wrap-top #usage-menu-section ul {
    margin: 88px 0;
  }
  .wrap-top #usage-menu-section ul li a {
    height: 118px;
    line-height: 118px;
    font-size: 28px;
  }
}
.wrap-top {
  /* ------------------------------
   * plan-banner-section
   * ------------------------------ */
}
.wrap-top #plan-banner-section {
  background-image: url("../images/dot-bg.png");
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}
.wrap-top #plan-banner-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0;
}
.wrap-top #plan-banner-section ul li img {
  display: block;
  width: 100%;
}
.wrap-top {
  /* ------------------------------
   * store-info-section
   * ------------------------------ */
}
.wrap-top #store-info-section {
  background-color: #FFEE00;
  padding: 40px 0 60px;
}
.wrap-top #store-info-section h2 {
  text-align: center;
}
.wrap-top #store-info-section h2 img {
  width: 80%;
}
.wrap-top #store-info-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 21px 0;
}
.wrap-top #store-info-section ul li {
  display: block;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: #000 2px 2px 2px;
}
.wrap-top #store-info-section ul li img {
  width: 100%;
}
.wrap-top #store-info-section ul li span {
  display: block;
  width: 100%;
  height: 28px;
  background-color: #E40707;
  border-radius: 4px 4px 0 0;
}
.wrap-top #store-info-section ul li:nth-child(1) span {
  position: relative;
}
.wrap-top #store-info-section ul li .text {
  padding: 10px 0 0;
}
.wrap-top #store-info-section ul li .text h3 {
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0 5px;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-top #store-info-section ul li .text h3 {
    font-size: 33px;
    line-height: 52px;
  }
}
.wrap-top #store-info-section ul li .text .tel {
  font-size: 34px;
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-top #store-info-section ul li .text .tel {
    font-size: 57px;
    line-height: 38px;
  }
}
.wrap-top #store-info-section ul li .text table {
  width: 90%;
  margin: 0 auto;
}
.wrap-top #store-info-section ul li .text table tr {
  display: flex;
  padding: 4px 0;
  justify-content: center;
  align-items: center;
}
.wrap-top #store-info-section ul li .text table th {
  font-size: 16px;
  line-height: 1.6;
  height: 28px;
  background-color: #E40707;
  text-align: center;
  color: #fff;
  width: 20%;
}
@media (min-width: 650px) {
  .wrap-top #store-info-section ul li .text table th {
    font-size: 22px;
    height: 48px;
    line-height: 48px;
  }
}
.wrap-top #store-info-section ul li .text table td {
  display: block;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid #000;
  margin-left: 10px;
  width: 80%;
}
@media (min-width: 650px) {
  .wrap-top #store-info-section ul li .text table td {
    font-size: 22px;
    line-height: 72px;
  }
}
.wrap-top #store-info-section ul li .map {
  margin: 10px auto 0;
  width: 90%;
  height: 180px;
}
@media (min-width: 650px) {
  .wrap-top #store-info-section ul li .map {
    height: 240px;
    margin: 30px auto;
  }
  .wrap-top #store-info-section ul li .map iframe {
    height: 100%;
    width: 100%;
  }
}
.wrap-top #store-info-section .anm-img img {
  width: 118px;
  height: 100px;
}
.wrap-top {
  /* ------------------------------
   * what-section
   * ------------------------------ */
}
.wrap-top #what-section {
  background-image: url("../images/top/what-info-bg.webp");
  background-size: cover;
  background-position: bottom;
  padding: 40px 0 80px;
  text-align: center;
}
.wrap-top #what-section h2 img {
  width: 50%;
  margin: 0 auto;
}
.wrap-top #what-section p {
  font-size: 15px;
  line-height: 1.7;
  padding-top: 40px;
}
.wrap-top #what-section p span {
  font-size: 21px;
  line-height: 1.7;
  font-weight: bold;
  display: block;
}
.wrap-top #what-section .box {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 15px;
  margin: 30px 0 0;
}
.wrap-top #what-section .box h3 {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  color: #1CBC90;
}
.wrap-top #what-section .box ul {
  margin-top: 10px;
}
.wrap-top #what-section .box ul li {
  font-size: 15px;
  line-height: 30px;
  text-align: left;
  display: flex;
  align-items: center;
}
.wrap-top #what-section .box ul li::before {
  content: "◼︎";
  color: #1CBC90;
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  margin-right: 6px;
}
.wrap-top #what-section a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 50px auto 0;
  background-color: #1CBC90;
  color: #fff;
  font-size: 17px;
  line-height: 60px;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: #000 2px 2px 2px;
}
.wrap-top #what-section a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5px;
  background-image: url("../images/top/group-icon.svg");
}
.wrap-top #what-section a span {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-top: 5px;
}
.wrap-top #what-section {
  /* PC */
}
@media (min-width: 650px) {
  .wrap-top #what-section {
    padding: 60px 0 100px;
  }
  .wrap-top #what-section p {
    font-size: 22px;
    line-height: 46px;
  }
  .wrap-top #what-section p span {
    font-size: 28px;
    line-height: 51px;
  }
  .wrap-top #what-section .box {
    padding: 15px 0;
  }
  .wrap-top #what-section .box h3 {
    font-size: 30px;
    line-height: 45px;
  }
  .wrap-top #what-section .box ul li {
    font-size: 26px;
    line-height: 63px;
  }
  .wrap-top #what-section .box ul li::before {
    font-size: 45px;
    line-height: 63px;
  }
  .wrap-top #what-section a {
    width: 350px;
    height: 69px;
    font-size: 25px;
  }
  .wrap-top #what-section a::after {
    margin-left: 20px;
  }
}
.wrap-top {
  /* ------------------------------
   * global slick dots (必要なら)
   * ------------------------------ */
}
.wrap-top .slick-dots {
  bottom: -60px;
}
.wrap-top .slick-dots li {
  margin: 0 20px;
}

/*---------------------------------------------
*
* はじめての方へ
*　/first_time/
*
---------------------------------------------*/
.wrap-page-first_time {
  /* ------------------------------
   * kv
   * ------------------------------ */
}
.wrap-page-first_time #kv-lower-page h2 {
  margin-top: 15px;
}
.wrap-page-first_time {
  /* ------------------------------
   * promise
   * ------------------------------ */
}
.wrap-page-first_time #promise-section {
  overflow: hidden;
  background: linear-gradient(to bottom, rgb(255, 238, 0) 0%, rgba(255, 238, 0, 0.2) 100%);
  padding: 10px 0 60px;
  position: relative;
}
.wrap-page-first_time #promise-section .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  margin: 50px auto;
}
@media (min-width: 650px) {
  .wrap-page-first_time #promise-section .content ul {
    gap: 50px;
  }
}
.wrap-page-first_time #promise-section .content ul li {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.45);
}
.wrap-page-first_time #promise-section .content ul li img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -15px;
}
@media (min-width: 650px) {
  .wrap-page-first_time #promise-section .content ul li img {
    margin-top: -22px;
  }
}
.wrap-page-first_time #promise-section .content ul li .box img {
  margin: 20px auto;
  height: 65px;
  width: auto;
}
@media (min-width: 650px) {
  .wrap-page-first_time #promise-section .content ul li .box img {
    height: 112px;
    margin: 34px auto;
  }
}
.wrap-page-first_time #promise-section .content ul li .text {
  font-size: 15px;
  line-height: 30px;
  padding: 0 22px 20px;
}
.wrap-page-first_time #promise-section .content ul li .text strong {
  font-size: 18px;
  color: #FF0000;
  font-weight: bold;
}
@media (min-width: 650px) {
  .wrap-page-first_time #promise-section .content ul li .text {
    font-size: 22px;
    line-height: 46px;
    padding: 0 52px 50px;
  }
  .wrap-page-first_time #promise-section .content ul li .text strong {
    font-size: 28px;
    line-height: 50px;
  }
}
.wrap-page-first_time {
  /* ------------------------------
   * circle
   * ------------------------------ */
}
.wrap-page-first_time .circle {
  background-color: #fff;
  width: 110vw;
  height: 110vw;
  max-width: 500px;
  max-height: 500px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 15px 0;
}
@media (min-width: 650px) {
  .wrap-page-first_time .circle {
    max-width: 700px;
    max-height: 700px;
  }
}
.wrap-page-first_time .circle img {
  display: block;
  margin: 10px auto;
  width: 30px;
  height: auto;
}
@media (min-width: 650px) {
  .wrap-page-first_time .circle img {
    width: 50px;
  }
}
.wrap-page-first_time .circle h4 {
  color: #0112FF;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 10px 0;
}
@media (min-width: 650px) {
  .wrap-page-first_time .circle h4 {
    font-size: 33px;
    line-height: 57px;
  }
}
.wrap-page-first_time .circle p {
  font-size: 15px;
  line-height: 30px;
  padding: 0 40px;
  text-align: center;
}
.wrap-page-first_time .circle p strong {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 650px) {
  .wrap-page-first_time .circle p {
    font-size: 22px;
    line-height: 49px;
  }
  .wrap-page-first_time .circle p strong {
    font-size: 30px;
    line-height: 55px;
  }
}
.wrap-page-first_time {
  /* ------------------------------
   * item
   * ------------------------------ */
}
.wrap-page-first_time #item-section {
  background-color: #FFEE00;
  padding: 10px 0 40px;
  position: relative;
}
.wrap-page-first_time #item-section p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 15px 0;
}
@media (min-width: 650px) {
  .wrap-page-first_time #item-section p {
    font-size: 20px;
    line-height: 33px;
  }
}
.wrap-page-first_time #item-section .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.wrap-page-first_time #item-section .content .item-text {
  font-weight: bold;
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-first_time #item-section .content .item-text {
    font-size: 28px;
    line-height: 44px;
  }
}
.wrap-page-first_time {
  /* ------------------------------
   * where
   * ------------------------------ */
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section {
    padding: 50px 0 100px;
  }
}
.wrap-page-first_time #where-section p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section p {
    font-size: 20px;
    line-height: 33px;
  }
}
.wrap-page-first_time #where-section {
  /* ------------------------------
   * content（大きい3色カードの領域）
   * ------------------------------ */
}
.wrap-page-first_time #where-section .content {
  /* 旧: #where-section .content ul:nth-child(1) */
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .content > ul:nth-child(1) {
    gap: 100px;
  }
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li {
  border-radius: 4px;
  width: 100%;
  padding: 20px 5%;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li:nth-child(1) {
  background-color: #FF3A7F;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li:nth-child(2) {
  background-color: #6E3AFF;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li:nth-child(3) {
  background-color: #38C82B;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li h3 {
  text-align: center;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li h3 img {
  width: 205px;
  margin: -50px auto 0;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .content > ul:nth-child(1) > li h3 img {
    width: 355px;
    margin: -80px auto 0;
  }
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li {
  /*
   * 重要：ここが “詳細リストUL”
   * .trade-list の .point > ul と競合しないように、
   * こちらも明示的に > ul に限定しておく（事故防止）
   */
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li > ul {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li > ul > li {
  background-color: #fff;
  padding: 0;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li > ul > li h4 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin: 10px 0 5px;
}
.wrap-page-first_time #where-section .content > ul:nth-child(1) > li > ul > li p {
  font-size: 15px;
  line-height: 21px;
  text-align: left;
  margin: 10px;
  padding-bottom: 15px;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .content > ul:nth-child(1) > li > ul > li h4 {
    font-size: 33px;
    line-height: 39px;
    margin: 20px auto;
  }
  .wrap-page-first_time #where-section .content > ul:nth-child(1) > li > ul > li p {
    font-size: 22px;
    line-height: 39px;
    margin: 10px 20px;
  }
}
.wrap-page-first_time #where-section {
  /* ------------------------------
   * trade-list（point がある領域）
   * ------------------------------ */
}
.wrap-page-first_time #where-section .trade-list {
  padding: 20px 0 80px;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .trade-list {
    padding: 80px 0 80px;
  }
}
.wrap-page-first_time #where-section .trade-list li h3 {
  text-align: center;
}
.wrap-page-first_time #where-section .trade-list .point {
  /*
   * 重要：point の UL を “直下の ul のみ” に限定する（競合対策）
   * これで .content 側の ul には基本刺さらない
   */
}
.wrap-page-first_time #where-section .trade-list .point > ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 20px 0 10px;
  width: 100%;
}
.wrap-page-first_time #where-section .trade-list .point > ul > li {
  width: 67px;
  height: 67px;
  border-radius: 100%;
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
.wrap-page-first_time #where-section .trade-list .point > ul > li p {
  text-align: center;
  margin: 0;
  font-size: 15px;
  line-height: 18px;
  padding: 0;
}
.wrap-page-first_time #where-section .trade-list .point > ul > li p strong {
  color: #FF006F;
}
.wrap-page-first_time #where-section .trade-list .point > ul > li p span {
  font-size: 12px;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .trade-list .point > ul > li {
    width: 119px;
    height: 119px;
  }
}
.wrap-page-first_time #where-section .trade-list #trip-trade .point > ul > li p strong {
  color: #1500FF;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .trade-list #trip-trade .point > ul > li p strong {
    font-size: 30px;
    line-height: 33px;
  }
}
.wrap-page-first_time #where-section {
  /* ------------------------------
   * step
   * ------------------------------ */
}
.wrap-page-first_time #where-section .step p {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}
.wrap-page-first_time #where-section .step strong {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  line-height: 1;
  vertical-align: baseline;
  margin: 0 3px;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .step p {
    font-size: 37px;
  }
  .wrap-page-first_time #where-section .step strong {
    font-size: 67px;
  }
}
.wrap-page-first_time #where-section {
  /* ------------------------------
   * bottom-content
   * ------------------------------ */
}
.wrap-page-first_time #where-section .bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrap-page-first_time #where-section .bottom-content__text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .bottom-content__text {
    font-size: 28px;
  }
}
.wrap-page-first_time #where-section .bottom-content img {
  width: 7.3rem;
}
@media (min-width: 650px) {
  .wrap-page-first_time #where-section .bottom-content img {
    width: 126px;
  }
}
.wrap-page-first_time #where-section .bottom-content .tel-bnr {
  width: 100%;
  margin: 1.5rem 0;
}
.wrap-page-first_time #where-section .bottom-content .tel-bnr a {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #FFEE00;
  box-shadow: #000 2px 2px 2px;
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem 0;
}
.wrap-page-first_time #where-section .bottom-content .tel-bnr__num {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E3AFF;
  font-size: 3.3rem;
  font-weight: 900;
}
.wrap-page-first_time #where-section .bottom-content .tel-bnr__num svg {
  width: 2.2rem;
}
.wrap-page-first_time #where-section .bottom-content .tel-bnr__text {
  font-size: 1.5rem;
  font-weight: bold;
}
.wrap-page-first_time #where-section .bottom-content .mail-bnr {
  width: 100%;
}
.wrap-page-first_time #where-section .bottom-content .mail-bnr a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #FFEE00;
  box-shadow: #000 2px 2px 2px;
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem 0;
}
.wrap-page-first_time #where-section .bottom-content .mail-bnr__text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6E3AFF;
  font-size: 2.1rem;
  font-weight: 900;
}
.wrap-page-first_time #where-section .bottom-content .mail-bnr__text svg {
  width: 3rem;
}
.wrap-page-first_time #where-section .bottom-content.--ship .tel-bnr__num {
  color: #FF2081;
}
.wrap-page-first_time #where-section .bottom-content.--ship .tel-bnr svg path {
  fill: #FF2081;
}
.wrap-page-first_time #where-section .bottom-content.--ship .mail-bnr__text {
  color: #FF2081;
}
.wrap-page-first_time #where-section .bottom-content.--ship .mail-bnr svg path {
  fill: #FF2081;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr {
  width: 100%;
  margin: 1rem 0 2rem;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: #FFEE00;
  box-shadow: #000 2px 2px 2px;
  border-radius: 1rem;
  text-align: center;
  padding: 1.5rem 0;
  color: #FF006F;
  font-size: 2.5rem;
  font-weight: 900;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr__area {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr__small {
  font-size: 2rem;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr__logo {
  margin-right: 0.5rem;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr__logo svg {
  width: 7.5rem;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr__tel {
  margin-left: 1rem;
}
.wrap-page-first_time #where-section .bottom-content .line-bnr__tel svg {
  width: 3.1rem;
}
.wrap-page-first_time {
  /* ------------------------------
   * text-section（元コードにPC指定だけあったので回収）
   * ------------------------------ */
}
@media (min-width: 650px) {
  .wrap-page-first_time #text-section {
    padding: 100px 0;
  }
}
@media (min-width: 650px) {
  .wrap-page-first_time #text-section h3 {
    font-size: 30px;
    line-height: 46px;
  }
}
@media (min-width: 650px) {
  .wrap-page-first_time #text-section p {
    font-size: 22px;
    line-height: 52px;
    margin-top: 15px;
  }
  .wrap-page-first_time #text-section p strong {
    font-size: 28px;
    line-height: 52px;
  }
}

/*---------------------------------------------
*
* 無料相談
*  /free/
*
---------------------------------------------*/
.wrap-page-free #line-banner {
  background-color: rgba(255, 238, 0, 0.2);
  padding: 40px 0;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner {
    padding: 80px 0;
  }
}
.wrap-page-free #line-banner a {
  display: block;
  text-align: center;
}
.wrap-page-free #line-banner a img {
  width: 80%;
  max-width: 400px;
  margin: 0 auto 40px auto;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner a img {
    width: 520px;
    max-width: none;
    margin: 0 auto 56px;
  }
}
.wrap-page-free #line-banner .headline {
  text-align: center;
  margin: 10px 0 18px;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .headline {
    margin: 18px 0 28px;
  }
}
.wrap-page-free #line-banner .headline__title {
  margin: 0 0 10px;
  font-weight: 1000;
  font-size: 22px;
  letter-spacing: 0.02em;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .headline__title {
    font-size: 36px;
    margin: 0 0 14px;
  }
}
.wrap-page-free #line-banner .headline__sub {
  margin: 0;
  font-weight: 1000;
  font-size: 18px;
  letter-spacing: 0.02em;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .headline__sub {
    font-size: 30px;
  }
}
.wrap-page-free #line-banner .headline .dotted {
  display: inline-block;
  padding-bottom: 10px;
  background-image: radial-gradient(#ff2a2a 2px, transparent 2px);
  background-size: 12px 10px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .headline .dotted {
    padding-bottom: 14px;
    background-size: 16px 12px;
  }
}
.wrap-page-free #line-banner .body {
  max-width: 440px;
  text-align: center;
  font-size: 15px;
  line-height: 2;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .body {
    max-width: 760px;
    margin: 0 auto;
    font-size: 26px;
    line-height: 2;
  }
}
.wrap-page-free #line-banner .body p {
  margin: 18px 0;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .body p {
    margin: 22px 0;
    font-size: 22px;
    line-height: 40px;
  }
}
.wrap-page-free #line-banner .body .bottom-bar {
  height: 10px;
  background: #ffe600;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
@media (min-width: 650px) {
  .wrap-page-free #line-banner .body .bottom-bar {
    height: 14px;
  }
}
.wrap-page-free #free-text {
  background-color: rgba(255, 238, 0, 0.2);
  padding: 40px 0;
}
@media (min-width: 650px) {
  .wrap-page-free #free-text {
    padding: 80px 0;
  }
}
.wrap-page-free #free-text .speech {
  position: relative;
  margin: 0 auto 20px;
  padding: 22px 10px;
  background: #fff;
  border: 2px solid #ffe600;
  border-radius: 60px;
  text-align: center;
  font-weight: bold;
  line-height: 1.9;
}
@media (min-width: 650px) {
  .wrap-page-free #free-text .speech {
    width: min(920px, 100%);
    margin: 0 auto 40px;
    padding: 42px 28px;
    border-width: 3px;
    border-radius: 80px;
    font-size: 26px;
    line-height: 2;
  }
}
.wrap-page-free #free-text .speech::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  border-width: 18px 18px 0 18px;
  border-style: solid;
  border-color: #ffe600 transparent transparent transparent;
}
@media (min-width: 650px) {
  .wrap-page-free #free-text .speech::before {
    bottom: -26px;
    border-width: 26px 26px 0 26px;
  }
}
.wrap-page-free #free-text .speech::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  border-width: 14px 14px 0 14px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
@media (min-width: 650px) {
  .wrap-page-free #free-text .speech::after {
    bottom: -20px;
    border-width: 20px 20px 0 20px;
  }
}
.wrap-page-free #free-text .speech p {
  margin: 0;
}
.wrap-page-free #free-text .speech img {
  margin: 0 auto 20px auto;
}
@media (min-width: 650px) {
  .wrap-page-free #free-text .speech img {
    width: min(720px, 100%);
    margin: 0 auto 28px;
  }
}
.wrap-page-free #free-consultation-section {
  background-color: #FFEE00;
  padding: 10px 0 60px 0;
  position: relative;
}
@media (min-width: 650px) {
  .wrap-page-free #free-consultation-section {
    padding: 28px 0 96px;
  }
}
.wrap-page-free #free-consultation-section .sec-title-h3 {
  margin: 20px 0 !important;
}
@media (min-width: 650px) {
  .wrap-page-free #free-consultation-section .sec-title-h3 {
    margin: 40px 0 !important;
  }
}
.wrap-page-free .content h3 {
  margin: 0 auto 20px;
  text-align: center;
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-feature-settings: "palt";
}
@media (min-width: 650px) {
  .wrap-page-free .content h3 {
    font-size: 36px;
    margin: 0 auto 28px;
  }
}
.wrap-page-free .content .list {
  list-style: none;
  padding: 0;
  margin: 0 auto 10px auto;
  max-width: 90%;
  display: grid;
  gap: 5px;
  position: relative;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.65;
}
@media (min-width: 650px) {
  .wrap-page-free .content .list {
    max-width: 920px;
    gap: 10px;
    font-size: 28px;
    line-height: 1.9;
    margin: 0 auto 18px;
  }
}
.wrap-page-free .content .list li {
  position: relative;
  padding-left: 20px;
}
@media (min-width: 650px) {
  .wrap-page-free .content .list li {
    padding-left: 34px;
  }
}
.wrap-page-free .content .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  background: #e60012;
}
@media (min-width: 650px) {
  .wrap-page-free .content .list li::before {
    top: 0.5em;
    width: 14px;
    height: 14px;
  }
}
.wrap-page-free .content span {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 650px) {
  .wrap-page-free .content span {
    max-width: 920px;
    font-size: 22px;
    line-height: 1.9;
  }
}
.wrap-page-free #xray-section,
.wrap-page-free #stance-section,
.wrap-page-free #faq-section {
  background-color: rgba(255, 238, 0, 0.2);
  padding: 24px 0 28px;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section,
  .wrap-page-free #stance-section,
  .wrap-page-free #faq-section {
    padding: 56px 0 64px;
  }
}
.wrap-page-free #xray-section .content,
.wrap-page-free #stance-section .content,
.wrap-page-free #faq-section {
  background: #fff;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section .content,
  .wrap-page-free #stance-section .content,
  .wrap-page-free #faq-section {
    width: min(980px, 100%);
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }
}
.wrap-page-free #xray-section .top-img,
.wrap-page-free #stance-section .top-img {
  width: 100%;
  display: block;
  height: auto;
}
.wrap-page-free #xray-section .box,
.wrap-page-free #stance-section .box {
  padding: 18px 16px 20px;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section .box,
  .wrap-page-free #stance-section .box {
    padding: 36px 34px 44px;
  }
}
.wrap-page-free #xray-section h3,
.wrap-page-free #stance-section h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  display: table;
  margin: 0 auto 10px;
  padding-bottom: 5px;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section h3,
  .wrap-page-free #stance-section h3 {
    font-size: 30px;
    margin: 0 auto 18px;
    padding-bottom: 10px;
  }
}
.wrap-page-free #xray-section h3 {
  color: #0b39ff;
  border-bottom: 1px solid #0b39ff;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section h3 {
    border-bottom-width: 2px;
  }
}
.wrap-page-free #stance-section h3.red {
  color: #ff0000;
  border-bottom: 1px solid #ff0000;
}
@media (min-width: 650px) {
  .wrap-page-free #stance-section h3.red {
    border-bottom-width: 2px;
  }
}
.wrap-page-free #stance-section .lead {
  margin: 0 0 12px;
  font-weight: 900;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-free #stance-section .lead {
    font-size: 40px;
    line-height: 1.6;
    margin: 0 0 18px;
  }
}
.wrap-page-free #xray-section p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.9;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section p {
    font-size: 26px;
    line-height: 2;
    margin: 0 0 14px;
  }
}
.wrap-page-free #xray-section .point {
  list-style: none;
  padding: 0;
  margin: 10px 0 10px;
  display: grid;
  gap: 6px;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section .point {
    margin: 18px 0 18px;
    gap: 10px;
  }
}
.wrap-page-free #xray-section .point li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.7;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section .point li {
    font-size: 26px;
    line-height: 1.9;
    padding-left: 28px;
  }
}
.wrap-page-free #xray-section .point li::before {
  content: "◎";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}
.wrap-page-free #xray-section .note {
  margin: 8px 0 10px;
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section .note {
    font-size: 28px;
    line-height: 44px;
    margin: 14px 0 16px;
  }
}
.wrap-page-free #xray-section .strong {
  margin: 0;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font-weight: 900;
  line-height: 1.8;
}
@media (min-width: 650px) {
  .wrap-page-free #xray-section .strong {
    font-size: 28px;
    line-height: 1.9;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px;
  }
}
.wrap-page-free #stance-section .warn {
  list-style: none;
  padding: 0;
  margin: 20px 0 12px;
  display: grid;
  gap: 8px;
}
@media (min-width: 650px) {
  .wrap-page-free #stance-section .warn {
    margin: 26px 0 18px;
    gap: 18px;
  }
}
.wrap-page-free #stance-section .warn li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
}
@media (min-width: 650px) {
  .wrap-page-free #stance-section .warn li {
    font-size: 33px;
    line-height: 40px;
    padding-left: 48px;
  }
}
.wrap-page-free #stance-section .warn li::before {
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2238%22%20viewBox%3D%220%200%2050%2038%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M5.14862%2037.5021L31.1279%2037.5021C33.1148%2037.5021%2035.0048%2036.6408%2036.3089%2035.1402L49.5787%2019.8767C50.1404%2019.2312%2050.1404%2018.271%2049.5787%2017.6248L36.3089%202.36055C35.0048%200.860648%2033.1148%202.89498e-06%2031.1279%202.72128e-06L5.14862%204.50099e-07C2.30527%202.01525e-07%209.84444e-05%202.30517%209.81959e-05%205.14852L9.58176e-05%2032.353C9.55689e-05%2035.197%202.30527%2037.5021%205.14862%2037.5021ZM14.7871%2010.6748L19.8346%2015.7209L24.8807%2010.6762L27.911%2013.705L22.8648%2018.7525L27.9102%2023.7979L24.8807%2026.8274L19.8346%2021.7812L14.7879%2026.8288L11.7584%2023.7979L16.8059%2018.7511L11.757%2013.705L14.7871%2010.6748Z%22%20fill%3D%22%23FF0101%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 25px;
  height: 18px;
}
@media (min-width: 650px) {
  .wrap-page-free #stance-section .warn li::before {
    width: 36px;
    height: 26px;
    top: 0.42em;
  }
}
.wrap-page-free #stance-section .desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
}
@media (min-width: 650px) {
  .wrap-page-free #stance-section .desc {
    font-size: 26px;
    line-height: 2;
  }
}
.wrap-page-free #faq-section {
  padding: 5px 16px 18px;
}
@media (min-width: 650px) {
  .wrap-page-free #faq-section {
    padding: 22px 34px 34px;
  }
}
.wrap-page-free .faq-head {
  text-align: center;
}
.wrap-page-free .faq-head .logo {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-head .logo {
    width: 140px;
    margin: 0 auto 14px;
  }
}
.wrap-page-free .faq-head h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 900;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-head h3 {
    font-size: 28px;
    margin: 0 0 16px;
  }
}
.wrap-page-free .faq-head .line {
  display: block;
  width: 75%;
  height: 1px;
  background: #111;
  margin: 0 auto 12px;
  opacity: 0.85;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-head .line {
    height: 2px;
    width: 68%;
    margin: 0 auto 20px;
  }
}
.wrap-page-free .faq {
  margin: 20px 0 0;
}
@media (min-width: 650px) {
  .wrap-page-free .faq {
    margin: 26px 0 0;
  }
}
.wrap-page-free .faq-item:last-child {
  border-bottom: none;
}
.wrap-page-free .faq-item dt,
.wrap-page-free .faq-item dd {
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1.2;
  font-weight: 800;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-item dt,
  .wrap-page-free .faq-item dd {
    padding: 18px 0;
  }
}
.wrap-page-free .faq-item dt {
  font-size: 16px;
  font-weight: 600;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-item dt {
    font-size: 30px;
    line-height: 1.7;
  }
}
.wrap-page-free .faq-item dd {
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-item dd {
    font-size: 22px;
    line-height: 1.8;
  }
}
.wrap-page-free .faq-item .q,
.wrap-page-free .faq-item .a {
  font-family: "din-2014", sans-serif;
  font-size: 30px;
  margin-right: 15px;
}
@media (min-width: 650px) {
  .wrap-page-free .faq-item .q,
  .wrap-page-free .faq-item .a {
    font-size: 48px;
    margin-right: 18px;
  }
}
.wrap-page-free .faq-item .q {
  color: #0b39ff;
}
.wrap-page-free .faq-item .a {
  color: #ff0000;
}

/*---------------------------------------------
*
* 質預かりについて
*  /pawn/
*
---------------------------------------------*/
.wrap-page-pawn #kv-lower-page h2 {
  margin-top: 50px;
}
@media (min-width: 650px) {
  .wrap-page-pawn #kv-lower-page h2 {
    margin-top: 72px;
  }
}
.wrap-page-pawn #first-section h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
}
@media (min-width: 650px) {
  .wrap-page-pawn #first-section h2 {
    font-size: 44px;
    line-height: 1.25;
    margin-top: 72px;
  }
}
.wrap-page-pawn #first-section h2 span {
  font-size: 20px;
  margin-top: 20px;
  display: block;
}
@media (min-width: 650px) {
  .wrap-page-pawn #first-section h2 span {
    font-size: 32px !important;
  }
}
.wrap-page-pawn #first-section p {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-pawn #first-section p {
    font-size: 28px;
    line-height: 1.9;
  }
}
.wrap-page-pawn #first-section ul {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 10px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn #first-section ul {
    gap: 24px;
    margin: 20px 0;
  }
}
.wrap-page-pawn #first-section ul li {
  width: 90px;
  height: 90px;
  color: #2200FF;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #61ADFF;
  border-radius: 50%;
}
@media (min-width: 650px) {
  .wrap-page-pawn #first-section ul li {
    width: 150px;
    height: 150px;
    font-size: 28px;
    border-width: 4px;
  }
}
.wrap-page-pawn .sec-content {
  margin: 15px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content {
    margin: 28px 0;
  }
}
.wrap-page-pawn .sec-content .sec-content-title {
  color: #2200FF;
  font-size: 16.5px;
  font-weight: bold;
  border-bottom: 1px solid #2200FF;
  width: 85%;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .sec-content-title {
    font-size: 28px;
    line-height: 1.25;
    border-bottom-width: 2px;
    width: 90%;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }
}
.wrap-page-pawn .sec-content .sec-content-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 10px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .sec-content-text {
    font-size: 22px;
    line-height: 1.9;
    margin: 16px 0;
  }
}
.wrap-page-pawn .sec-content .square-title span {
  color: #2200FF;
}
.wrap-page-pawn .sec-content .sec-content-table {
  width: 100%;
  margin: 10px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .sec-content-table {
    margin: 16px 0;
  }
}
.wrap-page-pawn .sec-content .sec-content-table tr {
  background: #fff;
  font-size: 14px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .sec-content-table tr {
    font-size: 20px;
    line-height: 1.8;
  }
}
.wrap-page-pawn .sec-content .sec-content-table td {
  border: 1px solid #C1C1C1;
  padding: 5px;
  font-feature-settings: "palt";
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .sec-content-table td {
    border-width: 2px;
    padding: 12px 14px;
  }
}
.wrap-page-pawn .sec-content .sec-content-table td span {
  font-size: 11px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .sec-content-table td span {
    font-size: 16px;
  }
}
.wrap-page-pawn .sec-content .table-title {
  color: #fff;
  font-size: 13px !important;
  background: #2200FF !important;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .table-title {
    font-size: 20px !important;
  }
}
.wrap-page-pawn .sec-content .table-title td {
  padding: 5px 0 !important;
}
@media (min-width: 650px) {
  .wrap-page-pawn .sec-content .table-title td {
    padding: 14px 0 !important;
  }
}
.wrap-page-pawn #system-section {
  background-color: #FFFCCC;
  padding: 20px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn #system-section {
    padding: 40px 0;
  }
}
.wrap-page-pawn #cost-section {
  background-color: #FFFCCC;
  padding: 20px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn #cost-section {
    padding: 40px 0;
  }
}
.wrap-page-pawn #flow-section {
  background-color: #FFFCCC;
  padding: 20px 0 50px;
}
@media (min-width: 650px) {
  .wrap-page-pawn #flow-section {
    padding: 40px 0 96px;
  }
}
.wrap-page-pawn .flow-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content {
    gap: 18px;
  }
}
.wrap-page-pawn .flow-content .flow-item {
  border-radius: 10px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-item {
    border-radius: 16px;
  }
}
.wrap-page-pawn .flow-content .flow-item-thumb {
  position: relative;
}
.wrap-page-pawn .flow-content .flow-item-num {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #2200FF;
  border-radius: 50%;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-item-num {
    top: 20px;
    left: 18px;
    width: 54px;
    height: 54px;
    font-size: 36px;
  }
}
.wrap-page-pawn .flow-content .flow-item-bottom {
  background: #fff;
  padding: 10px 15px 15px 15px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-item-bottom {
    padding: 22px 24px 26px;
  }
}
.wrap-page-pawn .flow-content .flow-item-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 5px 0;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-item-title {
    font-size: 28px;
    line-height: 1.4;
    margin: 10px 0;
  }
}
.wrap-page-pawn .flow-content .flow-item-text {
  font-size: 15px;
  line-height: 1.5;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-item-text {
    font-size: 22px;
    line-height: 1.9;
  }
}
.wrap-page-pawn .flow-content .flow-arrow-num {
  font-size: 28px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-arrow-num {
    font-size: 44px;
  }
}
.wrap-page-pawn .flow-content .flow-arrow-large {
  font-size: 20px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-content .flow-arrow-large {
    font-size: 32px;
  }
}
.wrap-page-pawn .flow-arrow {
  position: relative;
  margin: 10px;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-arrow {
    margin: 18px;
  }
}
.wrap-page-pawn .flow-arrow img {
  width: 187px;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-arrow img {
    width: 320px;
  }
}
.wrap-page-pawn .flow-arrow p {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 40%;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-pawn .flow-arrow p {
    font-size: 24px;
    line-height: 1.2;
  }
}
.wrap-page-pawn .method-item {
  background: #fff;
  border-radius: 10px;
  padding: 15px 10px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .method-item {
    border-radius: 16px;
    padding: 24px 22px;
  }
}
.wrap-page-pawn .method-item .method-item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .method-item .method-item-title {
    gap: 16px;
    font-size: 28px;
    margin-bottom: 16px;
  }
}
.wrap-page-pawn .method-item .method-item-num {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  background: #2200FF;
  border-radius: 50%;
}
@media (min-width: 650px) {
  .wrap-page-pawn .method-item .method-item-num {
    width: 54px;
    height: 54px;
    font-size: 36px;
  }
}
.wrap-page-pawn .method-item .method-item-text {
  font-size: 15px;
}
@media (min-width: 650px) {
  .wrap-page-pawn .method-item .method-item-text {
    font-size: 22px;
    line-height: 1.9;
  }
}

/*---------------------------------------------
*
* 会社概要
*  /company/
*
---------------------------------------------*/
.wrap-page-company #kv-lower-page h2 {
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-company #kv-lower-page h2 {
    margin-top: 32px;
  }
}
.wrap-page-company .movie-content {
  background: #FFEE00;
  padding: 5rem 0;
}
@media (min-width: 650px) {
  .wrap-page-company .movie-content {
    padding: 80px 0;
  }
}
.wrap-page-company .movie-content iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9.2;
  object-fit: cover;
  right: 0;
  left: 0;
  margin: 10px auto 0;
  border: 5px solid #00D512;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
}
@media (min-width: 650px) {
  .wrap-page-company .movie-content iframe {
    margin: 24px auto 0;
  }
}
.wrap-page-company .company {
  background-color: rgba(255, 238, 0, 0.2);
  padding: 2rem 0 10rem;
}
@media (min-width: 650px) {
  .wrap-page-company .company {
    padding: 40px 0 160px;
  }
}
.wrap-page-company .company__table {
  width: 100%;
  margin-top: 4rem;
}
@media (min-width: 650px) {
  .wrap-page-company .company__table {
    margin: 80px auto 0;
  }
}
.wrap-page-company .company__table tr {
  margin: 0.5rem 0;
  display: flex;
}
@media (min-width: 650px) {
  .wrap-page-company .company__table tr {
    margin: 5px 0;
  }
}
.wrap-page-company .company__table td,
.wrap-page-company .company__table th {
  font-size: 1.4rem;
  padding: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-company .company__table td,
  .wrap-page-company .company__table th {
    font-size: 22px;
    line-height: 40px;
    padding: 10px;
  }
}
.wrap-page-company .company__table td {
  width: 30%;
  font-weight: bold;
  background: #FFEE00;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 650px) {
  .wrap-page-company .company__table td {
    width: 110px;
  }
}
.wrap-page-company .company__table th {
  width: 70%;
  background: #fff;
}
@media (min-width: 650px) {
  .wrap-page-company .company__table th {
    width: calc(100% - 110px);
  }
}
.wrap-page-company .company .group-company {
  margin-top: 4rem;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-company .company .group-company {
    margin-top: 96px;
  }
}
.wrap-page-company .company .group-company__logo {
  width: 17rem;
}
@media (min-width: 650px) {
  .wrap-page-company .company .group-company__logo {
    width: 260px;
  }
}
.wrap-page-company .company .group-company__text {
  margin: 2rem 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media (min-width: 650px) {
  .wrap-page-company .company .group-company__text {
    margin: 32px 0;
    font-size: 28px;
    line-height: 58px;
  }
}
.wrap-page-company .company .group-company__text span {
  font-size: 2rem;
  font-weight: bold;
}
@media (min-width: 650px) {
  .wrap-page-company .company .group-company__text span {
    font-size: 34px;
    line-height: 60px;
  }
}
.wrap-page-company .company .group-company__text .green {
  color: #1F707E;
}
.wrap-page-company .company .group-company__text .orange {
  color: #FF8103;
}
.wrap-page-company .company .group-company__list .list-title {
  color: #fff;
  font-weight: bold;
  background: #1CBC90;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-company .company .group-company__list .list-title {
    font-size: 33px;
    padding: 18px 16px;
  }
}
.wrap-page-company .company .group-company__list li {
  font-size: 1.6rem;
  background: #fff;
  padding: 0.8rem 1rem;
  text-align: left;
  margin: 0.2rem 0;
}
@media (min-width: 650px) {
  .wrap-page-company .company .group-company__list li {
    font-size: 26px;
    line-height: 1.8;
    padding: 18px 10px;
    margin: 8px 0;
  }
}
.wrap-page-company .company .group-company__list li span {
  color: #1CBC90;
  margin-right: 5px;
}

/*---------------------------------------------
*
* 買取品目
*　/purchase_item/
*
---------------------------------------------*/
.wrap-page-purchase_item {
  /* ------------------------------
   * kv
   * ------------------------------ */
}
.wrap-page-purchase_item #kv-lower-page h2 {
  margin-top: 1.5rem;
}
.wrap-page-purchase_item {
  /* ------------------------------
   * bg section
   * ------------------------------ */
}
.wrap-page-purchase_item .bg-section {
  background: linear-gradient(to bottom, rgb(255, 238, 0) 0%, rgba(255, 238, 0, 0.2) 100%);
  padding: 10px 0 100px;
  position: relative;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .bg-section {
    padding: 40px 0 150px;
  }
}
.wrap-page-purchase_item {
  /* ------------------------------
   * item section
   * ------------------------------ */
}
.wrap-page-purchase_item #item-section {
  padding: 10px 0 20px;
  position: relative;
}
.wrap-page-purchase_item #item-section h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #item-section h3 {
    font-size: 33px;
    line-height: 54px;
  }
}
.wrap-page-purchase_item #item-section p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin: 15px 0;
  font-weight: bold;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #item-section p {
    font-size: 28px;
    line-height: 44px;
  }
}
.wrap-page-purchase_item #item-section .content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
  padding: 20px 0 0;
}
.wrap-page-purchase_item #item-section .content ul li img {
  width: 100%;
  height: auto;
  display: block;
}
.wrap-page-purchase_item #item-section .content ul li p {
  font-size: 13px;
  font-feature-settings: "palt";
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #item-section .content ul li p {
    font-size: 20px !important;
    line-height: 27px;
  }
}
.wrap-page-purchase_item #item-section .content ul li:nth-child(12) p {
  font-size: 11px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #item-section .content ul li:nth-child(12) p {
    font-size: 20px;
    line-height: 27px;
  }
}
.wrap-page-purchase_item #item-section .item-section-item {
  width: calc(25% - 4px);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.wrap-page-purchase_item {
  /* ------------------------------
   * first section
   * ------------------------------ */
}
.wrap-page-purchase_item #first-section {
  padding: 40px 0 10px;
  position: relative;
}
.wrap-page-purchase_item #first-section h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #first-section h3 {
    font-size: 30px;
    line-height: 46px;
  }
}
.wrap-page-purchase_item #first-section p {
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  margin: 30px 0;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #first-section p {
    font-size: 22px;
    line-height: 52px;
  }
}
.wrap-page-purchase_item #first-section p.bold {
  font-size: 17px;
  line-height: 30px;
  font-weight: bold;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item #first-section p.bold {
    font-size: 28px;
    line-height: 52px;
  }
}
.wrap-page-purchase_item {
  /* ------------------------------
   * latest-buy (slider)
   * ------------------------------ */
}
.wrap-page-purchase_item .latest-buy {
  padding: 18px 0;
  max-width: 560px;
  margin: 0 auto;
}
.wrap-page-purchase_item .latest-buy .slick-list {
  overflow: hidden;
}
.wrap-page-purchase_item .latest-buy .slick-track {
  display: flex !important;
  align-items: stretch;
}
.wrap-page-purchase_item .latest-buy .slick-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}
.wrap-page-purchase_item .latest-buy .slick-slide > div {
  display: flex;
  height: 100%;
  width: 100%;
}
.wrap-page-purchase_item .latest-buy .slick-dots {
  position: static;
  margin: 10px 0 0;
}
.wrap-page-purchase_item .latest-buy .slick-dots li {
  margin: 0 4px;
}
.wrap-page-purchase_item .latest-buy .slick-dots li button:before {
  font-size: 10px;
  color: #cfcfcf !important;
  opacity: 1;
}
.wrap-page-purchase_item .latest-buy .slick-dots li.slick-active button:before {
  color: #e60012 !important;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy .slick-dots li {
    margin: 0 10px;
  }
  .wrap-page-purchase_item .latest-buy .slick-dots li button:before {
    font-size: 19px;
  }
}
.wrap-page-purchase_item .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.wrap-page-purchase_item .latest-buy__panel {
  background: #fff;
  border-radius: 6px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: 1px solid #e7e7e7;
}
.wrap-page-purchase_item .latest-buy__head {
  background: #e60012;
  color: #fff;
  text-align: center;
  padding: 16px 12px 14px;
}
.wrap-page-purchase_item .latest-buy__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__title {
    font-size: 40px;
    line-height: 41px;
  }
}
.wrap-page-purchase_item .latest-buy__sub {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
  display: block;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__sub {
    font-size: 28px;
    line-height: 41px;
  }
}
.wrap-page-purchase_item .latest-buy__slider {
  position: relative;
  padding: 14px 5px 0;
}
@media (max-width: 360px) {
  .wrap-page-purchase_item .latest-buy__slider {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.wrap-page-purchase_item .latest-buy__item {
  padding: 0 3px 5px;
  display: flex;
  height: 100%;
  width: 100%;
}
.wrap-page-purchase_item .latest-buy__card {
  text-decoration: none;
  color: #111;
  border: 1px solid #dcdcdc;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  background: #fff;
  padding-bottom: 2px;
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wrap-page-purchase_item .latest-buy__thumb {
  padding: 10px 10px 0;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.wrap-page-purchase_item .latest-buy__thumb img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.wrap-page-purchase_item .latest-buy__name {
  margin: 8px 10px 6px;
  font-size: 14px;
  line-height: 1.25;
  text-align: center;
  flex: 1 1 auto;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__name {
    font-size: 22px;
    line-height: 27px;
  }
}
.wrap-page-purchase_item .latest-buy__label,
.wrap-page-purchase_item .latest-buy__price {
  flex: 0 0 auto;
}
.wrap-page-purchase_item .latest-buy__label {
  display: block;
  width: 100px;
  background: #e60012;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 2px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__label {
    font-size: 22px;
    line-height: 27px;
    width: 159px;
    margin: 10px auto;
  }
}
.wrap-page-purchase_item .latest-buy__price {
  margin: 0 10px 12px;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.wrap-page-purchase_item .latest-buy__priceNum {
  font-size: 21px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__priceNum {
    font-size: 38px;
    line-height: 27px;
  }
}
.wrap-page-purchase_item .latest-buy__yen {
  font-size: 14px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__yen {
    font-size: 22px;
    line-height: 27px;
  }
}
.wrap-page-purchase_item {
  /* 矢印（丸ボタン） */
}
.wrap-page-purchase_item .latest-buy__arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  z-index: 5;
  cursor: pointer;
}
.wrap-page-purchase_item .latest-buy__arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  margin: 0 auto;
}
.wrap-page-purchase_item .latest-buy__arrow--prev {
  left: 8px;
}
.wrap-page-purchase_item .latest-buy__arrow--prev::before {
  transform: rotate(-135deg);
}
.wrap-page-purchase_item .latest-buy__arrow--next {
  right: 8px;
}
.wrap-page-purchase_item .latest-buy__arrow--next::before {
  transform: rotate(45deg);
}
.wrap-page-purchase_item {
  /* CTA */
}
.wrap-page-purchase_item .latest-buy__cta {
  padding: 16px 16px 18px;
}
.wrap-page-purchase_item .latest-buy__btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: #e60012;
  color: #fff;
  font-weight: 900;
  padding: 14px 10px;
  border-radius: 4px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_item .latest-buy__btn {
    font-size: 25px;
    line-height: 53px;
  }
}
.wrap-page-purchase_item {
  /* slick generic */
}
.wrap-page-purchase_item .slick-track {
  display: flex !important;
}
.wrap-page-purchase_item .slick-slide {
  height: auto;
  margin: 0 2.5px;
  display: flex;
}
.wrap-page-purchase_item .slick-slide img {
  height: auto;
  width: 100%;
}

/*---------------------------------------------
*
* 本日の貴金属相場
*  /purchase_price/
*
---------------------------------------------*/
.wrap-page-purchase_price {
  background-color: #f3f3f3;
}
.wrap-page-purchase_price #kv-purchase-price-page {
  background-image: url("../images/purchase_price/kv.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 350px;
  position: relative;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price #kv-purchase-price-page {
    height: 520px;
  }
}
.wrap-page-purchase_price #kv-purchase-price-page .text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.wrap-page-purchase_price #kv-purchase-price-page h2 {
  font-size: 32px;
  font-weight: bold;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price #kv-purchase-price-page h2 {
    font-size: 64px;
    line-height: 77px;
  }
}
.wrap-page-purchase_price #kv-purchase-price-page span {
  display: block;
  font-size: 12px;
  font-weight: bold;
  padding-top: 10px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price #kv-purchase-price-page span {
    font-size: 23px;
    padding-top: 23px;
  }
}
.wrap-page-purchase_price #kv-purchase-price-page .price-btn a {
  position: relative;
  display: block;
  width: 65%;
  background: #FFEE00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin: 2.5rem auto 0;
  padding: 1rem 0;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price #kv-purchase-price-page .price-btn a {
    font-size: 2.3rem;
    width: 80%;
    margin: 4rem auto 0;
    padding: 1.5rem 0;
  }
}
.wrap-page-purchase_price #kv-purchase-price-page .price-btn a::after {
  position: absolute;
  content: "";
  background: url("../images/purchase_price/price-btn-icon.svg") no-repeat center/contain;
  width: 2.8rem;
  height: 3.9rem;
  right: 1rem;
  bottom: 0.5rem;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price #kv-purchase-price-page .price-btn a::after {
    width: 5.2rem;
    height: 6.2rem;
  }
}
.wrap-page-purchase_price .metal-wrap {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  margin: 20px auto;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .metal-wrap {
    margin: 40px auto;
    max-width: 980px;
  }
}
.wrap-page-purchase_price .diff.plus, .wrap-page-purchase_price .diff.minus {
  font-weight: 700;
}
.wrap-page-purchase_price .diff .yen {
  display: inline-block;
  font-size: 8px;
  font-weight: normal;
  margin-left: 2px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .diff .yen {
    font-size: 12px;
    margin-left: 4px;
  }
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .diff {
    font-size: 24px;
  }
}
.wrap-page-purchase_price .diff.plus::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background-image: url("../images/purchase_price/icon-arrow-up.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .diff.plus::before {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
}
.wrap-page-purchase_price .diff.minus::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 4px;
  background-image: url("../images/purchase_price/icon-arrow-down.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .diff.minus::before {
    width: 16px;
    height: 16px;
    margin-right: 6px;
  }
}
.wrap-page-purchase_price .diff-text {
  margin-top: 10px;
}
.wrap-page-purchase_price .summary {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 5px;
  margin: 0 0 18px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .summary {
    border-spacing: 16px 10px;
    margin: 0 0 28px;
  }
}
.wrap-page-purchase_price .summary th,
.wrap-page-purchase_price .summary td {
  border: 1px solid #dfe3ea;
  background: #fff;
  text-align: center;
  padding: 12px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .summary th,
  .wrap-page-purchase_price .summary td {
    padding: 18px 16px;
    font-size: 24px;
  }
}
.wrap-page-purchase_price .summary th {
  font-weight: 700;
}
.wrap-page-purchase_price .summary .gold {
  background: linear-gradient(#d6b24a, #b9931b);
  color: #111;
}
.wrap-page-purchase_price .summary .platinum {
  background: linear-gradient(#cfe3ee, #a8c6d6);
  color: #111;
}
.wrap-page-purchase_price .summary .silver {
  background: linear-gradient(#e5e7eb, #cfd4db);
  color: #111;
}
.wrap-page-purchase_price .summary .palladium {
  background: linear-gradient(#b4c1da, #8699bf);
  color: #111;
}
.wrap-page-purchase_price .summary .price {
  font-size: 28px;
  font-weight: 800;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .summary .price {
    font-size: 44px;
    line-height: 1.1;
  }
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .summary td div {
    font-size: 22px;
  }
}
.wrap-page-purchase_price .summary tr:nth-child(1) th,
.wrap-page-purchase_price .summary tr:nth-child(3) th {
  border-bottom: 0;
  padding: 8px 0;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .summary tr:nth-child(1) th,
  .wrap-page-purchase_price .summary tr:nth-child(3) th {
    padding: 12px 0;
  }
}
.wrap-page-purchase_price .summary tr:nth-child(2) td,
.wrap-page-purchase_price .summary tr:nth-child(4) td {
  border-top: 0;
  padding: 14px 10px 12px;
  position: relative;
  top: -10px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .summary tr:nth-child(2) td,
  .wrap-page-purchase_price .summary tr:nth-child(4) td {
    padding: 20px 16px 16px;
    top: -12px;
  }
}
.wrap-page-purchase_price .price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .price-table {
    margin: 28px 0;
  }
}
.wrap-page-purchase_price .price-table caption {
  text-align: left;
  font-weight: 800;
  margin: 0 0 8px;
}
.wrap-page-purchase_price .price-table th,
.wrap-page-purchase_price .price-table td {
  border: 1px solid #e5e7eb;
  padding: 8px 10px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .price-table th,
  .wrap-page-purchase_price .price-table td {
    padding: 14px 16px;
  }
}
.wrap-page-purchase_price .price-table thead th {
  background: #083bff;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .price-table thead th {
    font-size: 20px;
  }
}
.wrap-page-purchase_price .price-table tbody th {
  background: #dbeafe;
  font-weight: 700;
  width: 45%;
  font-size: 14px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .price-table tbody th {
    font-size: 20px;
  }
}
.wrap-page-purchase_price .price-table tbody td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .price-table tbody td {
    font-size: 20px;
  }
}
.wrap-page-purchase_price .note {
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .note {
    font-size: 18px;
    line-height: 1.9;
    margin-top: 14px;
  }
}
.wrap-page-purchase_price .note-link {
  position: relative;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
  padding-right: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .note-link {
    font-size: 18px;
    line-height: 1.9;
    padding-right: 2.6rem;
  }
}
.wrap-page-purchase_price .note-link::after {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2226%22%20height%3D%2226%22%20viewBox%3D%220%200%2026%2026%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url(%23clip0_2827_5432)%22%3E%3Cpath%20d%3D%22M4.875%200V21.125H26V0H4.875ZM23.9688%2019.0938H6.90625V2.03125H23.9688V19.0938Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M2.03125%2023.9688V15.0312V6.90625V4.875H0V26H21.125V23.9688H19.0938H2.03125Z%22%20fill%3D%22black%22%2F%3E%3Cpath%20d%3D%22M11.8229%2015.8858L17.8079%209.90074V14.2068H19.8391V6.43335H12.0657V8.4646H16.3717L10.3867%2014.4496L11.8229%2015.8858Z%22%20fill%3D%22black%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_2827_5432%22%3E%3Crect%20width%3D%2226%22%20height%3D%2226%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 1.3rem;
  height: 1.3rem;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .note-link::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.wrap-page-purchase_price .comb-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.wrap-page-purchase_price .comb-modal[aria-hidden=false] {
  display: block;
}
.wrap-page-purchase_price .comb-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}
.wrap-page-purchase_price .comb-modal__panel {
  position: relative;
  width: min(920px, 100% - 32px);
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  background: #fff;
  border-radius: 16px;
  overflow: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal__panel {
    border-radius: 20px;
  }
}
.wrap-page-purchase_price .comb-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.wrap-page-purchase_price .comb-modal__header {
  padding: 38px 24px 10px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal__header {
    padding: 44px 32px 14px;
  }
}
.wrap-page-purchase_price .comb-modal__updated {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal__updated {
    font-size: 20px;
    margin: 0 0 12px;
  }
}
.wrap-page-purchase_price .comb-modal__note {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal__note {
    font-size: 16px;
  }
}
.wrap-page-purchase_price .comb-modal__table-wrap {
  padding: 0 24px 24px;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal__table-wrap {
    padding: 0 32px 32px;
  }
}
.wrap-page-purchase_price .comb-modal table {
  margin: 20px auto;
}
.wrap-page-purchase_price .comb-modal .price-table {
  width: 90%;
  border-collapse: collapse;
  background: #fff;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal .price-table {
    width: 92%;
  }
}
.wrap-page-purchase_price .comb-modal .price-table thead th {
  background: #0b39ff;
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal .price-table thead th {
    padding: 16px 18px;
    font-size: 18px;
  }
}
.wrap-page-purchase_price .comb-modal .price-table tbody th,
.wrap-page-purchase_price .comb-modal .price-table tbody td {
  padding: 14px;
  border: 1px solid #e5e7eb;
  font-weight: 700;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .comb-modal .price-table tbody th,
  .wrap-page-purchase_price .comb-modal .price-table tbody td {
    padding: 18px;
    font-size: 18px;
  }
}
.wrap-page-purchase_price .comb-modal .price-table tbody th {
  background: #dcebff;
  color: #111;
  text-align: left;
  white-space: nowrap;
}
.wrap-page-purchase_price .comb-modal .price-table tbody td {
  text-align: right;
  color: #111;
  background: #fff;
}
.wrap-page-purchase_price html.is-modal-open body {
  overflow: hidden;
}
.wrap-page-purchase_price .lowest_price_banner {
  margin: 5rem 0 10rem;
}
@media (min-width: 650px) {
  .wrap-page-purchase_price .lowest_price_banner {
    margin: 6rem 0 12rem;
  }
}

/*---------------------------------------------
*
* 買取店様・業者様向け
*  /business/
*
---------------------------------------------*/
.wrap-page-business .site-main {
  background-color: #FFFCCC;
}
.wrap-page-business main {
  background-color: #FFFCCC;
}
.wrap-page-business #kv-lower-page h2 {
  margin-top: 6rem;
}
@media (min-width: 650px) {
  .wrap-page-business #kv-lower-page h2 {
    margin-top: 72px;
  }
}
.wrap-page-business .first-section__text {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin: 2rem 0;
}
@media (min-width: 650px) {
  .wrap-page-business .first-section__text {
    font-size: 28px;
    line-height: 1.75;
    margin: 32px 0;
  }
}
.wrap-page-business .feature__title {
  position: relative;
  color: #FF0000;
  font-size: 1.6rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-business .feature__title {
    font-size: 28px;
    padding-bottom: 16px;
  }
}
.wrap-page-business .feature__title::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background: #FF0000;
  left: 0;
  bottom: 0;
}
@media (min-width: 650px) {
  .wrap-page-business .feature__title::before {
    height: 2px;
  }
}
.wrap-page-business .feature__list {
  margin-top: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-business .feature__list {
    margin-top: 22px;
  }
}
.wrap-page-business .feature__list li {
  position: relative;
  font-size: 1.4rem;
  padding-left: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-business .feature__list li {
    font-size: 21px;
    line-height: 1.85;
    padding-left: 30px;
  }
}
.wrap-page-business .feature__list li::before {
  position: absolute;
  content: "■";
  color: #FF0000;
  top: 0;
  left: 0;
}
@media (min-width: 650px) {
  .wrap-page-business .feature__list li::before {
    top: 2px;
  }
}
.wrap-page-business .feature__note {
  font-size: 1.4rem;
  margin-top: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-business .feature__note {
    font-size: 20px;
    line-height: 1.9;
    margin-top: 18px;
  }
}
.wrap-page-business .flow {
  padding-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow {
    padding-top: 40px;
  }
}
.wrap-page-business .flow .flow-list {
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-list {
    margin-top: 32px;
  }
}
.wrap-page-business .flow .flow-list > li {
  margin: 2rem 0;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-list > li {
    margin: 28px 0;
  }
}
.wrap-page-business .flow .flow-list__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFEE00;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-list__label {
    gap: 20px;
    font-size: 28px;
    padding: 16px 20px;
  }
}
.wrap-page-business .flow .flow-list__label span {
  font-size: 2.5rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-list__label span {
    font-size: 36px;
  }
}
.wrap-page-business .flow .flow-list__cont {
  background: #fff;
  font-size: 1.5rem;
  padding: 1.5rem 1rem;
  line-height: 1.5;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-list__cont {
    font-size: 24px;
    line-height: 1.85;
    padding: 24px 20px;
  }
}
.wrap-page-business .flow .flow-bottom {
  margin-bottom: 10rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-bottom {
    margin-bottom: 160px;
  }
}
.wrap-page-business .flow .flow-bottom__title {
  position: relative;
  color: #FF0000;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding-bottom: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-bottom__title {
    font-size: 28px;
    padding-bottom: 16px;
  }
}
.wrap-page-business .flow .flow-bottom__title::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 1px;
  background: #FF0000;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-bottom__title::before {
    height: 2px;
  }
}
.wrap-page-business .flow .flow-bottom__text {
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.8;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-bottom__text {
    font-size: 28px;
    line-height: 1.9;
    margin-top: 18px;
  }
}
.wrap-page-business .flow .flow-bottom__text span {
  color: #FF0000;
  font-size: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-business .flow .flow-bottom__text span {
    font-size: 36px;
  }
}

/*---------------------------------------------
*
* お問い合わせ
*  /contact/
*
---------------------------------------------*/
.wrap-page-contact main {
  background: #F3F3F3;
}

.wrap-page-contact {
  background: #F3F3F3;
}
.wrap-page-contact #kv-lower-page h2 {
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-contact #kv-lower-page h2 {
    margin-top: 32px;
  }
}
.wrap-page-contact .contact {
  padding-bottom: 10rem;
}
@media (min-width: 650px) {
  .wrap-page-contact .contact {
    padding-bottom: 160px;
  }
}

/*---------------------------------------------
*
* お問い合わせ(確認画面)
*  /contact/confirm/
*
---------------------------------------------*/
.wrap-page-confirm {
  background: #F3F3F3;
}
.wrap-page-confirm #kv-lower-page h2 {
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-confirm #kv-lower-page h2 {
    margin-top: 32px;
  }
}
.wrap-page-confirm .contact {
  padding-bottom: 10rem;
}
@media (min-width: 650px) {
  .wrap-page-confirm .contact {
    padding-bottom: 160px;
  }
}
.wrap-page-confirm .contact__text {
  font-size: 1.4rem;
  margin-top: 4.5rem;
  line-height: 1.5;
}
@media (min-width: 650px) {
  .wrap-page-confirm .contact__text {
    font-size: 22px;
    line-height: 1.9;
    margin-top: 72px;
  }
}

/*---------------------------------------------
*
* お問い合わせ(送信完了画面)
*  /contact/thanks/
*
---------------------------------------------*/
.wrap-page-thanks {
  background: #F3F3F3;
}
.wrap-page-thanks #kv-lower-page h2 {
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-page-thanks #kv-lower-page h2 {
    margin-top: 32px;
  }
}
.wrap-page-thanks .contact {
  padding-bottom: 10rem;
}
@media (min-width: 650px) {
  .wrap-page-thanks .contact {
    padding-bottom: 160px;
  }
}
.wrap-page-thanks .contact__text {
  font-size: 1.4rem;
  margin: 4.5rem 0;
  line-height: 1.5;
}
@media (min-width: 650px) {
  .wrap-page-thanks .contact__text {
    font-size: 22px;
    line-height: 1.9;
    margin: 72px 0;
  }
}
.wrap-page-thanks .contact .btn-A {
  display: block;
  width: 100%;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-page-thanks .contact .btn-A {
    max-width: 520px;
    margin: 0 auto;
  }
}

/*---------------------------------------------
*
* お問い合わせフォーム
*
---------------------------------------------*/
.form-content {
  margin-top: 4.5rem;
}
@media (min-width: 650px) {
  .form-content {
    margin-top: 72px;
  }
}
.form-content .tabel {
  margin: 2rem 0;
}
@media (min-width: 650px) {
  .form-content .tabel {
    margin: 32px 0;
  }
}
.form-content .heading {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (min-width: 650px) {
  .form-content .heading {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.form-content .heading span {
  color: #fff;
  font-size: 1.4rem;
  background: #E60012;
  padding: 0.1rem 0.5rem;
  margin-left: 1rem;
}
@media (min-width: 650px) {
  .form-content .heading span {
    font-size: 18px;
    padding: 4px 10px;
    margin-left: 12px;
  }
}
.form-content input,
.form-content textarea,
.form-content select {
  width: 100%;
  background: #fff;
  border: 1px solid #CCCCCC;
  padding: 1rem;
}
@media (min-width: 650px) {
  .form-content input,
  .form-content textarea,
  .form-content select {
    font-size: 20px;
    padding: 2px;
    border-width: 2px;
    line-height: 48px;
  }
}
.form-content input {
  height: 3.2rem;
}
@media (min-width: 650px) {
  .form-content input {
    height: 52px;
  }
}
.form-content textarea {
  height: 12rem;
}
@media (min-width: 650px) {
  .form-content textarea {
    height: 220px;
  }
}
.form-content select {
  position: relative;
}
@media (min-width: 650px) {
  .form-content select {
    height: 52px;
  }
}
.form-content select::after {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2212%22%20viewBox%3D%220%200%2018%2012%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M2%202L9.00006%2010L16%202%22%20stroke%3D%22%23FFD000%22%20stroke-width%3D%224%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 0.7rem;
  height: 0.5rem;
  transform: translateY(-50%);
  right: 1.5rem;
  top: 50%;
}
@media (min-width: 650px) {
  .form-content select::after {
    width: 14px;
    height: 10px;
    right: 18px;
  }
}
.form-content .mwform-tel-field input[type=text],
.form-content .mwform-zip-field input[type=text] {
  width: 30%;
}
@media (min-width: 650px) {
  .form-content .mwform-tel-field input[type=text],
  .form-content .mwform-zip-field input[type=text] {
    width: 30%;
  }
}

/*---------------------------------------------
*
* NEWS
*  /news/
*
---------------------------------------------*/
.wrap-page-news {
  background: #F3F3F3;
}
.wrap-page-news #kv-lower-page h2 {
  margin-top: 4.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news #kv-lower-page h2 {
    margin-top: 72px;
  }
}
.wrap-page-news .news {
  padding: 5rem 0 10rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news {
    padding: 80px 0 160px;
  }
}
.wrap-page-news .news .tab-list {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  border-bottom: 1px solid #FF0000;
}
@media (min-width: 650px) {
  .wrap-page-news .news .tab-list {
    gap: 6px;
    border-bottom-width: 2px;
  }
}
.wrap-page-news .news .tab-list li {
  width: 25%;
}
.wrap-page-news .news .tab-list li a {
  display: block;
  width: 100%;
  background: #FF0000;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: 1rem 0;
  border-radius: 0.5rem 0.5rem 0 0;
  font-feature-settings: "palt";
}
@media (min-width: 650px) {
  .wrap-page-news .news .tab-list li a {
    font-size: 22px;
    padding: 18px 0;
    border-radius: 12px 12px 0 0;
  }
}
.wrap-page-news .news .tab-list li.is-active a {
  background: rgba(255, 0, 0, 0.337254902);
}
.wrap-page-news .news .keyword {
  margin-top: 4rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword {
    margin-top: 64px;
  }
}
.wrap-page-news .news .keyword__text {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword__text {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.wrap-page-news .news .keyword__form {
  display: flex;
  border: 1px solid #FF0000;
  border-radius: 0.5rem;
  justify-content: space-between;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword__form {
    border-width: 2px;
    border-radius: 12px;
  }
}
.wrap-page-news .news .keyword__form input {
  width: 100%;
  font-size: 2.5rem;
  padding-left: 1.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword__form input {
    font-size: 28px;
    padding-left: 22px;
    line-height: 78px;
    height: 78px;
  }
}
.wrap-page-news .news .keyword__form input::placeholder {
  color: #BFBFBF;
  font-size: 2.5rem;
  line-height: 1;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword__form input::placeholder {
    font-size: 22px;
  }
}
.wrap-page-news .news .keyword__form button {
  background: #FF0000;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword__form button {
    width: 86px;
    height: 86px;
  }
}
.wrap-page-news .news .keyword__form button img {
  width: 2.2rem;
  height: auto;
}
@media (min-width: 650px) {
  .wrap-page-news .news .keyword__form button img {
    width: 32px;
  }
}
.wrap-page-news .news .category {
  background: #FF0000;
  border: 2px solid #FF0000;
  border-radius: 0.5rem;
  margin-top: 2.5rem;
  overflow: hidden;
}
@media (min-width: 650px) {
  .wrap-page-news .news .category {
    border-radius: 12px;
    margin-top: 40px;
  }
}
.wrap-page-news .news .category__title {
  position: relative;
  font-size: 2.5rem;
  color: #fff;
  background: #FF0000;
  padding: 2rem 2.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .category__title {
    font-size: 28px;
    padding: 22px 28px;
  }
}
.wrap-page-news .news .category__title::after {
  content: "＋";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 2.5rem;
  color: #fff;
}
@media (min-width: 650px) {
  .wrap-page-news .news .category__title::after {
    right: 28px;
    font-size: 40px;
  }
}
.wrap-page-news .news .category__title.active::after {
  content: "－";
}
.wrap-page-news .news .category__list {
  background: #fff;
}
.wrap-page-news .news .category__list li {
  border-bottom: 1px solid #000;
}
@media (min-width: 650px) {
  .wrap-page-news .news .category__list li {
    border-bottom-width: 2px;
  }
}
.wrap-page-news .news .category__list li:last-of-type {
  border-bottom: none;
}
.wrap-page-news .news .category__list li a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 2rem 2.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .category__list li a {
    font-size: 28px;
    padding: 22px 28px;
  }
}
.wrap-page-news .news .category__list li a::before {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2257%22%20height%3D%2257%22%20viewBox%3D%220%200%2057%2057%22%20fill%3D%22none%22%3E%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%2256%22%20height%3D%2256%22%20rx%3D%2228%22%20fill%3D%22%23FF0000%22%2F%3E%3Crect%20x%3D%220.5%22%20y%3D%220.5%22%20width%3D%2256%22%20height%3D%2256%22%20rx%3D%2228%22%20stroke%3D%22white%22%2F%3E%3Cpath%20d%3D%22M24%2020.1923L33%2028.5L24%2036.8076%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22square%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 2.8rem;
  height: 2.8rem;
  transform: translateY(-50%);
  top: 50%;
  right: 2.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .category__list li a::before {
    width: 38px;
    height: 38px;
    right: 28px;
  }
}
.wrap-page-news .news .news-list {
  margin: 5rem 0;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list {
    margin: 80px 0;
  }
}
.wrap-page-news .news .news-list > li {
  border-bottom: 1px solid #A6A6A6;
  background: #fff;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list > li {
    border-bottom-width: 2px;
  }
}
.wrap-page-news .news .news-list > li:last-of-type {
  border-bottom: none;
}
.wrap-page-news .news .news-list > li a {
  display: block;
  padding: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list > li a {
    padding: 18px;
  }
}
.wrap-page-news .news .news-list__cont {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__cont {
    gap: 18px;
  }
}
.wrap-page-news .news .news-list__thumb {
  width: 45%;
  aspect-ratio: 3/2;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__thumb {
    width: 222px;
    flex: 0 0 320px;
  }
}
.wrap-page-news .news .news-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-page-news .news .news-list__text-area {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: auto;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__text-area {
    width: auto;
    gap: 10px;
  }
}
.wrap-page-news .news .news-list__date {
  font-size: 1.4rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__date {
    font-size: 18px;
  }
}
.wrap-page-news .news .news-list__title {
  font-size: 1.5rem;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__title {
    font-size: 22px;
    line-height: 1.55;
    -webkit-line-clamp: 4;
  }
}
.wrap-page-news .news .news-list__ref-price {
  margin-top: auto;
  font-size: 1.2rem;
  font-weight: 700;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__ref-price {
    font-size: 20px;
  }
}
.wrap-page-news .news .news-list__ref-price span {
  font-size: 1.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__ref-price span {
    font-size: 26px;
  }
}
.wrap-page-news .news .news-list__cate {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.7rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__cate {
    gap: 10px 14px;
    margin-top: 12px;
  }
}
.wrap-page-news .news .news-list__cate li {
  color: #fff;
  font-size: 1.2rem;
  background: #FF0000;
  width: 8.7rem;
  text-align: center;
  padding: 0.3rem 0;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list__cate li {
    font-size: 18px;
    width: auto;
    padding: 8px;
  }
}
.wrap-page-news .news .news-list-none {
  margin-top: 5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .news-list-none {
    margin-top: 80px;
    font-size: 22px;
    line-height: 1.8;
    text-align: center;
  }
}
.wrap-page-news .news .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  list-style: none;
}
@media (min-width: 650px) {
  .wrap-page-news .news .page-numbers {
    gap: 14px;
  }
}
.wrap-page-news .news .page-numbers li {
  list-style: none;
}
.wrap-page-news .news .page-numbers a,
.wrap-page-news .news .page-numbers span {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-sizing: border-box;
}
@media (min-width: 650px) {
  .wrap-page-news .news .page-numbers a,
  .wrap-page-news .news .page-numbers span {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
}
.wrap-page-news .news .page-numbers a.page-numbers {
  background: #d9d9d9;
  color: #fff;
}
.wrap-page-news .news .page-numbers span.page-numbers.current {
  background: #e60012;
  color: #fff;
}
.wrap-page-news .news .page-numbers span.page-numbers.dots {
  width: auto;
  height: auto;
  background: transparent;
  color: #111;
}
@media (min-width: 650px) {
  .wrap-page-news .news .page-numbers span.page-numbers.dots {
    font-size: 26px;
  }
}
.wrap-page-news .news .page-numbers a.prev,
.wrap-page-news .news .page-numbers a.next {
  background: #fff;
  border: 1px solid #111;
  color: #111;
  font-size: 2.5rem;
  font-weight: normal;
  padding-bottom: 0.5rem;
}
@media (min-width: 650px) {
  .wrap-page-news .news .page-numbers a.prev,
  .wrap-page-news .news .page-numbers a.next {
    border-width: 2px;
    font-size: 34px;
    padding-bottom: 8px;
  }
}

/*--------------------------
single
--------------------------*/
/*---------------------------------------------
*
* single
*
---------------------------------------------*/
.wrap-single #kv-lower-page h2 {
  margin-top: 5rem;
}
@media (min-width: 650px) {
  .wrap-single #kv-lower-page h2 {
    margin-top: 72px;
  }
}
.wrap-single .single {
  padding-bottom: 10rem;
}
@media (min-width: 650px) {
  .wrap-single .single {
    padding-bottom: 160px;
  }
}
.wrap-single .single__title {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 2rem 0;
}
@media (min-width: 650px) {
  .wrap-single .single__title {
    font-size: 33px;
    line-height: 1.5;
    margin: 32px 0;
  }
}
.wrap-single .single__thumb {
  aspect-ratio: 1/1;
}
@media (min-width: 650px) {
  .wrap-single .single__thumb {
    margin: 0 auto;
  }
}
.wrap-single .single__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-single .single__date {
  font-size: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 650px) {
  .wrap-single .single__date {
    font-size: 22px;
    margin-top: 24px;
  }
}
.wrap-single .single__content {
  margin: 2rem 0 5rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content {
    margin: 32px 0 80px;
  }
}
.wrap-single .single__content p {
  margin: 2.4rem 0;
}
@media (min-width: 650px) {
  .wrap-single .single__content p {
    margin: 28px 0;
    font-size: 22px;
    line-height: 1.9;
  }
}
.wrap-single .single__content strong {
  font-weight: bold;
}
.wrap-single .single__content em {
  font-style: italic;
}
.wrap-single .single__content a {
  color: #FF0000;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .wrap-single .single__content a:hover {
    text-decoration: none;
  }
}
.wrap-single .single__content h2 {
  font-size: 2rem;
  font-weight: bold;
  background: #FFEE00;
  padding: 0.5rem 1rem;
  margin: 4rem 0 2.4rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content h2 {
    font-size: 30px;
    padding: 14px 18px;
    margin: 72px 0 28px;
  }
}
.wrap-single .single__content h3 {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 3px solid #C9C9C9;
  margin: 2.4rem 0;
  padding-bottom: 1rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content h3 {
    font-size: 28px;
    border-bottom-width: 4px;
    margin: 32px 0;
    padding-bottom: 14px;
  }
}
.wrap-single .single__content figure {
  margin: 2.4rem 0;
}
@media (min-width: 650px) {
  .wrap-single .single__content figure {
    margin: 32px 0;
  }
}
.wrap-single .single__content ul {
  margin: 2.4rem 0 2.4rem 1rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content ul {
    margin: 32px 0 32px 16px;
    font-size: 22px;
    line-height: 1.9;
  }
}
.wrap-single .single__content ul li {
  position: relative;
  padding-left: 1rem;
  margin: 0.5rem 0;
}
@media (min-width: 650px) {
  .wrap-single .single__content ul li {
    padding-left: 18px;
    margin: 10px 0;
  }
}
.wrap-single .single__content ul li::before {
  position: absolute;
  content: "";
  top: 0.5rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-base-black);
  border-radius: 50%;
}
@media (min-width: 650px) {
  .wrap-single .single__content ul li::before {
    top: 14px;
    width: 8px;
    height: 8px;
  }
}
.wrap-single .single__content ul li ul.wp-block-list {
  margin: 0;
}
.wrap-single .single__content ul li ul.wp-block-list li::before {
  background: #fff;
  border: 0.5px solid var(--color-base-black);
}
@media (min-width: 650px) {
  .wrap-single .single__content ul li ul.wp-block-list li::before {
    border-width: 1px;
  }
}
.wrap-single .single__content ol {
  margin: 2.4rem 0 2.4rem 1rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content ol {
    margin: 32px 0 32px 16px;
    font-size: 22px;
    line-height: 1.9;
  }
}
.wrap-single .single__content ol > li {
  position: relative;
  margin: 0.5rem 0;
  list-style: decimal;
  list-style-position: inside;
  padding-left: 0;
}
@media (min-width: 650px) {
  .wrap-single .single__content ol > li {
    margin: 10px 0;
  }
}
.wrap-single .single__content ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.wrap-single .single__content ol > li ul.wp-block-list {
  margin: 0 0 0 2rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content ol > li ul.wp-block-list {
    margin-left: 28px;
  }
}
.wrap-single .single__content ol > li ul.wp-block-list li {
  list-style: none;
}
.wrap-single .single__content ol > li ul.wp-block-list li::before {
  content: "";
  background: #fff;
  border: 0.5px solid var(--color-base-black);
  top: 0.6rem;
}
@media (min-width: 650px) {
  .wrap-single .single__content ol > li ul.wp-block-list li::before {
    border-width: 1px;
    top: 14px;
  }
}
.wrap-single .single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 5rem;
}
@media (min-width: 650px) {
  .wrap-single .single__tags {
    gap: 10px 14px;
    margin-bottom: 80px;
  }
}
.wrap-single .single__tags li a {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  background: #FF0000;
  width: 8.7rem;
  padding: 0.3rem 0;
  text-align: center;
}
@media (min-width: 650px) {
  .wrap-single .single__tags li a {
    font-size: 18px;
    width: 140px;
    padding: 8px 0;
  }
}
.wrap-single .single__back a {
  display: block;
  background: #FF0000;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0.5rem;
  padding: 2rem 0;
}
@media (min-width: 650px) {
  .wrap-single .single__back a {
    font-size: 26px;
    border-radius: 12px;
    padding: 22px 0;
    width: 350px;
    margin: 0 auto;
  }
}

/*# sourceMappingURL=style.css.map */
