@charset "UTF-8";

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

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

.sub_page_header {
  background-color: #4a5f70; 
  background-image: linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 25px 25px;
}

#links {
  max-width: 600px;
  margin: auto;
  background: #fff;
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  #links {
    overflow: hidden;
  }
}

/* ==============================================
   2. Link List
   ============================================== */

/* --- PC Layout (1201px~) --- */
.link_list {
  list-style: none;
  padding: 0;
}

.link_category {
  color: #4a5f70;
  font-size: 22px;
  font-weight: 600;
  margin-top: 45px;
  margin-bottom: 10px;
  padding-left: 15px;
  border-left: 4px solid #b89a5e;
}

.link_category:first-child {
  margin-top: 0;
}

.link_item {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #4a5f70;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease;
  border-bottom: 1px solid #eee;
}

@media (hover: hover) {
.link_item:hover {
  background-color: #fdfaf5;
  color: #b89a5e;
  padding-left: 25px;
  border-bottom-color: #b89a5e;
}
}

.link_item i {
  font-size: 1.4em;
  margin-right: 15px;
  width: 24px;
  text-align: center;
}

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

  .link_item {
    font-size: 14px;
  }

  .link_item:active {
    background-color: #fdfaf5;
    color: #b89a5e;
  }
}