@charset "UTF-8";
/* ==================================================
  Gallery of Goonables — lp.css

  目次
  1. Base            - リセット・全体設定
  2. Layout          - ラッパー／コンテナ／メイン構造
  3. Header          - ページ上部ヘッダー
  4. Footer          - ページ下部フッター
  5. Background      - 全画面背景画像（fixed）
  6. FV              - ファーストビュー（PCフロート／SPインライン）
  7. Service         - サービス紹介セクション
  8. TOC             - クリエイター目次セクション
  9. Creator         - クリエイター個別カード
================================================== */


/* ==================================================
  1. Base
================================================== */
body {
  background: #fff;
  color: #222;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  transition: opacity 0.2s ease;
}

a:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 2px #f04885;
}

* {
  box-sizing: border-box;
}


/* ==================================================
  2. Layout
================================================== */
/* ----- Wrap ----- */
.lp_wrap {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
}

/* ----- Container ----- */
/* PCでは画面右側へ寄せ、左側は背景＋FVタイトル用のスペースとして空ける */
.lp_container {
  position: relative;
  z-index: 100;
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 16px;
}

@media screen and (min-width: 1024px) {
  .lp_container {
    left: min(45vw, 960px);
    margin: 0 min(4vw, 76px) 0 0;
    max-width: min(51vw, 960px);
  }
}

/* ----- Main / Section ----- */
.lp_main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.lp_sec {
  position: relative;
}


/* ==================================================
  3. Header
================================================== */
/* ----- Header wrapper ----- */
/* SP時は通常配置、PC時は画面上部に固定表示 */
.lp_header {
  position: relative;
  top: 4vh;
  max-width: 640px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  margin: 0 auto;
  text-shadow: 0 0 2px #fff, 0 0 4px #fff, 0 0 6px #fff, 0 0 8px #fff;
}

@media screen and (min-width: 1024px) {
  .lp_header {
    position: fixed;
    flex-wrap: nowrap;
    gap: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 min(4vw, 76px);
    max-width: 1920px;
  }
}

/* ----- Header logo ----- */
.lp_header a {
  display: inline-flex;
  align-items: center;
  height: 40px;
  flex-shrink: 0;
}

.lp_header a:hover {
  opacity: 0.8;
}

.lp_header img {
  height: 100%;
  width: auto;
}

/* ----- Header tagline ----- */
.lp_header span {
  display: block;
  width: 100%;
  color: #238AC5;
  font-size: 16px;
  line-height: 1.6;
}

@media screen and (min-width: 1024px) {
  .lp_header span {
    display: inline;
    font-size: 18px;
    line-height: 1.2;
  }
}

@media screen and (min-width: 1640px) {
  .lp_header span {
    margin-bottom: -12px;
  }

  .lp_header span br {
    display: none;
  }
}


/* ==================================================
  4. Footer
================================================== */
.lp_footer {
  margin-top: 40px;
}

.lp_footer .footer_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  text-align: center;
}

.lp_footer .footer_inner small {
  font-size: 12px;
  color: #222;
}


/* ==================================================
  5. Background
================================================== */
/* 全画面固定の背景画像（PC/SPで画像出し分け、コンテンツ裏に敷く） */
.lp_bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
}


/* ==================================================
  6. FV (First View)
================================================== */
/* ----- .copy = PCフロート用タイトル ----- */
/* PC時のみ画面左側にfixedで配置 */
.copy {
  display: none;
}

@media screen and (min-width: 1024px) {
  .copy {
    display: flex;
    align-items: center;
    position: fixed;
    right: 0;
    left: 0;
    max-width: 1920px;
    height: 100vh;
    margin: auto;
    z-index: 50;
    pointer-events: none;
  }
}

.copy img {
  position: relative;
  top: 4vh;
  left: min(4vw, 76px);
  display: block;
  height: auto;
  width: min(40vw, 768px);
}

/* ----- .fv_title = SPインライン用タイトル ----- */
/* SP時のみ通常フローで表示。PC時は.copy側を使うため非表示 */
.fv {
  padding: 32px 0 8px;
}

@media screen and (min-width: 1024px) {
  .fv {
    display: none;
    padding: 48px 0 16px;
  }
}

.fv_title {
  display: flex;
  justify-content: flex-start;
  padding: 40px 0;
}

.fv_title img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .fv_title {
    display: none;
  }
}


