@charset "UTF-8";
/*
Theme Name: instrument-cms
Version: 1.0
Author:	Rockstream
License: GPL
License URI: https://www.gnu.org/copyleft/gpl.html
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&family=Noto+Serif+JP:wght@500&display=swap");

/* ------------------------
   共通：画像・ボタンの最大幅制御
------------------------ */
img,
.cta_btn img,
.btn img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------
   スマホ全般対応（768px以下）
------------------------ */
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }

  .mv_wrap.sp,
  .footer_cta-area,
  .cta_btn,
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 0 0px;
    box-sizing: border-box;
  }

  #cta_content,
  #footer_cta {
    text-align: center;
  }

  .cta_btn,
  .btn {
    margin: 1px auto;
    display: inline-block;
  }

  /* ボタン画像もスマホ幅に合わせて調整 */
  .cta_btn img,
  .btn img {
    max-width: 100%;

  }
}

/* ------------------------
   小型スマホ対応（420px以下）
------------------------ */
@media screen and (max-width: 420px) {
  body {
    font-size: 15px;
  }

  .cta_btn,
  .btn {
    margin: 10px auto;
  }

  .mv_wrap.sp {
    padding: 0 0px;
  }

  /* フォントサイズなど必要に応じて縮小 */
  h1, h2, h3 {
    font-size: 90%;
  }

  /* テーブル（会社概要）の横スクロール対応 */
  table {
    width: 100%;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  /* ボタンエリアを背景画像の上に縦配置 */
.btn_area {
  gap: 1px;
  padding: 2px;
  margin-top: 40%
 }
/* ボタン画像サイズ調整 */
.cta_btn {
  width: 90%;
  max-width: 390px;
  margin: 1px auto;
 }

}

/* ------------------------
   CTAセクション背景 + ボタンオーバーレイ配置
------------------------ */
.mv-title__text,
.promise-title__text,
.pachievements-title__text,
.voice-title__text
 {
  position: absolute;
  left: -9999px;
}


/* MV タイトル用 h1,h2 */
.mv-title,
.promise-title,
.pachievements-title,
.voice-title {
  margin: 0;          /* 上下の余白をなくす */
  padding: 0;
}

/* 中の画像もブロック化しておくと安定 */
.mv-title img {
  display: block;
  width: 100%;
  height: auto;
}

/* 約束セクション用 */
#promise_content .mv_wrap.sp {
  position: relative;      /* 中の画像を絶対配置するため */
  max-width: 760px;
  margin: 0 auto;
}

/* 1枚目：緑タイトル帯を上にかぶせる */
#promise_content .mv_wrap.sp img:first-child {
  position: absolute;
  top: 30px;                 /* 必要なら 10px などに調整 */
  left: 50%;
  transform: translateX(-50%);  /* 中央寄せ */

  width: 90%;             /* タイトル画像を小さめにする */
  max-width: 500px;       /* お好みで調整 */
  z-index: 2;
}

/* 2枚目：本文の大きい画像はそのまま背景扱い */
#promise_content .mv_wrap.sp img:last-child {
  position: relative;
  z-index: 1;
}

/* 買取実績セクション用 */
#pachievements_content .mv_wrap.sp {
  position: relative;      /* 中の画像を絶対配置するため */
  max-width: 760px;
  margin: 0 auto;
}

/* タイトル画像（1枚目）を小さく＆中央寄せ */
#pachievements_content .mv_wrap.sp img:first-child {
  position: absolute;
  top: 15px;                 /* 必要なら 10px などに調整 */
  left: 50%;
  transform: translateX(-50%);  /* 中央寄せ */

  width: 40%;             /* タイトル画像を小さめにする */
  max-width: 500px;       /* お好みで調整 */
  z-index: 2;
}
/* 2枚目：本文の大きい画像はそのまま背景扱い */
#pachievements_content .mv_wrap.sp img:last-child {
  position: relative;
  z-index: 1;
}

#pachievements_content .mv_wrap.sp {
  position: relative;      /* 中の画像を絶対配置するため */
  max-width: 760px;
  margin: 0 auto;
}

