@charset "UTF-8";
/* =========================================================================
   ハリストップライン株式会社  ｜ テーマCSS（モックアップ準拠）
   ティファニーグリーン主役／ネイビー締め／ゴールド差し色
   ========================================================================= */
:root {
  /* ベースカラー：シルバーグレー ／ メインカラー：ネイビー ／ アクセント：イエロー */
  --tiffany:#16335a;
  --tiffany-deep:#0e1f3a;
  --tiffany-light:#eef2f6;
  --navy:#0e1f3a;
  --gold:#d3a739;
  --gold-light:#e9c766;
  --ink:#2a2f36;
  --bg:#ffffff;
  --gray:#e8ecf1;
  --line:#dde1e7;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Murecho", sans-serif;
  color: var(--ink);
  line-height: 1.8;
  background: #f2f4f7;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

.en {
  font-family: "Jost", sans-serif;
  letter-spacing: 0.08em;
}

h1, h2, h3, h4 {
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
}

.br_sp {
  display: none;
}

@media (max-width: 900px) {
  .br_sp {
    display: inline;
  }
  .br_pc {
    display: none;
  }
}
/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 14px rgba(14, 31, 58, 0.06);
  backdrop-filter: blur(6px);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 2rem;
  max-width: 1500px;
  margin: auto;
}

.header_logo img {
  height: 54px;
  width: auto;
}

.header_nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.header_nav .menu {
  display: flex;
  gap: 1.5rem;
}

.header_nav .menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: 0.3s;
}

.header_nav .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}

.header_nav .menu a:hover {
  color: var(--gold);
}

.header_nav .menu a:hover::after {
  width: 100%;
}

.header_contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--tiffany);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(14, 31, 58, 0.28);
}

.header_contact a:hover {
  background: var(--navy);
}

.hamburger {
  display: none;
}

.sp_menu {
  display: none;
}

/* ===== 下層共通ヒーロー ===== */
.lower {
  position: relative;
  height: 340px;
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lower_bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  background-color: var(--navy);
}

.lower::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 31, 58, 0.72), rgba(22, 51, 90, 0.5));
  z-index: 1;
}

.lower_ttl {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.lower_ttl h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.lower_ttl span {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-weight: 500;
}

/* ===== セクション共通 ===== */
section {
  position: relative;
}

.wrap {
  max-width: 1140px;
  margin: auto;
  padding: 0 1.5rem;
}

.sec-ttl {
  text-align: center;
  margin-bottom: 3rem;
}

.sec-ttl .en {
  display: block;
  font-size: 2.6rem;
  color: var(--tiffany);
  font-weight: 600;
  line-height: 1;
}

.sec-ttl .jp {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  position: relative;
  padding: 0 1.4rem;
}

.sec-ttl .jp::before, .sec-ttl .jp::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.2rem;
  height: 1px;
  background: var(--gold);
}

.sec-ttl .jp::before {
  left: -0.4rem;
}

.sec-ttl .jp::after {
  right: -0.4rem;
}

/* ===== TOP メインビジュアル ===== */
#hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  margin-top: 70px;
  overflow: hidden;
}

#hero .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}

#hero .slide.active {
  opacity: 1;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(14, 31, 58, 0.6) 0%, rgba(14, 31, 58, 0.2) 55%, rgba(22, 51, 90, 0.4) 100%);
  z-index: 1;
}

.hero_copy {
  position: absolute;
  left: 7%;
  bottom: 18%;
  z-index: 3;
  color: #fff;
}

.hero_copy .tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.hero_copy h2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 3px 16px rgba(14, 31, 58, 0.5);
}

.hero_copy h2 .accent {
  color: var(--gold-light);
}

.hero_copy p {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(14, 31, 58, 0.5);
}

.hero_scroll {
  position: absolute;
  right: 5%;
  bottom: 6%;
  z-index: 3;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero_scroll::after {
  content: "";
  width: 1px;
  height: 50px;
  background: #fff;
  animation: scrolldown 2s ease infinite;
}

@keyframes scrolldown {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
/* ===== 買取CTAバナー ===== */
#buy-cta {
  background: linear-gradient(115deg, var(--tiffany) 0%, var(--tiffany-deep) 100%);
  color: #fff;
  padding: 3.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

#buy-cta::before {
  content: "\f1b9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -10px;
  bottom: -30px;
  font-size: 13rem;
  opacity: 0.08;
  line-height: 1;
}

.buy-cta_inner {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.buy-cta_txt h2 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.buy-cta_txt h2 b {
  color: var(--gold-light);
}

.buy-cta_txt p {
  font-size: 1rem;
  opacity: 0.95;
}

.buy-cta_btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--tiffany-deep);
  font-weight: 700;
  padding: 1rem 2.2rem;
  border-radius: 40px;
  font-size: 1.1rem;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(14, 31, 58, 0.2);
}

