@charset "utf-8";
/* *************************************** */
/* 【モバイル版】 */
/* *************************************** */

/* **********************************************************【プロフィールページ】***************************** */

/* ーーーーーー【タイトル】ーーーーーー */
.title_box h1 {
  text-align: center;
  padding: 0 12px;
  margin-top: 10px;
}

.title_box {
  position: relative;
  padding: 8px;
  margin: 60px 12px 0;
  border-radius: 8px;
}

#box_1 p,
#box_1 ul li {
  margin-bottom: 12px;
  color: #fff;
  font-size: 0.95rem;
}

/* ■基本ボックススタイル */
.box_1 {
  padding: 12px 14px;
  margin: 16px auto;
  color: #000;
  background: #f1ffe8;
  border-left: solid 4px #58d758;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
  line-height: 1.6;
}

.box_1 p {
  margin: 0 0 0.6em 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: break-word;
}

.box_1 ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  list-style: circle;
  margin-left: 20px;
}
.box_1 ul li a {
  color: #000;
}

.box_1 ul li a:hover {
  color: #fff;
  background-color: #ff6e00;
  padding: 5px;
  border-radius: 10px;
}

main h2 {
  color: #fff;
  margin: 32px 0 16px;
  text-align: center;
  font-size: 1.2rem;
}

.question_box h3 {
  color: #fff;
  font-size: 1.05rem;
}

.works_profile_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.question_box {
  margin-bottom: 24px;
  width: 100%;
}

/* ーーーーーーー【レイアウト】ーーーーーーー */
#main_profile {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 12px;
  box-sizing: border-box;
}

main > div > ul {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
}

main > div > ul li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.profile_box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

/* ■プロフィールボックス内の画像 */
.profile_box img {
  max-width: 100%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  flex-shrink: 0;
}

.profile_box #profile_textbox {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.profile_box #profile_textbox p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Text reveal animation for profile_textbox */
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  color: transparent;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  background-clip: text;
  -webkit-background-clip: text;
  animation: text-reveal 1s ease forwards paused;
}

.char.is-animated {
  animation-play-state: running;
}

@keyframes text-reveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
    background: none;
  }
}

.profile_box #profile_about_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
}

#skill_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

/* ■スキルボックスのスタイル */
.box-design14 {
  width: 100%;
  max-width: 280px;
  padding: 16px;
  border: 2px solid #ffffff;
  color: #fff;
  box-sizing: border-box;
}

.box-design14-ttl {
  position: relative;
  background-color: #00880a;
  color: #fff;
  padding: 0.6em 1em;
  margin: 0 0 12px 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
}

.box-design14 > ul > li {
  font-size: 0.9rem;
  padding: 4px 0;
  line-height: 1.6;
}

/* ーーーーーーー【セクションナビ（開閉式）】ーーーーーーー */
/* ■セクションナビゲーション全体 */
.section-nav {
  position: fixed;
  top: 56px;
  left: 8px;
  width: auto;
  z-index: 850;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

/* スクロール時に表示 */
.section-nav.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ■セクションナビの開閉ボタン */
.section-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: auto;
  /* width: 50px;
  height: 50px; */
  padding: 12px;
  background-color: #00880a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Zen Maru Gothic", sans-serif;
}

.section-nav__toggle:hover {
  background-color: #00a512;
  box-shadow: 0 2px 8px rgba(0, 136, 10, 0.3);
}

/* ボタンアイコン（+/-表示） */
.section-nav__toggle-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  /* margin-right: 8px; */
}

/* 閉じた状態：+ */
.section-nav__toggle-icon::before {
  content: "+";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 300;
  transition: opacity 0.3s ease;
}

/* 開いた状態：- */
.section-nav__toggle-icon::after {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  line-height: 1;
  color: #ffffff;
  font-weight: 300;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 開いた状態でのアイコン表示切り替え */
.section-nav.is-open .section-nav__toggle-icon::before {
  opacity: 0;
}

.section-nav.is-open .section-nav__toggle-icon::after {
  opacity: 1;
}

/* ■セクションナビリスト */
.section-nav__list {
  list-style: none;
  padding: 12px;
  margin: 8px 0 0 0;
  background-color: rgba(0, 136, 10, 0.08);
  border: 2px solid #00880a;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 8px;
  width: auto;
  box-sizing: border-box;
  animation: slideDown 0.3s ease-out;
}

/* 開いた状態でのリスト表示 */
.section-nav.is-open .section-nav__list {
  display: flex;
}

/* スライドダウンアニメーション */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  to {
    opacity: 1;
    max-height: 400px;
  }
}

