@charset "UTF-8";
/* 制作実績用スタイル
 * テーマのstyle.cssに追加するか、別ファイルとして読み込んでください
 */
/* 一覧ページ */
.portfolio-archive .page-header {
  margin-bottom: 3rem;
}
.portfolio-archive .page-header .page-title {
  font-size: 66px;
  color: #fff;
}

.portfolio-archive .container {
  background: #fff;
  padding: 1.875rem 2.5rem;
}

.portfolio-filters {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
}

p.portfolio-count {
  color: #000;
}

.filter-group {
  margin-bottom: 1.5rem;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-group h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.filter-list a {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
  transition: all 0.2s;
}
.filter-list a:hover {
  background: #cead55;
  color: white;
  border-color: #cead55;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.portfolio-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.portfolio-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-thumbnail img {
  transform: scale(1.05);
}

.portfolio-item {
  position: relative;
  cursor: pointer;
}
.portfolio-item .portfolio-title a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.portfolio-item .portfolio-link a,
.portfolio-item .btn-view-site {
  position: relative;
  z-index: 2;
}
.portfolio-item:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-title {
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.portfolio-title a {
  color: #333;
  text-decoration: none;
}
.portfolio-title a:hover {
  color: #cead55;
}

.service-about .portfolio-single h3,
.service-about .portfolio-single p,
.box_archive .portfolio-single h3,
.box_archive .portfolio-single p {
  color: #000;
}

.service-about .portfolio-client,
.service-about .portfolio-category,
.box_archive .portfolio-client,
.box_archive .portfolio-category {
  font-size: 0.9rem;
  color: #666;
}

.service-about .portfolio-category,
.box_archive .portfolio-category {
  margin-bottom: 0.75rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.portfolio-tags .tag {
  padding: 0.25rem 0.75rem;
  background: #e9ecef;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #495057;
  text-decoration: none;
}
.portfolio-tags .tag:hover {
  background: #cead55;
  color: white;
}

.portfolio-excerpt {
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.portfolio-link a {
  color: #cead55;
  text-decoration: none;
  font-weight: 600;
}
.portfolio-link a:hover {
  text-decoration: underline;
}

/* 詳細ページ */
.portfolio-single .entry-header {
  margin-bottom: 20px;
}
.portfolio-single .entry-header-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  box-sizing: border-box;
  margin: 0px -10px 20px;
}
.portfolio-single .entry-header-list .meta-item {
  box-sizing: border-box;
  padding: 0px 10px;
}
.portfolio-single .entry-title {
  margin-bottom: 0.7rem;
  font-size: 33px;
}
@media screen and (max-width: 767px) {
  .portfolio-single .entry-title {
    font-size: 24px;
  }
}
.portfolio-single .container {
  padding: 45px 40px 30px;
  background: #ffffff;
  border: 6px solid #000000;
}
.portfolio-single .portfolio-single-bottom {
  margin-top: 3rem;
}
.portfolio-single .portfolio-single-bottom .entry-title {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ffffff;
  color: #fff;
}
.portfolio-single .portfolio-single-bottom .portfolio-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.entry-content .portfolio-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}
.entry-content .portfolio-meta .meta-label {
  width: 200px;
}
@media screen and (max-width: 991px) {
  .entry-content .portfolio-meta .meta-label {
    width: 100%;
  }
}
.entry-content .portfolio-meta .meta-value {
  width: calc(100% - 200px);
}
@media screen and (max-width: 991px) {
  .entry-content .portfolio-meta .meta-value {
    width: 100%;
  }
}
.entry-content .portfolio-meta .meta-link {
  color: #cead55;
  text-decoration: underline;
}
.entry-content .portfolio-meta .meta-tags {
  margin: 0 -1.5rem;
  width: calc(100% - 200px);
}
@media screen and (max-width: 991px) {
  .entry-content .portfolio-meta .meta-tags {
    width: 100%;
  }
}
.entry-content .portfolio-meta .meta-item {
  border-bottom: 1px solid #6a6a6a;
  padding-bottom: 30px;
}
.entry-content .portfolio-meta .meta-item:first-child {
  padding-top: 30px;
  border-top: 1px solid #6a6a6a;
}
.entry-content .portfolio-meta .meta-item:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .entry-content .portfolio-meta .meta-item {
    flex-direction: column;
  }
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.meta-label {
  font-weight: 600;
  color: #666;
}

.meta-value {
  color: #333;
}

.meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.btn-view-site {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #cead55;
  color: white !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.2s;
}
.btn-view-site:hover {
  background: #ba9636;
}

.portfolio-featured-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
}
.portfolio-featured-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  max-width: 1920px;
}