/* ==================================================
  7. Service (サービス紹介)
================================================== */
/* ----- Container ----- */
.service {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px;
  box-shadow: 0 2px 16px -8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ----- Head (heading + lead) ----- */
.service_head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.service_heading {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}

.service_logo {
  width: 76px;
  height: 24px;
  object-fit: contain;
}

.service_lead {
  font-size: 16px;
  color: #222;
  line-height: 1.4;
}

/* ----- Feature list ----- */
.service_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service_item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  padding: 16px;
  background: rgba(50, 152, 220, 0.05);
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}

.service_icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: normal;
}


/* ==================================================
  8. TOC (クリエイター目次)
================================================== */
/* ----- Container ----- */
.toc {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px -8px rgba(0, 0, 0, 0.3);
}

/* ----- Heading ----- */
.toc_heading {
  background: #f04885;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 16px 24px;
  line-height: 1.4;
}

/* ----- Nav / List ----- */
/* auto-fillで折り返し時も1行目とトラック幅を揃える */
.toc_nav {
  padding: 24px 16px;
}

.toc_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ----- Item link ----- */
.toc_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #222;
}

.toc_link:hover {
  opacity: 0.7;
}

.toc_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.toc_name {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  line-height: 1.4;
}


/* ==================================================
  9. Creator (クリエイター個別カード)
================================================== */
/* ----- List wrapper ----- */
.lp_creators {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ----- Card ----- */
.creator {
  background: rgba(238, 238, 238, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 2px 16px -8px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* ----- Card head (banner + icon) ----- */
/* iconはbanner下端からはみ出すように配置（bottom: -48px） */
.creator_head {
  position: relative;
}

.creator_banner {
  width: 100%;
  aspect-ratio: 990 / 330;
  object-fit: cover;
  display: block;
}

.creator_icon_link {
  position: absolute;
  left: 24px;
  bottom: -48px;
  width: 96px;
  height: 96px;
  display: block;
  border-radius: 50%;
}

.creator_icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  background: #fff;
  display: block;
}

/* ----- Card body ----- */
/* PC時はwork 2つを横並びにするためflex-direction: rowに切替 */
.creator_body {
  padding: 64px 16px 24px;
  display: flex;
  flex-direction: column;
  column-gap: 12px;
  row-gap: 24px;
}

@media screen and (min-width: 1024px) {
  .creator_body {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .creator_name_row,
  .creator_desc,
  .creator_cta {
    width: 100%;
  }

  .creator_work {
    flex: 1 1 0;
    min-width: 0;
  }
}

/* ----- Name row (name + follow button) ----- */
.creator_name_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.creator_name {
  font-size: 24px;
  font-weight: bold;
  color: #222;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.creator_name_link {
  color: inherit;
  text-decoration: none;
}

.creator_follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 8px 16px;
  background: #f04885;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 9999px;
  line-height: 1.4;
  white-space: nowrap;
}

.creator_follow:hover {
  opacity: 0.85;
}

/* ----- Description ----- */
.creator_desc {
  font-size: 14px;
  color: #222;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

/* ----- Work block ----- */
.creator_work {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.creator_work_heading {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}

/* ----- Work card ----- */
.work_card {
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.work_card:hover {
  opacity: 0.9;
}

.work_thumb {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 1024px) {
  .work_thumb {
    aspect-ratio: 4 / 3;
  }
}

.work_body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}

.work_title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  line-height: 1.4;
}

.work_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

/* ----- Work tags ----- */
.work_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.work_tag {
  display: inline-block;
  padding: 4px 8px;
  background: #f6f6f6;
  color: #666;
  font-size: 12px;
  border-radius: 9999px;
  line-height: 1.4;
}

/* ----- CTA area ----- */
/* PC時はCTAボタン2つを横並び、SNSリンクは次の行に折り返し */
.creator_cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (min-width: 1024px) {
  .creator_cta {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta_btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .creator_sns {
    width: 100%;
  }
}

/* ----- CTA button ----- */
.cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 41px;
  padding: 12px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.cta_btn:hover {
  opacity: 0.85;
}

.cta_btn--cien {
  background: #3298dc;
}

.cta_btn--dlsite {
  background: #052a83;
}

.cta_arrow {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("../images/icon_external.svg") no-repeat center / contain;
}

/* ----- SNS link ----- */
/* X(Twitter)アイコンはSVGをmaskで切り抜き、currentColorで色を制御 */
.creator_sns {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-size: 14px;
  text-decoration: none;
}

.creator_sns:hover {
  opacity: 0.7;
}

.creator_sns_icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/></svg>") no-repeat center / contain;
}