/* ■セクションナビリストアイテム */
.section-nav__list li {
  margin: 0;
  padding: 0;
}

.section-nav__list li a {
  display: block;
  padding: 10px 12px;
  color: #00880a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: #ffffff;
  border: solid 3px #00880a;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.section-nav__list li a:active {
  background-color: #00880a;
  color: #ffffff;
}

/* ーーーーーーー【ボックス】ーーーーーーー */
/* ■ナビのボックス */
.box17 {
  margin: 0 auto 24px;
  position: relative;
  padding: 0.8em 1rem;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  width: 100%;
  max-width: 300px;
}

.box17::before,
.box17::after {
  content: "";
  position: absolute;
  top: -8px;
  width: 2px;
  height: calc(100% + 16px);
  background-color: #fff;
}

.box17::before {
  left: 8px;
}

.box17::after {
  right: 8px;
}

.box17 li a:hover {
  color: #ff6e00;
}

/* **********************【プライバシーポリシー】********************** */
/* ===== プライバシーポリシー全体 ===== */
.privacy_main {
  padding: 0 12px;
  margin-top: 60px;
  box-sizing: border-box;
}

/* ===== コンテンツ幅制御 ===== */
.privacy_section {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.privacy_section > h1 {
  text-align: center;
  padding: 0 12px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #fff;
}

/* ===== 本文 ===== */
.privacy_text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 16px;
  text-align: left;
}

/* ===== リスト ===== */
.privacy_list {
  margin: 0 0 20px 1.8em;
  padding-left: 0;
  counter-reset: list-counter;
}

.privacy_list li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #fff;
}

.privacy_list li:not(ol.privacy_list > li) {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1.5em;
}

.privacy_list li:not(ol.privacy_list > li)::before {
  content: counter(list-counter) ". ";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 0.9rem;
}

.privacy_list li a {
  text-decoration: underline;
}

ol.privacy_list > li {
  list-style: decimal;
}

/* ーーーーーーー【作品ページ】ーーーーーーー */

.works_main {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 12px;
  box-sizing: border-box;
}

.works_main .h2_title {
  color: #fff;
  margin: 40px 0 40px;
  text-align: center;
}
/* ■セクションタイトル */
.h2_2 {
  padding: 0.75em 1em;
  color: #fff;
  background: #00880a;
  width: 100%;
  height: auto;
  margin: 32px 0;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.1rem;
  box-sizing: border-box;
}

/* ■サブカテゴリタイトル */
.heading-37 {
  padding: 0.4em 0;
  color: #ffffff;
  font-size: 1.1rem;
  margin: 24px 0 12px 0;
  border-bottom: 3px solid #00880a;
  width: auto;
  display: inline-block;
}

/* ■QA要素 */
.qa-6 {
  border-bottom: 1px solid #555;
  max-width: 100%;
  margin: 0 auto 12px;
}

.qa-6 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0.8em 1em 0.8em 2em;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.qa-6 summary::before {
  position: absolute;
  left: 0.5em;
  font-weight: 600;
  font-size: 1rem;
  color: #75bbff;
  content: "Q";
}

.qa-6 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  content: "";
  transition: transform 0.5s;
}

.qa-6[open] summary::after {
  transform: rotate(225deg);
}

.qa-6 p {
  position: relative;
  margin: 0;
  padding: 0 1em 0.8em 2em;
  color: #ffffff;
  font-size: 0.9rem;
  line-height: 1.6;
  transition: opacity 0.3s;
}

.qa-6 p::before {
  position: absolute;
  left: 0.5em;
  color: #ff8d8d;
  font-weight: 600;
  font-size: 1rem;
  content: "A";
}

.work_dummy_box,
.work_dummy_box_2 {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 24px auto;
}

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

/* 中央の仮テキスト */
.work_dummy_text {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: #7a7a7a;
}

/* ■作品サマリー */
.work_summary {
  margin: 20px auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
}

.work_summary_text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #fff;
}