/* タイトル画像（1枚目）を小さく＆中央寄せ */
#voice_content .mv_wrap.sp.ttl img:first-child {
  position: absolute;
  top: 0px;                 /* 必要なら 10px などに調整 */
  left: 50%;
  transform: translateX(-50%);  /* 中央寄せ */

  width: 100%;             /* タイトル画像を小さめにする */
  max-width: 500px;       /* お好みで調整 */
  z-index: 2;
}
/* 2枚目：本文の大きい画像はそのまま背景扱い */
#voice_content .mv_wrap.sp.ttl img:last-child {
  position: relative;
  z-index: 1;
}

/* CTAセクション構造用CSS */
.cta_wrapper {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.cta_bg {
  width: 100%;
}

.cta_bg .bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.btn_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ← 上からスタート */

  padding: 16px;
  margin-top: 84%; /* ← この数値で「下寄せ具合」を調整 */
  box-sizing: border-box;
  gap: 8px;

  pointer-events: none;
}

.btn_area a {
  pointer-events: auto;
}

.sticky_cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 9999;
  padding: 10px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);

  transition: transform 0.3s ease; /* アニメーション */
}

/* 隠すときに下にスライド */
.sticky_cta.is-hidden {
  transform: translateY(100%);
}

.cta_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.cta_tel {
  flex: 0 0 80%;
  margin-right: 4px;
}

.cta_mail {
  flex: 0 0 20%;
}

.cta_tel img,
.cta_mail img {
  width: 100%;
  height: auto;
  display: block;
}

#voice_content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.voice-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* 背景の上にかぶせる部分 */
.voice-inner {
  position: absolute;
  /* ここで下げ具合を調整 */
  top: 20%;          /* ←タイトルに被るようなら 20〜22% くらいまで増やして調整 */
  left: 0;
  right: 0;
  bottom: auto;

  display: flex;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;   /* 外側はクリックさせない */
}

.voice-slider {
  width: 90%;
  max-width: 600px;
  pointer-events: auto;   /* スライドだけクリックOK */
  padding-bottom: 40px;   /* 下に●●●と矢印用のスペースを少し確保 */
  z-index: 3;
}


.voice-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Slick の矢印（大きく＆色付き）---- */
#voice_content .slick-prev,
#voice_content .slick-next {
  width: 40px;
  height: 40px;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

#voice_content .slick-prev { left: -20px; }
#voice_content .slick-next { right: -20px; }

#voice_content .slick-prev:before,
#voice_content .slick-next:before {
  font-size: 24px;
  line-height: 40px;
  color: #008f3b;           /* 矢印の色（お好みで変更OK） */
  opacity: 1;
}

/* ---- Slick のドット（●を大きく＆コントラスト強め）---- */
#voice_content .slick-dots {
  bottom: 14px;             /* 位置（少し上げたい/下げたい時はここ） */
}

#voice_content .slick-dots li {
  margin: 0 6px;
}

#voice_content .slick-dots li button {
  width: 14px;
  height: 14px;
}

#voice_content .slick-dots li button:before {
  font-size: 14px;          /* ●の大きさ */
  color: #ffffff;           /* 非アクティブ色 */
  opacity: 0.5;
}

#voice_content .slick-dots li.slick-active button:before {
  color: #008f3b;           /* アクティブの●の色（緑） */
  opacity: 1;
}

/* 会社概要セクション */
.company-section {
  background-color: #008733;   /* 緑の背景色 */
  color: #ffffff;
  padding: 24px 16px 32px;
  text-align: left;
}

.company-inner {
  max-width: 720px;
  margin: 0 auto;
}

.company-title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 16px;
}

.company-text p {
  margin: 4px 0;
  line-height: 1.6;
  font-size: 14px;
}

/* コピーライト帯 */
.copyright-bar {
  background-color: #111111;   /* 黒帯 */
  color: #ffffff;
  text-align: center;
  font-size: 10px;
  padding: 8px 0;
}