.buy-cta_btn a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ===== News ===== */
#news {
  background: var(--gray);
  padding: 5rem 0;
}

.news_box {
  background: #fff;
  border-radius: 16px;
  max-width: 840px;
  margin: auto;
  padding: 2.5rem 3rem;
  box-shadow: 0 10px 40px rgba(14, 31, 58, 0.06);
}

.news_box h2 {
  font-size: 2rem;
  color: var(--tiffany);
  font-family: "Jost", sans-serif;
  margin-bottom: 1.2rem;
}

.news_list li a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}

.news_list li a:hover {
  color: var(--tiffany);
  padding-left: 0.5rem;
}

.news_list .date {
  color: var(--tiffany);
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  white-space: nowrap;
}

.news_list .cat {
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  padding: 0.2rem 0.7rem;
  border-radius: 3px;
  white-space: nowrap;
}

.news_list .ttl {
  flex: 1;
  font-size: 0.95rem;
}

.news_list i {
  color: var(--gold);
}

.news_more {
  text-align: right;
  margin-top: 1rem;
}

.news_more a {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.news_more a:hover {
  color: var(--tiffany);
}

/* ===== ご挨拶 ===== */
#greeting {
  padding: 6rem 0;
  text-align: center;
  position: relative;
  background: #fff;
}

.greeting_inner {
  max-width: 760px;
  margin: auto;
}

.greeting_inner h2 {
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 1.8rem;
  line-height: 1.6;
}

.greeting_inner h2 b {
  color: var(--tiffany);
  border-bottom: 3px solid var(--gold-light);
}

.greeting_inner p {
  color: var(--ink);
  font-size: 1rem;
}

/* ===== 強み ===== */
#strength {
  background: var(--tiffany-light);
  padding: 6rem 0;
}

.strength_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 1rem;
}

.strength_card {
  background: #fff;
  border-radius: 14px;
  padding: 2.4rem 1.6rem;
  text-align: center;
  transition: 0.35s;
  border-bottom: 4px solid transparent;
}

.strength_card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--gold);
  box-shadow: 0 14px 34px rgba(14, 31, 58, 0.1);
}

.strength_card .ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tiffany), var(--tiffany-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}

.strength_card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.strength_card p {
  font-size: 0.9rem;
  color: var(--ink);
  text-align: left;
}

/* ===== 事業内容（top_biz 互い違い） ===== */
#biz {
  padding: 6rem 0;
}

.biz_row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 5rem;
  position: relative;
}

.biz_row:last-child {
  margin-bottom: 0;
}

.biz_img {
  width: 62%;
  height: 380px;
  overflow: hidden;
  border-radius: 6px;
}

.biz_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}

.biz_row:hover .biz_img img {
  transform: scale(1.06);
}

.biz_txt {
  width: 42%;
  background: #fff;
  padding: 2.6rem;
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(14, 31, 58, 0.12);
  position: relative;
  z-index: 2;
}

.biz_row:nth-child(odd) .biz_txt {
  margin-left: -4%;
}

.biz_row:nth-child(even) {
  flex-direction: row-reverse;
}

.biz_row:nth-child(even) .biz_txt {
  margin-right: -4%;
}

.biz_txt .num {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.biz_txt h3 {
  font-size: 1.5rem;
  color: var(--navy);
  margin: 0.3rem 0 1rem;
  font-weight: 700;
}

.biz_txt p {
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.biz_txt .more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--tiffany);
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
}

.biz_txt .more:hover {
  gap: 0.9rem;
  color: var(--gold);
}

/* ===== バナー2連 ===== */
#bnr {
  padding: 0 0 6rem;
}

.bnr_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.bnr_card {
  position: relative;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bnr_card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}

.bnr_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 31, 58, 0.6), rgba(14, 31, 58, 0.25));
}

.bnr_card:hover img {
  transform: scale(1.1);
}

.bnr_card span {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.bnr_card span small {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  text-align: center;
  margin-top: 0.2rem;
}

/* ===== Footer ===== */
footer {
  position: relative;
}

.footer_contact {
  position: relative;
  padding: 3.5rem 1.5rem;
  background: linear-gradient(115deg, var(--navy), #1a3257);
  color: #fff;
  overflow: hidden;
}

.footer_contact::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199, 154, 63, 0.18), transparent 70%);
}