.heading-37-text {
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.heading-37-text p {
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

.heading-37-text p a {
  text-decoration: underline;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  word-break: break-word;
}

.heading-37-text p a:hover {
  background-color: #fff;
  color: #00880a;
  text-decoration: none;
}

/* ■作品メタ情報 */
.work_meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 40px auto;
  list-style: none;
  font-size: 0.8rem;
  color: #ffffff;
  background-color: #00880a;
  border-radius: 16px;
  padding: 10px 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* ■キャプションボックス */
.caption_box {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
}

.caption_box h5 {
  margin: 8px 0;
  font-size: 1rem;
  color: #fff;
}

.caption_box p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #fff;
}

.caption_box .box_1 {
  padding: 12px 16px;
  margin: 12px 0;
  color: #000;
  background: #f1ffe8;
  border-left: solid 4px #58d758;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  line-height: 1.6;
}

.caption_box .box_1 p {
  margin: 0 0 0.6em 0;
  padding: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  word-break: break-word;
  color: #000;
}

.box_1 p:last-child {
  margin-bottom: 0;
}

/* ■ギャラリー */
.gallery_section {
  margin: 40px auto 0;
  padding: 0 12px 40px;
  box-sizing: border-box;
}

.gallery_section .h2_2 {
  margin-top: 0;
}

.gallery_lead {
  max-width: 760px;
  margin: 16px auto 28px;
  color: #dfe6d4;
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
}

.gallery_grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

.gallery_item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery_item__figure {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #232923;
}

.gallery_item__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery_item__figure img:hover {
  transform: scale(1.05);
}

.gallery_item__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  flex: 1;
  background-color: #333;
}

.gallery_item__title {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

.gallery_item__meta {
  margin: 0;
  color: #c1c1c1;
  font-size: 0.9rem;
  line-height: 1.7;
}

.gallery_item__caption {
  margin: 0;
  color: #dfe6d4;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .gallery_grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (min-width: 1200px) {
  .gallery_grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ーーーーーーー【セクション最後尾のモックアップ画像】ーーーーーーー */
/* ■モックアップ表示ボックス（新規追加） */
.work_mockup_box {
  width: 100%;
  margin: 32px auto;
  box-sizing: border-box;
}

.mockup_img h5 {
  margin: 8px 0;
  font-size: 1rem;
  color: #fff;
}

/* モックアップ画像 */
.work_mockup_box img {
  width: 100%;
  height: auto;
  display: block;
  background: #d9d9d9; /* ←仮置きグレー指定 */
}

/* ーーーーーーー【モックアップのモーダルウィンドウ】ーーーーーーー */
.work_modal {
  display: none;
}

/* :target のときだけ表示 */
.work_modal:target {
  display: block;
}

/* modal_content は見た目のみ調整 */
.modal_content {
  max-width: 94vw;
  max-height: 88vh;
  margin: 6vh auto;
  padding: 8px;
  animation: fadeInScale 0.4s ease-out;
}

/* モバイル版：ふわっと表示アニメーション */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal_content img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  object-fit: contain;
  display: block;
}

/* **********************【お問い合わせページ】********************** */
/* ーーーーーーー【レイアウト】ーーーーーーー */
#main_contact {
  padding: 20px 12px;
  box-sizing: border-box;
}

/* ーーーーーーー【セクション】ーーーーーーー */
.contact_section {
  max-width: 100%;
  margin: 0 auto 32px;
  padding: 12px;
  text-align: center;
  box-sizing: border-box;
}

.contact_section h1 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  margin-top: 10px;
  color: #fff;
}

/* ーーーーーーー【リード文】ーーーーーーー */
.contact_lead {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 auto 24px;
  color: #ffffff;
  max-width: 100%;
}

/* ーーーーーーー【formrun】ーーーーーーー */
.contact_form_wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 32px;
  box-sizing: border-box;
}

/* スマートフォン版：iframeの高さを調整 */
.contact_form_iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
  box-sizing: border-box;
}

/* ーーーーーーー【補足情報】ーーーーーーー */
.contact_note {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #bbbbbb;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 4px;
  box-sizing: border-box;
  text-align: left;
}

.contact_note p {
  margin-bottom: 8px;
  font-size: 0.8rem;
}