/* スマホちょい調整 */
@media screen and (max-width: 480px) {
  .company-title {
    font-size: 20px;
  }
  .company-text p {
    font-size: 13px;
  }
}

/* ===============================
   FAQ セクション
================================ */
.faq-section {
  background-color: #f3f3f3;
  padding: 24px 12px 40px;
}

.faq-header {
  text-align: center;
  margin: 0 0 16px;
  padding: 0;
  background: none; /* もとの緑帯は画像に任せる */
}

.faq-title-img {
  width: 100%;
  height: auto;
  display: block;
}


.faq-header h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item + .faq-item {
  margin-top: 8px;
}

/* 質問行（ボタン） */
.faq-question {
  width: 100%;
  border: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
}

.faq-q-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00a63a;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.faq-question-text {
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.faq-toggle-icon {
  flex: 0 0 auto;
  font-size: 18px;
  color: #999;
  margin-left: 8px;
}

/* 開いているときの見た目 */
.faq-item.is-open .faq-question {
  border-radius: 8px 8px 0 0;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

.faq-item.is-open .faq-toggle-icon {
  transform: rotate(45deg); /* ＋ → × っぽく */
  color: #00a63a;
}

/* 回答部分 */
.faq-answer {
  display: none;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  padding: 10px 14px 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-answer p {
  margin: 0;
}

/* スマホ調整 */
@media screen and (max-width: 420px) {
  .faq-header h2 {
    font-size: 18px;
  }

  .faq-question-text {
    font-size: 13px;
  }

  .faq-answer {
    font-size: 12px;
  }
}

/* =========================
   取り扱い品目一覧
========================= */
.item-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.item-bg-wrapper {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.item-bg {
  width: 100%;
  height: auto;
  display: block;
}

/* 白いスクロールボックス */
.item-scroll-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 130px;               /* 背景タイトルの下に来るよう調整 */
  width: 88%;
  max-width: 640px;
  height: 480px;            /* 1画面内に収まる高さ。必要なら数値調整 */
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 10px;
  box-sizing: border-box;
  overflow-y: auto;
}

/* 中身を2カラムで縦スクロール */
.item-scroll-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 8px;
  row-gap: 16px;
}

/* 各カード */
.item-card {
  background: #f2f2f2;
  border-radius: 4px;
  padding: 4px 4px 8px;
  box-sizing: border-box;
  text-align: center;
}

.item-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px 2px 0 0;  /* 画像側だけ角丸でも◎ */
}

/* タイトル（画像の下のバー） */
.item-title {
  margin-top: 0;                 /* すき間なしでくっつける */
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  background: #01217f;           /* ネイビー背景 */
  color: #ffffff;                /* 文字色は白 */
  padding: 6px 4px;
  border-radius: 0 0 2px 2px;    /* 下側だけ角丸 */
}


/* 小さい端末向け微調整 */
@media screen and (max-width: 420px) {
  .item-scroll-wrapper {
    top: 120px;
    height: 420px;
    padding: 12px 8px;
  }
  .item-title {
    font-size: 11px;
  }
}

/* ------------------------------
   #contact セクション
------------------------------ */
#contact,
#contact * {
  box-sizing: border-box;
}

#contact {
  position: relative;
}

/* ------------------------------
   .form-area（フォーム枠）
------------------------------ */
.form-area {
  position: relative;
  max-width: 1160px;
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
  border: 8px solid #0a762a;
}

.form-area h2 {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
  font-size: 30px;
}

.form-area h2 br:nth-of-type(1) {
  display: none;
}

.form-area .mail {
  margin-bottom: 20px;
  text-align: center;
}

.form-area .mail a {
  font-weight: bold;
  color: red;
  text-decoration: underline;
}

.form-area .txt01,
.form-area .txt02 {
  max-width: 1030px;
  width: 94%;
  margin: 0 auto 30px;
}

/* ------------------------------
   .form-group（CF7本体・PC）
------------------------------ */
.form-group dl {
  width: 100%;
  margin: 0 auto 5px;
  display: flex;
  align-items: center;
}