.footer_inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.footer_logo {
  background: #fff;
  padding: 1rem 1.4rem;
  border-radius: 10px;
  display: inline-block;
}

.footer_logo img {
  height: 60px;
  width: auto;
}

.footer_addr {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer_msg {
  max-width: 340px;
}

.footer_msg .en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.footer_msg .en::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold-light);
  margin-top: 0.6rem;
  opacity: 0.7;
}

.footer_msg p {
  font-size: 0.88rem;
  line-height: 1.9;
  opacity: 0.9;
}

.footer_tel .tel {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.footer_tel .tel i {
  color: var(--gold-light);
}

.footer_tel .hours {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.footer_tel .mailbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--tiffany);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.footer_tel .mailbtn:hover {
  background: var(--gold);
  color: var(--navy);
}

.footer_menu {
  background: #0a1729;
  padding: 1.4rem;
  text-align: center;
}

.footer_menu ul {
  display: inline-flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer_menu a {
  color: #cdd6e2;
  font-size: 0.85rem;
  transition: 0.3s;
}

.footer_menu a:hover {
  color: var(--gold-light);
}

.copyright {
  background: #070f1c;
  color: #7e8a9c;
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  font-family: "Jost", sans-serif;
}

/* ===== 会社概要 ===== */
.company_sec {
  padding: 5rem 0;
}

.philosophy {
  background: var(--tiffany-light);
  border-radius: 14px;
  padding: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

.philosophy h2 {
  color: var(--tiffany);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid var(--gold);
}

.philosophy p {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 500;
}

.comp_table {
  width: 100%;
  border-collapse: collapse;
  max-width: 840px;
  margin: auto;
}

.comp_table th, .comp_table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.95rem;
}

.comp_table th {
  width: 30%;
  background: rgba(14, 31, 58, 0.05);
  color: var(--navy);
  font-weight: 600;
}

.comp_table td {
  color: var(--ink);
}

.comp_map {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.comp_map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ===== 事業内容ページ ===== */
.service_sec {
  padding: 5rem 0;
}

.serv_box {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.serv_box:nth-child(even) {
  flex-direction: row-reverse;
}

.serv_box:last-child {
  margin-bottom: 0;
}

.serv_img {
  width: 50%;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
}

.serv_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.serv_txt {
  width: 50%;
}

.serv_txt .num {
  font-family: "Jost", sans-serif;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
}

.serv_txt h2 {
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0.3rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--tiffany);
}

.serv_txt p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.serv_point li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  font-size: 0.92rem;
}

.serv_point li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--tiffany);
  position: absolute;
  left: 0;
}

/* ===== 買取ページ ===== */
.buy-hero {
  background: var(--tiffany-light);
  padding: 4rem 0 2.5rem;
  text-align: center;
}

.buy-hero h2 {
  font-size: 1.9rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.buy-hero h2 b {
  color: var(--tiffany);
}

.buy-hero .gold {
  color: var(--gold);
}

.buy-hero .note-band {
  margin-bottom: 0;
}

.buy-list {
  padding: 2.8rem 0 5rem;
}

.buy-list .lead {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.buy-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 2rem 1.4rem;
  text-align: center;
  transition: 0.3s;
}

.buy-item:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(14, 31, 58, 0.08);
  transform: translateY(-4px);
}

.buy-item i {
  font-size: 2rem;
  color: var(--tiffany);
  margin-bottom: 1rem;
}

.buy-item h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.buy-item p {
  font-size: 0.85rem;
}

.buy-reason {
  background: var(--navy);
  color: #fff;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.buy-reason::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(199, 154, 63, 0.2), transparent 70%);
}

.buy-reason .wrap {
  position: relative;
  z-index: 1;
}

.buy-reason .sec-ttl .en {
  color: var(--gold-light);
}

.buy-reason .sec-ttl .jp {
  color: #fff;
}

.reason-flow {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.reason-col {
  flex: 1;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 2rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.reason-col.us {
  border: 2px solid var(--gold);
}

.reason-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
}

.reason-col .flow {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 2;
}

.reason-col .flow i {
  color: var(--gold-light);
}

.reason-col.us h4 {
  color: #fff;
}

.reason-col.us .price {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1rem;
}

.buy-final {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(115deg, var(--tiffany), var(--tiffany-deep));
  color: #fff;
}

.buy-final h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.buy-final p {
  margin-bottom: 2rem;
  opacity: 0.95;
}

.buy-final a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--tiffany-deep);
  font-weight: 700;
  padding: 1.1rem 2.6rem;
  border-radius: 40px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.buy-final a:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== 販売ページ ===== */