.contact_note p:last-child {
  margin-bottom: 0;
}

/* ーーーーーーー【再導線】ーーーーーーー */
.contact_back_works {
  margin-top: 24px;
}

.contact_back_works a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #00880a;
  border: 2px solid #00880a;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact_back_works a:hover {
  color: #ff6e00;
  background-color: transparent;
  border-color: #ff6e00;
}

/* **********************【制作依頼ページ】********************** */
.request_main {
  padding: 24px 12px 40px;
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.request_main__inner {
  width: 100%;
  margin: 0 auto;
}

.request_toc {
  margin-bottom: 24px;
}

.request_toc__list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
  justify-items: center;
}

.request_toc__list li {
  width: 100%;
  max-width: 720px;
}

.request_toc__list li a {
  display: block;
  width: 100%;
  padding: 12px 16px;
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.06);
  border: 2px solid #fff;
  border-radius: 12px;
  text-align: center;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.request_toc__list li a:hover,
.request_toc__list li a:focus {
  background-color: #00880a;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.request_section {
  margin-bottom: 36px;
}

.request_section .h2_2 {
  margin-bottom: 0;
}

.request_section .box_1 {
  padding: 18px 20px;
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.request_section .h3_table {
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.request_list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.request_list li {
  margin-bottom: 14px;
  padding-left: 0;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.8;
}

.request_table_wrap {
  overflow-x: auto;
  /* margin-top: 12px; */
}

.request_table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  margin-top: 16px;
}

.request_table th,
.request_table td {
  padding: 14px 12px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  text-align: left;
  font-size: 0.95rem;
}

.request_table th {
  background-color: rgba(0, 136, 10, 0.9);
  color: #ffffff;
  font-weight: 700;
}

.request_table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
}

.request_table tbody tr.highlight-category td:first-child {
  background-color: rgba(33, 33, 33, 0.05);
  color: #ffffff;
}

.request_note {
  margin-top: 16px;
  color: #bbbbbb;
  font-size: 0.85rem;
  line-height: 1.7;
}

.request_flow {
  margin: 0;
  white-space: pre-wrap;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000;
}

.request_contact_social {
  margin-top: 16px;
  color: #000;
  font-size: 0.95rem;
  line-height: 1.8;
}

#flow .box_1 > li {
  list-style: none;
  margin-left: 20px;
  counter-increment: flow-step;
  margin-bottom: 12px;
}

/* ::beforeで番号を表示 */
#flow .box_1 > li::before {
  content: counter(flow-step) ". ";
  display: inline-block;
  margin-right: 4px;
  font-weight: 600;
}