.form-group dl dt {
  width: 30%;
  padding: 15px;
  font-weight: bold;
  color: #0a0a0a;
  display: flex;
  align-items: center;
}

.form-group dl dt span {
  font-size: 26px;
}

.form-group dl dt span.required {
  display: block;
  color: #cb0000;
  float: right;
}

.form-group dl dd {
  width: 70%;
  padding: 15px 30px;
}

.form-group dl dd .w100 {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 3px 3px 3px #ccc inset;
}

.form-group dl dd input[type="text"],
.form-group dl dd textarea {
  border: 1px solid #ccc;
  box-shadow: 3px 3px 3px #ccc inset;
}

.form-group input,
.form-group textarea {
  font-size: 100%;
}

.form-group dl dd.upload .mw-wp-form_image {
  width: 23%;
  margin-left: 2%;
}

.mw_wp_form_confirm dl dd.upload .mw-wp-form_image {
  width: 100%;
  margin-left: 0;
}

.form-group dl dd.upload .mw-wp-form_image img {
  max-width: 200px;
}

.form-group dl dd.upload input {
  font-size: 85%;
}

.form-group input.zip {
  padding: 10px;
}

.form-group .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.form-group span.mwform-tel-field input[name="tel[data][0]"] {
  width: 15%;
  padding: 10px;
}

.form-group span.mwform-tel-field input[name="tel[data][1]"],
.form-group span.mwform-tel-field input[name="tel[data][2]"] {
  width: 20%;
  padding: 10px;
}

/* プライバシーボックス */
.form-group .privacy_box {
  max-width: 840px;
  width: 94%;
  height: 300px;
  margin: 10px auto 30px;
  padding: 20px 0;
  border: 1px solid #000;
  overflow: auto;
}

.form-group .privacy_box .inner {
  max-width: 670px;
  width: 94%;
  margin: auto;
}

.form-group .privacy_box h3 {
  margin-bottom: 10px;
  text-align: center;
}

.form-group .privacy_box h4 {
  margin-bottom: 5px;
}

.form-group .privacy_box p {
  margin-bottom: 15px;
}


.form-group input.return {
  width: 100px;
  height: 52px;
  margin: 0 1%;
  padding: 10px 0;
  font-size: 85%;
  color: #fff;
  background: #ff3600;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  box-shadow: none;
  border: none;
  border-radius: 10px;
  line-height: 1;
}