.sale-sec {
  padding: 5rem 0;
  text-align: center;
}

.sale-sec .lead {
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: 1rem;
}

.sale-stock {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 3.5rem 2rem;
  max-width: 760px;
  margin: auto;
}

.sale-stock .ico {
  font-size: 2.6rem;
  color: var(--tiffany);
  margin-bottom: 1rem;
}

.sale-stock h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.sale-stock p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.sale-stock .gnet {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.sale-stock .gnet:hover {
  background: var(--gold);
  color: var(--navy);
}

.sale-stock .soon {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #999;
}

/* ===== お問い合わせ ===== */
.contact_sec {
  padding: 5rem 0;
}

.contact_lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.contact_lead p {
  font-size: 1rem;
}

.contact_lead .big {
  font-size: 1.3rem;
  color: var(--tiffany);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact_tel-box {
  background: var(--tiffany-light);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.contact_tel-box .num {
  font-family: "Jost", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.contact_tel-box .num i {
  color: var(--tiffany);
}

.contact_tel-box .hours {
  font-size: 0.9rem;
  color: var(--ink);
}

.form {
  max-width: 720px;
  margin: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2.5rem;
}

/* Contact Form 7 整形 */
.form .wpcf7-form p {
  margin-bottom: 1.4rem;
}

.form label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.form .req, .form .wpcf7-list-item-label {
  font-weight: normal;
}

.form .require {
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  font-weight: 600;
}

.form .red, .form .blue {
  display: inline-block;
  color: #fff;
  font-size: 0.7rem;
  padding: 0.1rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  font-weight: 600;
}

.form .red {
  background: #d33b3b;
}

.form .blue {
  background: #2b6cb0;
}

.form input[type=text], .form input[type=tel], .form input[type=email], .form input[type=number], .form select, .form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--gray);
  margin-top: 0.3rem;
}

.form input:focus, .form textarea:focus, .form select:focus {
  outline: 2px solid var(--tiffany);
  background: #fff;
}

.form .wpcf7-submit {
  display: block;
  background: var(--tiffany);
  color: #fff;
  border: none;
  padding: 1.1rem 3.5rem;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: inherit;
  margin: 2rem auto 0;
}

.form .wpcf7-submit:hover {
  background: var(--navy);
}

.form .wpcf7-spinner {
  margin: 1rem auto 0;
  display: block;
}

.wpcf7 .wpcf7-response-output {
  border-radius: 8px;
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
}

/* ===== お知らせ一覧 / 詳細 ===== */
.news-page {
  padding: 5rem 0;
}

.news-page .lead {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1rem;
  color: var(--ink);
}

.news-page .news_list2 {
  max-width: 840px;
  margin: auto;
}

.news-page .news_list2 li a {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  transition: 0.3s;
}

.news-page .news_list2 li a:hover {
  color: var(--tiffany);
  padding-left: 0.5rem;
}

.news-page .news_list2 .date {
  color: var(--tiffany);
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
  padding-top: 0.1rem;
}

.news-page .news_list2 .body {
  flex: 1;
}

.news-page .news_list2 .ttl {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.news-page .news_list2 .descn {
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0.8;
  margin-top: 0.2rem;
}

.news-page .news_list2 i {
  color: var(--gold);
  padding-top: 0.3rem;
}

.news-single {
  padding: 5rem 0;
}

.news-single .post_head {
  border-bottom: 2px solid var(--tiffany-light);
  padding-bottom: 1.2rem;
  margin-bottom: 2rem;
}

.news-single .post_date {
  color: var(--tiffany);
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
}

.news-single .post_title {
  font-size: 1.6rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: 0.4rem;
  line-height: 1.5;
}

.news-single .post_body {
  font-size: 1rem;
  line-height: 1.9;
}

.news-single .post_body img {
  margin: 1.5rem 0;
  border-radius: 8px;
}

.news-single .back_btn {
  text-align: center;
  margin-top: 3rem;
}

.news-single .back_btn a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
}

.news-single .back_btn a:hover {
  background: var(--gold);
  color: var(--navy);
}

.wp-pagenavi {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.wp-pagenavi a, .wp-pagenavi span {
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
}

.wp-pagenavi span.current, .wp-pagenavi a:hover {
  background: var(--tiffany);
  color: #fff;
  border-color: var(--tiffany);
}

/* ===== プライバシーポリシー等 一般ページ ===== */
.page-plain {
  padding: 5rem 0;
}

.page-plain .wrap {
  max-width: 880px;
}

.page-plain h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
  border-left: 4px solid var(--tiffany);
  padding-left: 0.8rem;
}

.page-plain h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 1.5rem 0 0.8rem;
}

.page-plain p {
  margin-bottom: 1rem;
  line-height: 1.9;
}

.page-plain ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-plain a {
  color: var(--tiffany);
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .header_inner {
    padding: 0.6rem 1.2rem;
  }
  .header_logo img {
    height: 46px;
  }
  .header_nav .menu, .header_contact {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }
  .hamburger span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    transition: 0.3s;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .sp_menu {
    display: block;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    overflow-y: auto;
    background: rgba(14, 31, 58, 0.97);
    transform: translateX(100%);
    transition: 0.4s;
    z-index: 99;
    padding: 1.5rem 0;
  }
  .sp_menu.active {
    transform: translateX(0);
  }
  .sp_menu ul {
    text-align: center;
  }
  .sp_menu li a {
    display: block;
    color: #fff;
    padding: 1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .wrap {
    padding: 0 1.2rem;
  }
  .sec-ttl {
    margin-bottom: 2rem;
  }
  .sec-ttl .en {
    font-size: 2rem;
  }
  .sec-ttl .jp {
    font-size: 0.9rem;
  }
  #hero {
    height: 62vh;
    min-height: 440px;
    margin-top: 64px;
  }
  .hero_copy {
    left: 6%;
    right: 6%;
    bottom: 14%;
  }
  .hero_copy .tag {
    margin-bottom: 0.8rem;
  }
  .hero_copy h2 {
    font-size: 1.7rem;
    line-height: 1.4;
  }
  .hero_copy p {
    font-size: 0.95rem;
  }
  .hero_scroll {
    display: none;
  }
  .lower {
    height: 220px;
    margin-top: 64px;
  }
  .lower_ttl h1 {
    font-size: 1.7rem;
  }
  .lower_ttl span {
    font-size: 0.8rem;
  }
  #buy-cta {
    padding: 2.6rem 1.2rem;
  }
  .buy-cta_inner {
    flex-direction: column;
    text-align: center;
    gap: 1.4rem;
  }
  .buy-cta_txt h2 {
    font-size: 1.4rem;
  }
  .buy-cta_txt p {
    font-size: 0.9rem;
    text-align: left;
  }
  .buy-cta_btn a {
    font-size: 1rem;
    padding: 0.9rem 1.8rem;
  }
  #news {
    padding: 3.5rem 0;
  }
  .news_box {
    padding: 1.8rem 1.4rem;
    border-radius: 12px;
  }
  .news_box h2 {
    font-size: 1.7rem;
  }
  .news_list li a {
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
    padding: 0.9rem 0;
    position: relative;
    padding-right: 1.4rem;
  }
  .news_list .ttl {
    flex: 1 1 100%;
    font-size: 0.9rem;
    order: 3;
  }
  .news_list .date {
    order: 1;
  }
  .news_list .cat {
    order: 2;
  }
  .news_list i {
    position: absolute;
    right: 0;
    top: 0.9rem;
  }
  #greeting {
    padding: 3.5rem 0;
  }
  .greeting_inner h2 {
    font-size: 1.35rem;
  }
  .greeting_inner p {
    font-size: 0.95rem;
    text-align: left;
  }
  #strength {
    padding: 3.5rem 0;
  }
  .strength_grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 0;
  }
  .strength_card {
    padding: 2rem 1.4rem;
  }
  .strength_card p {
    text-align: left;
  }
  #biz {
    padding: 3.5rem 0;
  }
  .biz_row, .biz_row:nth-child(even) {
    flex-direction: column;
    margin-bottom: 2.6rem;
  }
  .biz_img {
    width: 100%;
    height: 230px;
  }
  .biz_txt, .biz_row:nth-child(odd) .biz_txt, .biz_row:nth-child(even) .biz_txt {
    width: auto;
    margin: -2rem 1rem 0 1rem;
    padding: 1.8rem;
  }
  .biz_txt h3 {
    font-size: 1.3rem;
  }
  #bnr {
    padding: 0 0 3.5rem;
  }
  .bnr_grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .bnr_card {
    height: 180px;
  }
  .company_sec {
    padding: 3.5rem 0;
  }
  .philosophy {
    padding: 2rem 1.4rem;
  }
  .philosophy p {
    font-size: 0.95rem;
    text-align: left;
  }
  .comp_table th, .comp_table td {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
  }
  .comp_table th {
    border-bottom: none;
    padding-bottom: 0.2rem;
  }
  .comp_table td {
    padding-top: 0.2rem;
  }
  .comp_map iframe {
    height: 280px;
  }
  .service_sec {
    padding: 3.5rem 0;
  }
  .serv_box, .serv_box:nth-child(even) {
    flex-direction: column;
    gap: 1.4rem;
    margin-bottom: 3rem;
  }
  .serv_img, .serv_txt {
    width: 100%;
  }
  .serv_img {
    height: 220px;
  }
  .serv_txt h2 {
    font-size: 1.4rem;
  }
  .serv_txt p {
    text-align: left;
  }
  .sale-sec {
    padding: 3.5rem 0;
  }
  .sale-sec .lead {
    text-align: left;
  }
  .sale-stock {
    padding: 2.4rem 1.4rem;
  }
  .buy-hero {
    padding: 3rem 0 2rem;
  }
  .buy-hero h2 {
    font-size: 1.45rem;
  }
  .buy-hero .wrap p {
    text-align: left;
  }
  .buy-list {
    padding: 3rem 0 3.5rem;
  }
  .buy-list .lead {
    text-align: left;
  }
  .buy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .buy-item {
    padding: 1.6rem 1rem;
  }
  .buy-item h3 {
    font-size: 0.95rem;
  }
  .buy-item p {
    text-align: center;
  }
  .buy-reason {
    padding: 3.5rem 1.2rem;
  }
  .reason-flow {
    flex-direction: column;
    gap: 1.2rem;
  }
  .reason-col {
    min-width: 0;
    width: 100%;
  }
  .buy-final {
    padding: 3.5rem 1.2rem;
  }
  .buy-final h3 {
    font-size: 1.45rem;
  }
  .buy-final p {
    text-align: left;
  }
  .buy-final a {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  .contact_sec {
    padding: 3.5rem 0;
  }
  .contact_lead p {
    text-align: left;
  }
  .contact_lead .big {
    text-align: center;
  }
  .contact_tel-box {
    padding: 2rem 1.2rem;
  }
  .contact_tel-box .num {
    font-size: 1.7rem;
  }
  .form {
    padding: 1.8rem 1.4rem;
  }
  .news-page {
    padding: 3.5rem 0;
  }
  .news-single {
    padding: 3.5rem 0;
  }
  .news-single .post_title {
    font-size: 1.3rem;
  }
  .footer_contact {
    padding: 2.6rem 1.2rem;
  }
  .footer_inner {
    flex-direction: column;
    text-align: center;
    gap: 1.4rem;
  }
  .footer_msg {
    padding: 0;
  }
  .footer_msg p {
    text-align: left;
  }
  .footer_msg .en::after {
    margin-left: auto;
    margin-right: auto;
  }
  .footer_tel .tel {
    font-size: 1.7rem;
    justify-content: center;
  }
  .footer_menu ul {
    gap: 0.8rem 1.2rem;
  }
}
@media (max-width: 400px) {
  .hero_copy h2 {
    font-size: 1.5rem;
  }
  .buy-grid {
    grid-template-columns: 1fr;
  }
  .footer_tel .tel {
    font-size: 1.5rem;
  }
  .contact_tel-box .num {
    font-size: 1.45rem;
  }
  .sec-ttl .en {
    font-size: 1.7rem;
  }
}

/* ===== 追加コンポーネント（取引国・訴求バンド） ===== */
.serv_countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.serv_countries .c-label {
  width: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.serv_countries .flag {
  display: inline-block;
  background: var(--tiffany-light);
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.note-band {
  max-width: 840px;
  margin: 2rem auto;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 1.4rem 1.8rem;
  font-size: 0.95rem;
  line-height: 1.9;
  text-align: left;
}
.note-band b {
  color: var(--gold-light);
}
.note-band .ico {
  color: var(--gold-light);
  margin-right: 0.6rem;
}
@media (max-width: 900px) {
  .note-band {
    margin: 1.5rem auto;
    padding: 1.1rem 1.3rem;
    font-size: 0.9rem;
    line-height: 1.8;
  }
}
/*# sourceMappingURL=style.css.map */