.entry-content {
  width: 100%;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.portfolio-navigation {
  padding-top: 2rem;
}

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

.nav-previous a,
.nav-next a,
.nav-archive a {
  color: #cead55;
  text-decoration: none;
}

.nav-previous a:hover,
.nav-next a:hover,
.nav-archive a:hover {
  text-decoration: underline;
}

.no-posts {
  text-align: center;
  padding: 3rem;
  color: #666;
}

/* シンプルなボタンフィルターのスタイル */
.portfolio-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0 0 1.5rem;
}

/* aタグとbuttonタグの両方に対応 */
.filter-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: white;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}
.filter-btn:hover {
  color: #666;
  border-bottom: 1px solid #666;
  transition: all 0.2s;
}
.filter-btn.active {
  color: #cead55;
  border-bottom: 1px solid #cead55;
  transition: all 0.2s;
}

/* aタグの場合にもhoverで色が変わるように */
a.filter-btn:hover {
  color: #666;
}
a.filter-btn.active {
  color: white;
}

/* カテゴリーバッジ */
.cat-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  margin-right: 0.5rem;
  background: #cead55;
  color: white;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* NO IMAGE プレースホルダー */
.no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #adb5bd;
  font-weight: 600;
  font-size: 1.2rem;
}

/* 読み込み中・エラー表示 */
.loading {
  text-align: center;
  padding: 3rem;
  font-size: 1.1rem;
  color: #666;
}

.error {
  text-align: center;
  padding: 3rem;
  font-size: 1.1rem;
  color: #dc3545;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .portfolio-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav-previous,
.nav-next {
    text-align: center;
  }
  /* モバイル対応：ボタンを小さく */
  .portfolio-filter-buttons {
    gap: 0.5rem;
  }
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}
.service-about .create_sec01 .create__fv.block-content {
  position: relative;
  margin: 1.875rem 0 0;
}
.service-about .create_sec01 .create__fv.block-content .box3 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.service-about .create_sec01 .create__iconList {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-around;
  max-width: 100%;
}
.service-about .create_sec01 .create__iconList_item {
  width: 30.303030303%;
  display: flex;
  min-width: 400px;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  margin: 0px;
  justify-content: space-between;
  border: 6px solid #000;
  box-shadow: 5px 6px 0px rgb(0, 0, 0);
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec01 .create__iconList_item {
    min-width: unset;
    width: 100%;
    max-width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .service-about .create_sec01 .create__iconList_item {
    max-width: 400px;
  }
}
.service-about .create_sec01 .create__iconList h4 {
  font-size: 18px;
}
@media screen and (min-width: 1200px) {
  .service-about .create_sec01 .create__iconList h4 {
    font-size: 22px;
  }
}
.service-about .create_sec01 .create__iconList_row {
  justify-content: center !important;
  max-width: 350px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec01 .create__iconList_row {
    display: flex !important;
    align-items: center;
    justify-content: space-around;
  }
}
@media screen and (max-width: 767px) {
  .service-about .create_sec01 .create__iconList_row {
    width: 100%;
  }
}
.service-about .create_sec01 .create__iconList_row img {
  width: 105px;
  height: 105px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec01 .create__iconList_row img {
    width: 90px;
    height: 90px;
  }
}
.service-about .create_sec01 .create__iconList_row p {
  width: calc(100% - 100px);
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .service-about .create_sec01 .create__iconList_row p {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
  }
}
.service-about .create_sec03 .create__product_flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec03 .create__product_flex {
    flex-direction: column;
  }
}
.service-about .create_sec03 .create__product_title {
  width: 80%;
  font-size: 20px;
}
.service-about .create_sec03 .create__product_title img {
  vertical-align: baseline;
  margin-right: 20px;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec03 .create__product_title {
    width: 100%;
  }
}
.service-about .create_sec03 .create__product_title h3 {
  line-height: 4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.service-about .create_sec03 .create__product_title h3 span {
  display: block;
}
.service-about .create_sec03 .create__button_container {
  width: 20%;
  max-width: 220px;
  align-self: flex-end;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec03 .create__button_container {
    width: 100%;
    margin-bottom: 20px;
  }
}
.service-about .create_sec03 .create__product_banner {
  justify-content: space-around;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 992px) {
  .service-about .create_sec03 .create__product_banner {
    align-items: center;
    justify-content: space-between;
  }
}
.service-about .create_sec03 .create__product_banner .create__product_bannerItem {
  width: calc(33.3333333333% - 50px);
  max-width: 394px;
}
@media screen and (max-width: 991px) {
  .service-about .create_sec03 .create__product_banner .create__product_bannerItem {
    max-width: 100%;
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}

/* Importing portfolio styles */
/*# sourceMappingURL=style.css.map */