/* 同意チェック */
.form-group .check_policy {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-group .check_policy label input {
  width: 15px;
  height: 15px;
  line-height: 1;
}

.form-group .check_policy .mwform-checkbox-field-text {
  display: none;
}

.form-group .check_policy span {
  color: red;
}

.form-group .check_policy span.wpcf7-list-item-label {
  display: none;
}

.form-group .complete {
  text-align: center;
}

/* ------------------------------
   確認画面・戻るボタン
------------------------------ */
.mw_wp_form_confirm .check_policy {
  display: none;
}

.return {
  max-width: 368px;
  width: 50%;
  margin: 60px auto 0;
}

/* ------------------------------
   スマホ（〜760px）
------------------------------ */
@media only screen and (max-width: 760px) {

  /* フォーム枠の余白＆タイトル */
  .form-area {
    padding: 30px 0;
  }

  .form-area h2 {
    margin-bottom: 30px;
    font-size: 24px;
  }

  /* 項目ブロック */
  .form-group dl {
    background-color: transparent;
    display: block;
    width: 100%;
    margin: 0 4px;   /* 各項目間を少し詰める */
  }

  .form-group dl dt {
    width: 100%;
    padding: 6px 5px 2px; /* ラベルの上下余白を減らす */
  }

  .form-group dl dt span {
    font-size: 100%;
  }

  .form-group dl dd {
    width: 94%;           /* 少し内側に寄せる */
    padding: 5px 5px;     /* 入力欄まわりの余白を少なめに */
    margin: 0 auto 6px;
    box-sizing: border-box;
  }

  /* 入力欄本体は dd 内で100% */
  .form-group dl dd .w100,
  .form-group dl dd input[type="text"],
  .form-group dl dd textarea,
  .form-group dl dd input[type="file"] {
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: block;
    box-sizing: border-box;
  }

  /* 特定行だけ背景色を変える指定が必要なら残す */
  .form-group dl:nth-of-type(8) dt,
  .form-group dl:nth-of-type(9) dt {
    padding-left: 15px;
    padding-bottom: 0;
  }

  .form-group dl:nth-of-type(8) dd,
  .form-group dl:nth-of-type(9) dd {
    background-color: #fff;
  }

  .form-group .privacy_box {
    width: 90%;
    height: 200px;
    margin: 10px auto 0px;
  }

  .form-group input.return {
    height: 50px;
  }

  /* 送信ボタンを中央寄せ */
.form-group .wpcf7-submit {
  display: block;          /* インライン → ブロックに */
  margin: 30px auto 0;     /* 左右 auto で中央寄せ */
}

/* 送信ボタンを中央寄せにする */
.form-group form.wpcf7-form {
  text-align: center;           /* フォーム内のインライン要素を中央に */
}

/* 他の項目（ラベルや本文）は左寄せに戻す */
.form-group form.wpcf7-form dl,
.form-group form.wpcf7-form .privacy_box {
  text-align: left;
}



}

/* ------------------------------
   スマホ小さめ（〜414px）
------------------------------ */
@media only screen and (max-width: 414px) {
  .form-area h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .form-area h2 br:nth-of-type(1) {
    display: block;
  }

  .form-group dl {
    width: 100%;
  }

  .form-group dl dt {
    padding-top: 0;
  }


  .form-group input.return {
    height: 40px;
  }

  .return {
    margin: 30px auto 0;
  }
}


/* 入力欄まわりの上下マージンを詰める */
.form-group dl dd p {
  margin: 2px 0;   /* もっと詰めたければ 0 にしてOK */
}


/* =========================
   お問い合わせフォーム 送信ボタン
========================= */

/* ボタンを包んでいる <p class="btn_form"> の設定 */
#contact .btn_form {
  width: 100%;
  margin: 30px auto 0;
  text-align: center;          /* 中のボタンを中央寄せ */
  padding: 30px 0;
}

/* 送信ボタン本体（図形＋テキスト） */
#contact .btn_form .btn_confirm,
#contact .btn_form .wpcf7-submit {
  display: inline-block;
  padding: 14px 40px;          /* ボタンの高さ・横幅感はここで調整 */
  min-width: 220px;

  background-color: #e60012;   /* 赤 */
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;

  border: none;
  border-radius: 6px;        /* まるっとしたピル型。四角が良ければ 6px くらいに */
  cursor: pointer;

  box-shadow: 0 3px 0 #aa000d; /* ちょっと立体感 */
  line-height: 1;
}


/* スマホで少しだけ小さくしても OK */
@media (max-width: 480px) {
  #contact .btn_form .btn_confirm,
  #contact .btn_form .wpcf7-submit {
    font-size: 16px;
    padding: 12px 32px;
    min-width: 200px;
  }
}

/* 送信ボタンエリアを privacy_box と同じ幅で中央寄せ */
#contact .btn_form {
  width: 94%;               /* privacy_box と合わせる */
  max-width: 840px;         /* privacy_box と合わせる */
  margin: 30px auto 0;      /* 左右 auto で中央に */
  padding: 0;

  display: flex;            /* 中身（ボタン）を中央寄せ */
  justify-content: center;
  align-items: center;
}


/* 送信ボタン本体（見た目） */
#contact .btn_form .btn_confirm,
#contact .btn_form .wpcf7-submit {
  display: inline-block;
  padding: 14px 40px;
  min-width: 220px;

  background-color: #e60012;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;

  border: none;
  border-radius: 6px;
  cursor: pointer;

  box-shadow: 0 3px 0 #aa000d;
  line-height: 1;
  margin: 0;               /* 左右に勝手な余白が入らないように */
}
