@charset "UTF-8";

/*!
 * Privacy Style
 * Author: SSTA
 * Date: 2026-06-16
 */

/* ==============================================
   1. Container Settings
   ============================================== */

.sub_page_header {
  background-color: #4a5f70; 
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
  background-size: 25px 25px;
}

/* ==============================================
   2. Privacy Intro
   ============================================== */
/* --- PC Layout (1201px~) --- */
.privacy_intro p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 40px;
  background: #f9f9f9;
  padding: 24px;
  border-radius: 8px;
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .privacy_intro p {
    font-size: 14.5px;
    padding: 20px 15px;
    margin-bottom: 30px;
    line-height: 1.6;
  }
}

/* ==============================================
   3. Privacy Content
   ============================================== */
/* --- PC Layout (1201px~) --- */
.privacy_content {
  margin-bottom: 40px;
}
.privacy_content:last-child {
  margin-bottom: 0;
}

.privacy_content h2 {
  color: #4a5f70;
  font-size: 22px;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid #b89a5e;
}

.privacy_content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.privacy_content ul {
  margin-bottom: 20px;
  padding-left: 0;
  list-style: none;
}

.privacy_content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0px;
  color: #444;
  line-height: 1.7;
}

.privacy_content li::before {
  content: "\2022";
  position: absolute;
  left: 5px;
  color: #b89a5e;
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .privacy_content h2 {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 3px solid #b89a5e;
    margin-bottom: 15px;
  }

  .privacy_content p {
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .privacy_content li {
    font-size: 14px;
  }
}

/* ==============================================
   4. Contact Info
   ============================================== */
/* --- PC Layout (1201px~) --- */
.contact_info {
  margin: 20px 0 30px;
  text-align: left;
}

.contact_info p {
  margin: 0;
  color: #444;
  line-height: 1.8;
}

.mail_link {
  margin-top: 5px !important;
}

.mail_link a {
  color: #4a5f70;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

.mail_link a:hover {
  color: #b89a5e;
}


/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .contact_info {
    margin: 20px 0 10px;
  }
}