@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
  background-color: #f0f2f1;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  padding-top: 80px;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8lvh 20px;
}

.menu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.menu-popup.is-active .menu-popup-inner {
  transform: translateY(0);
  opacity: 1;
}
.menu-popup .menu-popup-inner {
  background: #fff;
  padding: 60px 40px;
  border-radius: 12px;
  position: relative;
  width: 90%;
  max-width: 400px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease 0.1s;
}
.menu-popup .close-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  line-height: 1;
}
.menu-popup .close-btn:hover {
  opacity: 0.6;
}
.menu-popup .popup-nav ul li {
  margin: 25px 0;
}
.menu-popup .popup-nav ul li a {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  display: block;
  color: #333;
  transition: color 0.3s;
}
.menu-popup .popup-nav ul li a:hover {
  color: #999;
}

#fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 100;
  background: transparent;
}
#fixed-header .header-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
#fixed-header .icon img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fixed-header .speech-bubble {
  flex: 1;
  margin: 0 20px;
  background-color: #333;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
#fixed-header .speech-bubble .speech-text {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: translateY(0);
}
#fixed-header .speech-bubble .speech-text.is-out-top {
  opacity: 0;
  transform: translateY(-15px);
}
#fixed-header .speech-bubble .speech-text.is-from-bottom {
  transition: none !important;
  opacity: 0;
  transform: translateY(15px);
}
#fixed-header .speech-bubble::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right-color: #333;
}
#fixed-header .menu-btn {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 1px;
}

.container-flex {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .container-flex {
    flex-direction: column;
  }
}
.container-flex .section-title-area {
  width: 200px;
  flex-shrink: 0;
}
.container-flex .section-title-area h2 {
  font-size: 16px;
  margin-bottom: 20px;
}
.container-flex .section-title-area .sub-links li {
  margin-bottom: 10px;
  font-size: 12px;
  color: #666;
}

.likes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}
.likes-grid .like-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #ddd;
}

.service-section .banner-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-section .banner-item {
  display: flex;
  background-color: #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.service-section .banner-item img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-section .banner-item .banner-text {
  padding: 30px;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.6;
}

.profile-section .profile-box {
  background-color: #fff;
  padding: 60px;
  text-align: center;
  border-radius: 8px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-detail-container .wrap {
  max-width: 800px;
  background: #fff;
  padding: 60px 40px;
  margin-top: 40px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .portfolio-detail-container .wrap {
    padding: 40px 20px;
    margin-top: 20px;
  }
}
.portfolio-detail-container .detail-header {
  margin-bottom: 40px;
  text-align: center;
}
.portfolio-detail-container .detail-header .portfolio-title {
  font-size: 28px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.portfolio-detail-container .detail-header .category-list {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.portfolio-detail-container .detail-header .category-list .category-item {
  font-size: 12px;
  background: #f0f0f0;
  padding: 4px 12px;
  border-radius: 20px;
  color: #666;
  transition: background 0.3s;
}
.portfolio-detail-container .detail-header .category-list .category-item:hover {
  background: #e0e0e0;
}
.portfolio-detail-container .portfolio-description {
  line-height: 1.8;
  margin-bottom: 60px;
  font-size: 15px;
  color: #444;
}
.portfolio-detail-container .portfolio-description p {
  margin-bottom: 1.5em;
}
.portfolio-detail-container .images-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}
.portfolio-detail-container .images-grid .image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.portfolio-detail-container .detail-footer {
  border-top: 1px solid #eee;
  padding-top: 40px;
  text-align: center;
}
.portfolio-detail-container .detail-footer .share-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}
.portfolio-detail-container .detail-footer .share-buttons input {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 12px;
  width: 200px;
  border-radius: 4px;
  color: #888;
}
.portfolio-detail-container .detail-footer .share-buttons button {
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}
.portfolio-detail-container .detail-footer .share-buttons button:hover {
  opacity: 0.8;
}
.portfolio-detail-container .detail-footer .back-link {
  display: inline-block;
  font-size: 14px;
  color: #999;
  transition: color 0.3s;
}
.portfolio-detail-container .detail-footer .back-link:hover {
  color: #333;
}

/* カテゴリページのタイトル */
.category-title {
  font-size: 20px;
  margin-bottom: 30px;
  padding-left: 10px;
  border-left: 4px solid #333;
}

.works-grid {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media (min-width: 768px) {
  .works-grid {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.works-grid .work-item {
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 16px;
}
.works-grid .work-item a {
  display: block;
}
.works-grid .work-item a .thumb-box {
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
}
.works-grid .work-item a .thumb-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.works-grid .work-item a h3 {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
.works-grid .work-item a:hover .thumb-box img {
  transform: scale(1.05);
}

.page-footer {
  margin-top: 60px;
  text-align: center;
}
.page-footer .back-link {
  color: #999;
  font-size: 14px;
}
.page-footer .back-link:hover {
  color: #333;
}

.likes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  width: 100%;
}
.likes-grid .like-item {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.likes-grid .like-item:hover {
  transform: scale(1.05);
}
.likes-grid .like-item .like-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.likes-grid .like-item .like-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.like-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.like-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.like-modal-overlay.is-active .like-modal-content {
  transform: scale(1);
  opacity: 1;
}
.like-modal-overlay .like-modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 32px 40px 24px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.like-modal-overlay .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  line-height: 1;
}
.like-modal-overlay .close-btn:hover {
  opacity: 0.6;
}
.like-modal-overlay .like-modal-body {
  text-align: center;
}
.like-modal-overlay .like-modal-body img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}
.like-modal-overlay .like-modal-body h3 {
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 8px;
  color: #333;
}
.like-modal-overlay .like-modal-body p {
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  color: #444;
  margin: 0;
}/*# sourceMappingURL=style.css.map */