/* *************************************** */
/* 【PC版】 */
/* *************************************** */
@media (min-width: 769px) {
  /* **********************************************************【プロフィールページ】***************************** */

  /* ーーーーーー【セクションナビ（開閉式）】ーーーーーー */
  .section-nav {
    position: fixed;
    top: 90px;
    left: 16px;
    width: auto;
    z-index: 850;
  }

  .section-nav__toggle {
    width: auto;
    padding: 14px 16px;
    font-size: 1.1rem;
    border-radius: 16px;
  }

  .section-nav__list {
    padding: 16px;
    margin: 8px 0 0 0;
    border: 2px solid #00880a;
    border-radius: 16px;
    gap: 10px;
    width: auto;
  }

  .section-nav__list li a {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 10px;
    border: solid 3px #00880a;
  }

  /* **********************【制作依頼ページ】********************** */
  .request_main {
    /* padding: 32px 24px 48px; */
    padding: 20px 12px;
    max-width: 100%;
  }

  .request_toc__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-direction: column;
    align-items: center;

    display: flex;
    gap: 16px;
    padding: 0;
    margin: 16px 0 0;
    list-style: none;
    justify-items: center;
  }

  .request_table th,
  .request_table td {
    padding: 18px 16px;
  }

  .request_table {
    margin-top: 20px;
  }

  .request_section {
    margin-bottom: 48px;
  }

  .request_section .h2_2 {
    margin-bottom: 0;
  }

  .request_section .h3_table {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .request_flow {
    font-size: 1rem;
  }

  .request_contact_social {
    font-size: 1rem;
  }

  /* ーーーーーー【タイトル】ーーーーーー */
  .title_box h1 {
    text-align: center;
    padding: 100 px 0 40px;
  }

  #box_1 p,
  #box_1 ul li {
    margin-bottom: 20px;
    color: #fff;
  }

  main h2 {
    color: #fff;
    margin: 80px 0 80px;
    text-align: center;
  }

  #my_profile,
  #my_question {
    color: #fff;
    margin: 80px 0 50px;
    text-align: center;
  }

  .question_box h3 {
    color: #fff;
  }

  .works_profile_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 24px;
  }

  .question_box {
    margin-bottom: 60px;
  }

  /* ーーーーーーー【レイアウト】ーーーーーーー */
  #main_profile {
    max-width: 100%;
    margin: 0 auto; /* ← 中央揃え */
    padding: 40px 16px; /* ← 余白不足の解消 */
    box-sizing: border-box;
  }

  main > div > ul {
    display: flex; /* ← 横並びにする */
    gap: 32px; /* ← 均等な近接 */
    justify-content: center; /* ← 中央揃え */
    padding: 0;
  }

  main > div > ul li a {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
  }

  .profile_box {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  #skill_box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 100px;
    margin-top: 24px;
  }

  #skill_box_about ul li {
    font-size: 0.8rem;
  }

  /* ーーーーーーー【ボックス】ーーーーーーー */
  /* ■ナビのボックス */
  .box17 {
    margin: 0 auto;
    margin-bottom: 48px;
    position: relative;
    padding: 0.5em 1.5em;
    border-top: solid 2px #fff;
    border-bottom: solid 2px #fff;
    max-width: 100%;
    width: 600px;
  }

  .box17 li a:hover {
    color: #ff6e00;
    border-color: #ff6e00;
  }

  .box17:before,
  .box17:after {
    content: "";
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #fff;
  }
  .box17:before {
    left: 10px;
  }
  .box17:after {
    right: 10px;
  }
  .box17 p {
    margin: 0;
    padding: 0;
  }

  /* ■プロフィールボックス */
  .profile_box img {
    max-width: 100%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    flex-shrink: 0; /* ← 押し潰れ防止 */
    margin: auto 0;
  }

  .profile_box #profile_textbox {
    display: flex;
    flex-direction: column;
    max-width: 600px;
  }

  .profile_box #profile_textbox p {
    margin-bottom: 32px;
  }

  .profile_box #profile_about_box {
    display: flex;
    flex-direction: row;
    justify-content: center;

    gap: 40px;
  }

  /* ■テキストボックス  */
  .box-design14 {
    width: 400px;
    padding: 24px;
    border: 2px solid #ffffff;
    height: 360px;
    color: #fff;
    text-align: center;
  }

  /* ■見出し部分*/
  .box-design14-ttl {
    position: relative;
    background-color: #00880a;
    color: #fff;
    padding: 0.5em 0.5em;
    margin: 0;
    width: 100%;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .box-design14 > ul > li {
    font-size: 1rem;
    padding: 5px;
  }

  /* ーーーーーー【QA】ーーーーーー */
  .qa-6 {
    border-bottom: 2px solid #d6dde3;
    max-width: 720px; /* ← 読みやすい横幅 */
    margin: 0 auto 12px;
  }

  .qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.4rem;
    cursor: pointer;
  }

  .qa-6 p {
    color: #ffffff;
  }

  .qa-6 summary::before,
  .qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
  }

  .qa-6 summary::before {
    color: #75bbff;
    content: "Q";
  }

  .qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #ffffffb3;
    border-right: 3px solid #ffffffb3;
    content: "";
    transition: transform 0.5s;
  }

  .qa-6[open] summary::after {
    transform: rotate(225deg);
  }

  .qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0.3em 3em 1.5em;
    color: #333;
    transition:
      transform 0.5s,
      opacity 0.5s;
  }

  .qa-6[open] p {
    transform: none;
    opacity: 1;
    color: #fff;
    font-size: 1rem;
  }

  .qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
  }

  /* ーーーーーーー【ボックス】ーーーーーーー */
  .box_1 {
    padding: 16px 20px;
    margin: 24px 0;
    color: #000;
    background: #f1ffe8;
    border-left: solid 8px #58d758;
    max-width: 720px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.7;
  }

  .caption_box .box_1 p {
    margin: 0 0 0.8em 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    word-break: break-word;
  }

  .box_1 p:last-child {
    margin-bottom: 0;
  }

  /* **********************************************************【作品ページ】***************************** */
  .works_main {
    max-width: 100%;
    margin: 0 auto; /* ← 中央揃え */
  }
  .works_main .h2_title {
    color: #fff;
    margin: 80px 0 80px;
    text-align: center;
  }

  /*ーーーーーーー【仮置きビジュアルボックス】ーーーーーーー*/
  .work_dummy_box,
  .work_dummy_box_2 {
    width: 100%;
    max-width: 720px;
    height: 405px;
    background-color: #d9d9d9;
    margin: 48px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .work_dummy_box a,
  .work_dummy_box_2 a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .work_dummy_box img,
  .work_dummy_box_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  /* ーーーーーーー【モックアップ】ーーーーーーー */
  /* モックアップ画像 */
  .work_mockup_box img {
    width: 720px;
    max-width: 100%;
    height: auto;
    display: block;
    background: #d9d9d9;
  }

  /* ーーーーーーー【モックアップのモーダルウィンドウ】ーーーーーーー */
  /*ーーーーーーー【モーダル共通】ーーーーーーー*/
  .work_modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
  }

  /* :targetで表示 */
  .work_modal:target {
    display: block;
  }

  /* 背景クリック用 */
  .modal_bg {
    position: absolute;
    inset: 0;
  }

  /* モーダル本体 */
  .modal_content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    margin: 5vh auto;
    background-color: #6b6b6b;
    padding: 16px;
    animation: fadeInScale 0.4s ease-out;
  }

  /* 全体表示 */
  .modal_content img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
  }

  /* 閉じるボタン */
  .modal_close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 24px;
    text-decoration: none;
    color: #ffffff;
  }

  /*＝＝＝＝＝＝＝【サムネイル hover 演出】＝＝＝＝＝＝＝*/
  .work_dummy_box {
    cursor: pointer;
  }

  .work_dummy_box a,
  .work_dummy_box a img {
    border: none;
    outline: none;
  }

  .work_dummy_box a:focus,
  .work_dummy_box a:focus-visible,
  .work_dummy_box a:focus img,
  .work_dummy_box a:focus-visible img {
    outline: none;
    box-shadow: none;
  }

  /* うっすら暗くするレイヤー */
  .work_dummy_box::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  /* テキスト表示 */
  .work_dummy_box::after {
    content: "クリックで拡大";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.08em;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  /* hover 時 */
  .work_dummy_box:hover::before,
  .work_dummy_box:hover::after {
    opacity: 1;
  }

  .work_dummy_box::before,
  .work_dummy_box::after {
    pointer-events: none;
  }

  /* hover効果は no_hover が付いていないものだけ */
  .work_dummy_box:not(.no_hover)::before,
  .work_dummy_box:not(.no_hover)::after {
    pointer-events: none;
  }

  .work_dummy_box:not(.no_hover):hover::before,
  .work_dummy_box:not(.no_hover):hover::after {
    opacity: 1;
  }

  /* ーーーーーーー【作品サマリー】ーーーーーーー*/
  .work_summary {
    margin: 32px 0;
    max-width: 720px;
  }

  .work_summary_text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
  }

  .heading-37-text p a {
    text-decoration: underline;
    padding: 4px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }

  .heading-37-text p a:hover {
    background-color: #fff;
    color: #00880a;
    text-decoration: none;
  }

  /*ーーーーーーー【作品メタ情報】ーーーーーーー*/
  .work_meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 32px 0 64px;
    list-style: none;
    font-size: 0.95rem;
    color: #ffffff;
    background-color: #00880a;
    border-radius: 24px;
    padding: 12px 20px;
    max-width: 500px;
    width: 100%;
    margin: 60px auto;
    text-align: center;
  }

  /* ーーーーーー【カテゴリタイトル】ーーーーーー */
  .h2_2 {
    padding: 0.5em;
    color: #fff;
    background: #00880a;
    width: 100%;
    height: auto;
    padding: 0.75em 1em;
    margin: 40px 0;
    line-height: 1.4;
    font-weight: 700;
    font-size: 2rem;
  }
  /* ーーーーーー */
  /* ーーーーーーー【サブカテゴリタイトル】ーーーーーーー */

  .heading-37 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 64px auto 16px;
    border-bottom: 5px solid #00880a;
    display: inline-block;
    padding: 0.2em 0;
    margin: 20px auto;
    width: auto;
    display: inline-block;
  }

  .caption_box {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    width: 800px;
    max-width: 100%;
    align-items: center;
  }

  .caption_box .caption_details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .caption_box h5 {
    margin: 10px 0;
    font-size: 1.2rem;
  }

  .caption_box p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .caption_box .box_1 p {
    margin: 0 0 0.8em 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    word-break: break-word;
  }

  .box_1 p:last-child {
    margin-bottom: 0;
  }

  /* **********************【お問い合わせページ】********************** */
  #main_contact {
    padding-top: 0;
  }
  /* ーーーーーーー【formrun】ーーーーーーー */
  .contact_form_wrap {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 24px;
    box-sizing: border-box;
    border-radius: 8px;
  }

  /* PCファースト：十分な高さを確保 */
  .contact_form_iframe {
    display: block;
    width: 100%;
    min-height: 900px;
    border: none;
  }
  /* ーーーーーーー */

  .formrun-embed {
    background-color: #75bbff;
  }

  .contact_section {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 40px;
    text-align: center;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .contact_section h1 {
    padding: 0;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .contact_lead {
    font-size: 1.5rem;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto 64px;
    color: #ffffff;
    padding: 20px;
    border-radius: 4px;
  }

  .contact_mail_box {
    margin-bottom: 48px;
    padding: 24px;
    background-color: rgba(0, 136, 10, 0.08);
    border-radius: 8px;
    border: 1px solid #00880a;
  }

  .contact_label {
    font-size: 1rem;
    margin-bottom: 16px;
    color: #cccccc;
    font-weight: 600;
  }

  .contact_mail_link {
    font-size: 1.4rem;
    color: #ffffff;
    border-bottom: 2px solid #00880a;
    padding-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .contact_mail_link:hover {
    color: #ff6e00;
    border-color: #ff6e00;
    text-shadow: 0 0 8px rgba(255, 110, 0, 0.3);
  }

  .contact_note {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #bbbbbb;
    margin-bottom: 64px;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
  }

  .contact_note p {
    margin-bottom: 12px;
    font-size: 1rem;
  }

  .contact_note p:last-child {
    margin-bottom: 0;
  }

  .contact_back_works {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
  }

  .contact_back_works a {
    display: inline-block;
    padding: 12px 32px;
    font-size: 1rem;
    color: #ffffff;
    background-color: #00880a;
    border: 2px solid #00880a;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
  }

  .contact_back_works a:hover {
    color: #ff6e00;
    background-color: transparent;
    border-color: #ff6e00;
    box-shadow: 0 4px 12px rgba(255, 110, 0, 0.3);
  }

  /* **********************【プライバシーポリシー】********************** */
  /* ===== プライバシーポリシー全体 ===== */
  .privacy_main {
    padding: 0 20px;
  }

  /* ===== コンテンツ幅制御 ===== */
  .privacy_section {
    max-width: 880px;
    margin: 0 auto;
  }

  /* ===== 本文 ===== */
  .privacy_text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 16px;
  }
  /* ーーーーーーー【リストスタイル】ーーーーーーー */
  /* ===== リスト ===== */
  .privacy_list {
    margin: 0 0 32px 1.2em;
    padding-left: 1.5em;
  }

  .privacy_list li {
    list-style: circle;
    margin-bottom: 8px;
  }

  .privacy_list li a {
    text-decoration: underline;
  }

  /* ーーーーーーー【「納品までの流れ」セクション：番号付きリストのスタイル】ーーーーーーー */
  /* カウンターをリセット */
  #flow .box_1 {
    counter-reset: flow-step;
  }

  /* 直下のli要素のみを番号付きリストに */
  #flow .box_1 > li {
    list-style: none;
    margin-left: 20px;
    counter-increment: flow-step;
    margin-bottom: 12px;
  }

  /* ::beforeで番号を表示 */
  #flow .box_1 > li::before {
    content: counter(flow-step) ". ";
    display: inline-block;
    margin-right: 4px;
    font-weight: 600;
  }
}
