@charset "utf-8";

/* ==========================================
   1. Base & Reset
   ========================================== */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  overflow-x: hidden;
  width: 100%;
}

/* ページ内リンクの着地地点を調整 */
h1,
h2,
h3,
h4,
h5,
h6,
[id] {
  scroll-margin-top: 100px;
}

/* フォーム要素リセット */

select option {
  color: #000000;
  background-color: #ffffff;
}

select:focus,
input:focus,
textarea:focus {
  outline: none;
  border-color: #000000 !important;
  box-shadow: none !important;
}

/* ==========================================
   2. Layout Helpers & Common Components
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.font-sans {
  font-family: "Noto Sans JP", sans-serif;
}

/* Titles */
.ttl_small {
  font-weight: normal;
  position: relative;
  padding: 0 0 0 8px;
}

.ttl_small::before {
  content: url(../img/common/img_ttl.svg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.ttl_h2 {
  position: relative;
  font-size: 2rem;
}

.ttl_h2::after {
  content: url(/cafe/assets/img/common/img_ttl_h2.svg);
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: auto;
}

/* Buttons */
.btn-contact {
  border: 1px solid #fff;
  border-radius: 99px;
  padding: 8px 20px;
  display: flex;
  gap: 10px;
}

.btn-contact_black {
  border: 1px solid #000;
  border-radius: 99px;
  padding: 8px 25px;
  display: flex;
  gap: 10px;
}

/* ==========================================
   3. Header (Site Header)
   ========================================== */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 10000 !important;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    padding 0.3s ease;
}

.header-inner {
  width: 100%;
  max-width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.logo img {
  height: 43px;
  width: auto;
}

/* Header States (Scroll) */
.site-header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.is-scrolled .header-bg {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.site-header.is-scrolled .pc-nav a {
  color: #000;
}

.site-header.is-scrolled a.btn-contact {
  background: #444140;
  color: #fff;
}

.site-header.is-scrolled a.btn-bk {
  background: #914d3e;
}

.site-header.is-scrolled .menu-trigger {
  border-color: #000;
  color: #000;
}

.site-header.is-scrolled .menu-trigger span,
.site-header.is-scrolled .menu-trigger span::before,
.site-header.is-scrolled .menu-trigger span::after {
  background-color: #000;
}

/* PC Nav */
.pc-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.pc-nav a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

/* ==========================================
   4. Navigation (Hamburger & SP Nav)
   ========================================== */
.menu-trigger {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 8px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  width: auto;
  height: auto;
  position: relative;
  z-index: 1001;
  appearance: none;
  outline: none;
}

.menu-trigger span {
  display: block;
  position: relative;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
}

.menu-trigger span::before,
.menu-trigger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.4s;
}

.menu-trigger span::before {
  top: -8px;
}
.menu-trigger span::after {
  top: 8px;
}

/* Active State (×) */
.menu-trigger.is-active {
  background-color: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}

.menu-trigger.is-active span {
  background: transparent !important;
}

.menu-trigger.is-active span::before {
  top: 0 !important;
  transform: rotate(45deg) !important;
  background-color: #fff !important;
}

.menu-trigger.is-active span::after {
  top: 0 !important;
  transform: rotate(-45deg) !important;
  background-color: #fff !important;
}

/* SP Nav Wrapper */
.sp-nav-wrapper {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  z-index: 9999 !important;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 100px;
  overflow-y: auto;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.sp-nav-wrapper.is-active {
  opacity: 1;
  visibility: visible;
  padding: 100px 20px 60px;
}

.sp-nav-wrapper.is-active::after {
  content: "(C) 2026 CAFE .";
  position: relative;
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 40px 0 20px;
  font-size: 0.8rem;
  text-align: center;
  color: #000;
}

.sp-nav-list {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 60px;
  padding: 0;
  list-style: none;
}

.sp-nav-list li {
  margin: 25px 0;
  text-align: center;
}

.sp-nav-list a {
  color: #000;
  font-size: 1.4rem;
}

.btn-contact_sp {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: #914d3e;
  border-radius: 999px;
  padding: 20px 30px;
  color: #fff;
  font-size: 1.2rem;
}

.btn-bk_sp {
  margin-top: 15px;
  background: #444140;
  font-size: 1rem;
  padding: 15px 30px;
}

/* ==========================================
   5. Hero Section
   ========================================= */
.hero {
  position: relative;
}

.hero-img {
  position: relative;
  width: 100%;
  height: 100vh; /* FVを全画面にする場合 */
  overflow: hidden;
}

.video-fv {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像のようにはみ出させてフィットさせる */
}

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

.hero-copy {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
}

.hero-copy h2 {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
}

/* ==========================================
   6. Product Section
   ========================================== */
.product-intro {
  padding: 100px 0;
}

.flex-product {
  display: flex;
  gap: 60px;
  margin: auto;
  justify-content: center;
}

.product-gallery {
  max-width: 457px;
  margin-bottom: 50px;
}

#mainImage {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.thumbnail-list {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail-list li {
  flex: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}

.thumbnail-list li.active {
  opacity: 1;
}

.thumb-item {
  width: 100%;
  height: auto;
}

.product-description {
  max-width: 523px;
}

.product-ttl {
  font-size: 2.1rem;
  margin-bottom: 20px;
}

.product-txt {
  line-height: 2rem;
  margin-bottom: 40px;
}

.product-link {
  display: flex;
  gap: 10px;
}

/* ==========================================
   7. Features Section
   ========================================== */
.features-section {
  padding: 120px 0;
  position: relative;
  z-index: 0;
}

.features-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 15%;
  right: 0;
  top: 10%;
  bottom: 7%;
  background-color: #f4edeb;
}

.container-features {
  max-width: 1300px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-img {
  flex: 1;
}

.feature-img img {
  width: 100%;
  height: auto;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 10px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

.feature-content p {
  font-size: 1rem;
  line-height: 2;
  color: #666;
}

.feature-summary {
  margin-top: 80px;
}

/* ==========================================
   8. How to Use Section
   ========================================== */
.use-step-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.use-step-item {
  flex: 1;
}

.step-text {
  margin-top: 15px;
}

.step-num {
  font-size: 1.5rem;
  color: #888;
  display: block;
}

/* ==========================================
   9. Spec Section
   ========================================== */
.spec-section {
  padding: 0 0 100px 0;
  background: #fff;
}

.spec-section h2 {
  font-size: 2rem;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

.spec-flex {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 80px;
}

.spec-txt {
  font-size: 1.06rem;
  line-height: 2rem;
  margin-bottom: 30px;
}

.spec-image {
  flex: 1;
}

.spec-table-wrapper {
  width: fit-content;
  margin: auto;
}

.spec-links {
  display: flex;
  gap: 20px;
}

.spec-link {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.spec-link-item {
  flex: 1;
  background: #f8f8f8;
  padding: 40px 20px;
  text-align: center;
  transition: background 0.3s;
}

.spec-link-item:hover {
  background: #f0f0f0;
}

.spec-link-item span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.spec-link-item p {
  font-size: 0.8rem;
  color: #666;
}

/* ==========================================
   10. Q&A Section
   ========================================== */
.qa-section {
  margin-bottom: 100px;
}

.qa-section h2 {
  font-size: 2rem;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}

.qa-list {
  max-width: 800px;
  margin: 0 auto;
}

.qa-item {
  margin-bottom: 30px;
}

.qa-question {
  width: 100%;
  padding: 20px 30px 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  cursor: pointer;
  background: #f8f7f8;
  border: none;
}

.icon_q {
  position: relative;
  padding-left: 50px;
}

.qa-question .icon_q::before {
  content: "Q";
  background: #95604e;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto 0;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  position: relative;
  width: 16px;
  height: 16px;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  background: #914d3e;
  transition: transform 0.3s ease;
}

.icon::before {
  width: 100%;
  height: 2px;
  top: 7px;
  left: 0;
}

.icon::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 7px;
}

.qa-item.is-open {
  border: 1px solid #914d3e;
}

.qa-item.is-open .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.qa-item.is-open .icon::before {
  background: #fff;
}

.qa-item.is-open .qa-question {
  background: #95604e;
  color: #fff;
}

.qa-item.is-open .icon_q::before {
  background: #fff;
  color: #95604e;
}

.qa-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  overflow: hidden;
  padding-left: 10px;
}

.qa-item.is-open .qa-answer {
  grid-template-rows: 1fr;
}

.answer-inner {
  min-height: 0;
}

.qa-item.is-open .answer-inner {
  padding: 20px 0;
}

.answer-inner p {
  padding: 0 0 30px 50px;
  line-height: 1.8;
  color: #666;
  font-size: 0.95rem;
  position: relative;
}

.answer-inner p::before {
  content: "A";
  background: #95604e;
  width: 35px;
  height: 35px;
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto 0;
  color: #fff;
  font-size: 1.25rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   11. Contact CTA Section
   ========================================== */
.contact-cta {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #95604e;
  margin-bottom: 30px;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-logo img {
  width: 180px;
  margin: 0 0 20px;
}

.contact-cta h2 {
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.contact-cta p {
  font-size: 1.8rem;
  margin-bottom: 50px;
  text-align: left;
}

.cta-buttons {
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-buttons a {
  display: block;
  width: 500px;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-main {
  border: solid 1px #fff;
  padding: 30px;
  color: #fff;
  font-size: 1.5rem;
}

.btn-sub {
  background: #fff;
  color: #95604e;
  padding: 20px 30px;
}

.btn-main:hover {
  background: transparent;
  color: #fff;
}

.btn-sub:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   12. Form Page Specific
   ========================================== */
/* Form Hero */
.form-hero {
  position: relative;
  height: 400px;
  color: #fff;
  overflow: hidden;
  width: 100%;
}

.form-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.form-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.form-hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-hero-content h2 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.form-hero-content p {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Form Container */
.form-outer-wrapper {
  padding: 0 0 100px;
}

.form-container {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  padding: 80px 60px;
}

.form-lead {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 80px;
  color: #444140;
  text-align: center;
}

.form-lead .caution {
  color: #cc0000;
  margin-top: 15px;
}

/* Office Info & Caution */
.office-info {
  border: 1px solid #ddd;
  display: inline-block;
  padding: 20px 40px;
  margin: 40px 0 0;
}

.office-info h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.office-info a {
  font-size: 1.6rem;
  color: #b07d62;
  font-weight: bold;
}

.general-caution {
  border: 1px solid red;
  background: #fff;
  padding: 20px 70px;
  text-align: left;
  max-width: 500px;
  margin: 60px auto 0;
}

.general-caution .required {
  color: red;
}
.general-caution .purpose {
  margin-top: 10px;
  font-size: 0.85rem;
}

.after-caution {
  border: 2px solid red;
  background: #fff;
  color: red;
  padding: 20px 50px;
  text-align: left;
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 0.9rem;
}

/* Form Elements */
.form-section-title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  color: #914d3e;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.form-section-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #dcdcdc;
}

.form-group {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.form-labels,
.agreement-flex h3 {
  width: 40%;
  padding-top: 10px;
}

.form-labels label,
.agreement-flex h3 {
  font-size: 0.95rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-right: 30px;
}

.form-labels label span.label-sub {
  font-size: 0.8em;
  font-weight: normal;
  margin-left: 5px;
  display: inline-block;
}

.required-badge {
  background: #fff;
  color: red;
  font-size: 0.75rem;
  padding: 3px 15px;
  margin-left: 10px;
  border-radius: 999px;
  border: solid 1px red;
}

.form-input {
  flex: 1;
}

.form-input input[type="text"],
.form-input input[type="email"],
.form-input input[type="tel"],
.form-input input[type="date"],
.form-input textarea,
.form-input select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 1rem;
  outline: none;
  border-radius: 0;
}

.form-input textarea {
  border: 1px solid #ccc;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  color: #888;
  pointer-events: none;
}

.radio-wrapper {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-label input {
  margin-right: 8px;
}

.checkbox-label {
  margin-right: 20px;
}

/* File Upload (Drop Zone) */
.drop-zone {
  width: 100%;
  min-height: 200px;
  background: #f4f4f4;
  border: 2px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  padding: 20px;
}

.drop-zone.is-dragover,
#dropZone.drag-over {
  background: #e9e9e9;
  border-color: #007bff;
  transform: scale(1.02);
}

.drop-zone-content p {
  font-size: 0.85rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 15px;
}

#browseBtn {
  background: #fff;
  border: 1px solid #333;
  padding: 8px 20px;
  font-size: 0.8rem;
  cursor: pointer;
}

.file-note {
  font-size: 0.75rem;
  color: #999;
  margin-top: 10px;
}

.file-txt {
  background: #f4f4f4;
  padding: 40px;
  margin-bottom: 40px;
}

.file-txt p {
  font-weight: bold;
}
.file-txt dl {
  display: flex;
  gap: 60px;
  margin-top: 40px;
}

/* Agreement Area */
.form-agreement {
  margin-top: 80px;
}

.agreement-box {
  height: 250px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  background: #fcfcfc;
  padding: 20px;
  margin: 0 0 30px;
}

.agreement-flex {
  display: flex;
  justify-content: space-between;
}

.agreement-flex h3 {
  font-weight: normal;
  font-size: 1rem;
  width: 144%;
}

.agreement-inner {
  font-size: 0.85rem;
  line-height: 1.8;
  color: #444;
}

.agreement-inner p {
  margin-bottom: 1.5em;
}
.agreement-inner strong {
  display: block;
  margin-bottom: 0.3em;
  color: #000;
}

.agreement-check label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
}

.agreement-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* Scrollbar Custom */
.agreement-box::-webkit-scrollbar {
  width: 6px;
}
.agreement-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.agreement-box::-webkit-scrollbar-thumb {
  background: #ccc;
}

/* Confirm Button & Others */
.form-submit {
  margin-top: 60px;
}

.btn-confirm {
  background: #fff;
  color: #333;
  border: 1px solid #333;
  padding: 18px 80px;
  font-size: 1rem;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 30px;
  position: relative;
}

.btn-confirm::after {
  content: url(/cafe/assets/img/common/img_arrow_brown.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.btn-confirm:hover {
  background: #333;
  color: #fff;
}

.confirm_area label {
  margin-right: 20px;
  color: #95604e;
  font-weight: bold;
}

.thanks-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 15px 30px;
  border-radius: 5px;
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.5s;
}

.thanks-popup.show {
  opacity: 1;
}
.danger {
  color: red;
}

/* ==========================================
   13. Footer Section
   ========================================== */
.footer-cta {
  padding: 100px 0;
  background: #1a1a1a;
  color: #fff;
  text-align: center;
}

.cta-box a {
  display: inline-block;
  margin: 0 20px;
  padding: 15px 40px;
  border: 1px solid #fff;
  transition: 0.3s;
}

.cta-box a:hover {
  background: #fff;
  color: #1a1a1a;
}

.site-footer {
  position: relative;
  padding: 80px 0 40px;
  color: #fff;
  overflow: hidden;
  background-image: url(/cafe/assets/img/top/img_bk_footer.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: left;
}

.footer-logo {
  margin-bottom: 50px;
  display: flex;
  align-items: baseline;
  gap: 50px;
}

.footer-logo img {
  height: 43px;
  width: auto;
}

.footer-nav {
  margin-bottom: 60px;
}

.footer-nav ul {
  display: flex;
  gap: 30px;
  justify-content: left;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.cta_footer {
  background: #fff;
  color: #000;
  padding: 15px;
  display: block;
  width: 300px;
  text-align: center;
  font-size: 1rem;
  position: relative;
}

.cta_footer::after {
  content: url(/cafe/assets/img/common/img_arow_line.svg);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 1);
  letter-spacing: 0.05em;
  text-align: center;
}

/* ==========================================
   14. Responsive Settings
   ========================================== */
@media (min-width: 768px) {
  .pcNone {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-nav,
  .spNone {
    display: none;
  }

  .form-hero {
    height: 250px;
  }
  .form-hero-content h2 {
    font-size: 2.2rem;
  }
  .form-container {
    padding: 40px 10px;
    margin: 0 15px;
  }

  .hero-img img {
    height: 100vh;
  }
  .flex-product {
    flex-direction: column;
    gap: 0px;
  }
  .product-link {
    flex-direction: column;
  }
  .btn-contact_black {
    width: fit-content;
  }
  .use-step-list {
    flex-direction: column;
  }

  .features-section::before {
    left: 0%;
    top: 11%;
    bottom: 4%;
  }

  .spec-table-wrapper {
    overflow-x: scroll;
    width: 100%;
  }
  .spec-txt {
    min-width: 760px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    line-height: 1.8rem;
  }
  .spec-table-wrapper span {
    font-size: 0.8rem;
    color: #aeaeae;
  }

  .product-ttl {
    text-align: center;
  }

  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
  .feature-content {
    margin-top: 50px;
  }
  .feature-content h3 {
    font-size: 1.5rem;
    text-align: center;
  }

  .ttl_small {
    display: block;
    width: fit-content;
    margin: auto;
  }

  .spec-flex,
  .spec-links,
  .spec-link {
    flex-direction: column;
    margin-top: 40px;
  }
  .spec-link li a.btn-contact_black {
    width: 50%;
    justify-content: space-between;
  }

  .footer-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-logo {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .cta-content {
    flex-direction: column;
  }
  .cta-logo img {
    width: 150px;
    margin: auto;
  }
  .contact-cta p {
    text-align: center;
    margin-top: 30px;
  }
  .cta-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .cta-buttons a {
    width: 100%;
    padding: 20px;
  }

  .qa-question {
    padding: 15px 15px 10px 10px;
  }
  .icon_q {
    width: 90%;
    font-size: 0.9rem;
  }
  .answer-inner p {
    padding: 0 15px 0 50px;
  }

  .logo img {
    height: 28px;
  }
  .header-inner {
    padding: 10px 20px;
  }
  .hero-copy {
    left: 0;
  }

  /* Form Responsive */
  .form-group {
    flex-direction: column;
    padding: 5px 0;
  }
  .form-labels,
  .form-input {
    width: 100%;
  }
  .form-labels label {
    padding: 0 0 8px 0;
    justify-content: space-between;
  }
  .office-info a {
    font-size: 1.3rem;
  }
  .general-caution,
  .after-caution {
    padding: 20px;
  }
  .btn-confirm {
    width: 100%;
  }
  .agreement-flex {
    flex-direction: column;
  }
  .agreement-flex h3 {
    margin-bottom: 8px;
  }
  .file-txt dl {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
  .confirm_btn {
    flex-direction: column;
  }
}
