@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/* =========================================================
   マイページ（CC）
   - ヘッダーは通常フロー（固定したい場合は後で対応）
   - 左メニューは fixed（スクロールしても1pxも動かない）
   - WordPress管理バー（admin-bar）分を自動考慮
   ========================================================= */
/* 変数（ここだけ触れば全体に反映） */ :root {
  --cc-mypage-header-h: 70px; /* マイページヘッダーの高さ */
  --cc-mypage-sidebar-w: 300px; /* 左メニュー幅 */
  --cc-mypage-gap: 24px; /* 左右の間隔 */
  --cc-adminbar-h: 0px; /* 管理バー分（通常0） */
  --rf-bg: #f6f7f9;
  --rf-card: #ffffff;
  --rf-line: #e6e8ee;
  --rf-text: #1f2937;
  --rf-sub: #6b7280;
  --rf-primary: #1b74e4;
  --rf-primary-dark: #155fc0;
  --rf-danger: #ef4444;
  --rf-radius: 14px;
  --rf-shadow: 0 6px 20px rgba(17, 24, 39, .06);
}
a {
  text-decoration: none;
}
/* ログイン中の管理バー高さ（PCは32pxが多い） */
body.admin-bar {
  --cc-adminbar-h: 32px;
}
/* Cocoonの右サイドバー等をマイページだけ無効化 */
body.page-template-page-mypage #sidebar, body.page-template-page-mypage .sidebar {
  display: none !important;
}
body.page-template-page-mypage #main, body.page-template-page-mypage .content {
  width: 100% !important;
}
body.page-template-page-mypage .main, body.page-template-page-mypage .content-in {
  max-width: 1200px;
}
input, textarea, select, button {
  font-family: inherit;
}
.main {}
/* ===== レイアウト本体 ===== */
.cc-mypage {
  display: flex;
  gap: var(--cc-mypage-gap);
  align-items: flex-start;
}
/* 右カラムを左固定分だけ右にずらす */
.cc-mypage {
  padding-left: calc(var(--cc-mypage-sidebar-w) + var(--cc-mypage-gap));
  position: relative;
}
/* ===== 左メニュー（完全固定） ===== */
.cc-mypage__sidebar {
  width: var(--cc-mypage-sidebar-w);
  background: #fff;
  color: #565656;
  box-shadow: 0 0 15px rgba(0, 0, 0, .15);
  overflow: auto;
}
.new_request {
  display: block;
  background: #127be6;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px 0;
  border-bottom: solid 5px #2369b1;
  width: 90%;
  margin: 0 auto 15px;
}
.new_request:hover {
  background: #2369b1;
  transition: .3s;
}
/* マイページのときだけ fixed 化（1pxも動かさない） */
.cc-mypage__sidebar {
  position: fixed;
  left: 0;
  top: calc(var(--cc-mypage-header-h) + var(--cc-adminbar-h));
  height: calc(100vh - var(--cc-mypage-header-h) - var(--cc-adminbar-h));
  z-index: 500;
}
/* ===== 左メニュー中身 ===== */
.cc-mypage__hamburger {
  display: none;
}
.cc-mypage__close {
  display: none;
}
.cc-sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
.cc-sidebar-user__avatar-wrap {
  width: 70px;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.cc-sidebar-user__text {
  line-height: 1;
}
.cc-sidebar-user__name {
  font-weight: bold;
  font-size: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.cc-sidebar-user__id {
  font-size: 12px;
  color: #b6b6b6;
}
.cc-sidebar-user__meta {
  font-size: 11px;
  display: block;
  color: #b6b6b6;
  margin: 3px 0;
}
.cc-mypage__nav {
  display: flex;
  flex-direction: column;
  border-top: solid 1px #e5e5e5;
}
.cc-mypage__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #565656;
  text-decoration: none;
  padding: 15px 20px;
  border-bottom: solid 1px #e5e5e5;
  font-size: 16px;
}
.cc-mypage__link:hover {
  background: #efefef;
  transition: .3s;
  color: #565656;
}
.cc-mypage__link.is-active {
  background: #ddd;
  font-weight: bold;
}
.cc-mypage__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: .9;
}
.cc-mypage__icon path {
  fill: currentColor;
}
.cc-mypage__label {
  display: inline-block;
}
.cc-copy {
  font-size: 12px;
  display: block;
  padding: 20px;
  color: #676767;
  text-align: center;
}
.cc-mypage__switch_title {
  width: 86%;
  display: block;
  font-size: 11px;
  text-align: center;
  background: #0f2f4c;
  color: #fff;
  padding: 5px 0;
  margin: 20px auto 0;
  border-bottom: solid 1px #b8b8b8;
}
.cc-mypage__switch {
  display: flex;
  margin: 0 auto 15px;
  width: 86%;
}
.cc-mypage__switchBtn {
  display: inline-flex;
  justify-content: center;
  padding: 5px;
  font-size: 12px;
  background: #ccc;
  width: 33%;
  margin: 0 auto;
  color: #676767;
  border-right: solid 1px #b8b8b8;
}
.cc-mypage__switchBtn:hover {
  background: #b8b8b8;
  color: #676767;
}
.cc-mypage__switchBtn.is-active {
  background: #0f2f4c;
  color: #fff;
  border: none;
}
/* ===== 右メイン ===== */
.cc-mypage__main {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  margin: 24px 24px 0 0;
}
.cc-mypage__heading {
  margin: 0 0 12px;
  display: none;
}
/* ===== マイページ専用ヘッダー ===== */
.cc-mypage-header {
  background: #0f2f4c;
  color: #fff;
  height: var(--cc-mypage-header-h);
  position: fixed;
  z-index: 999;
  width: 100%;
}
.cc-mypage-header__inner {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cc-mypage-header__brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.cc-mypage-header__brand img {
  max-height: 36px;
  width: auto;
  height: auto;
  display: block;
}
.cc-mypage-header__right {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cc-mypage-header__logout {
  color: #fff;
  text-decoration: none;
  padding: 3px;
  border-radius: 3px;
  background: #ddd;
  width: 90%;
  display: block;
  font-size: 12px;
  text-align: center;
  margin: 10px auto 0;
}
.cc-mypage-header__logout:hover {
  background: #ccc;
  color: #fff;
  transition: .3s;
}
/* 固定ヘッダー分だけ、マイページ全体を下げる */
.cc-mypage {
  padding-top: var(--cc-mypage-header-h);
}
/* 管理バーがあるときはヘッダーも下げる（重なり防止） */
body.admin-bar .cc-mypage-header {
  top: var(--cc-adminbar-h);
}
@media (max-width: 768px) {
  body.admin-bar .cc-mypage-header {
    top: calc(var(--cc-adminbar-h) + 14px);
  }
}
.cc-mypage-header {
  top: 0;
}
/* ===== マイページフッター ===== */
.cc-mypage-footer {
  padding: 18px 0;
  opacity: .8;
}
.cc-mypage-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
/* ===== 依頼フォーム ===== */
/* =========================================================
   ログインページ（/login/）専用
   page-login.php を使う前提（スラッグ login）
   ========================================================= */
body.page-id-login, body.page-login, body.page-slug-login {}
/* Cocoon側の余計な枠やサイドバーを抑制（ログイン画面は1カラムに寄せる） */
body.page-slug-login #sidebar, body.page-slug-login .sidebar, body.page-slug-login .entry-categories, body.page-slug-login .sns-share, body.page-slug-login .under-entry-content, body.page-slug-login .pagination {
  display: none !important;
}
body.page-slug-login .content-in, body.page-slug-login .main {
  width: 100% !important;
  max-width: 100% !important;
}
.cc-login {
  min-height: calc(100vh - 60px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
  background: #f4f6f8;
}
.cc-login__wrap {
  width: 100%;
  max-width: 420px;
}
.cc-login__brand {
  text-align: center;
  background: #0f2f4c;
  border-radius: 14px 14px 0 0;
  padding: 20px 0;
}
.cc-login__logo img {
  width: 200px;
}
.cc-login__title {
  font-size: 28px;
  font-weight: 800;
  color: #0f2f4c;
  margin-top: 10px;
}
.cc-login__desc {
  margin-top: 6px;
  color: #6b7280;
  font-size: 14px;
}
.cc-login__card {
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  padding: 20px 30px;
}
.cc-login__error {
  background: #fff3f3;
  border: 1px solid #ffd0d0;
  color: #b42318;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.cc-login__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cc-login__label {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-top: 6px;
}
.cc-login__input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
}
.cc-login__input:focus {
  border-color: #0f2f4c;
  box-shadow: 0 0 0 3px rgba(15, 47, 76, .12);
}
.cc-login__remember {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #4b5563;
  margin-top: 4px;
}
.cc-login__submit {
  margin-top: 8px;
  border: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 16px;
  background: #0f2f4c;
  color: #fff;
  cursor: pointer;
}
.cc-login__submit:hover {
  opacity: .92;
}
.cc-login__meta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}
.cc-login__link {
  font-size: 13px;
  color: #0f2f4c;
  text-decoration: underline;
}
.cc-login__foot {
  text-align: center;
  margin-top: 14px;
  color: #6b7280;
}
.cc-auth__msg {
  background: #f0ffd7;
  border: 1px solid #c6d7aa;
  color: #657749;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  margin-bottom: 12px;
}
.cc-auth__error {
  background: #fadede;
  border-radius: 8px;
  padding: 15px;
  font-size: 12px;
}
.cc-register-label {
  font-weight: bold;
  font-size: 14px;
  background: #e6e8ee;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px 5px 0 0;
  width: 100%;
}
.cc-register-step p {
  margin: 5px 0 10px 0;
}
.cc-register-step select {
  cursor: pointer;
  background: #fff;
}
.cc-register-step input, .cc-register-step select {
  border-radius: 0 0 5px 5px;
  border: 1px solid #e6e8ee;
}
.cc-register-read {
  color: #565656;
  background: #ddd;
  cursor: default;
}
.cc-register-step span {
  font-size: 13px;
}
.cc-register-must {
  color: #F00;
}
/************************************
** 依頼フォーム
************************************/
form {
  color: var(--rf-text);
}
.rf-section {
  margin: 30px 0;
  padding: 0 18px;
}
h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: bold;
  background: #e6e8ee;
  padding: 8px 0;
  border-radius: 8px;
}
h3::first-letter {
  background: #127be6;
  color: #fff;
  padding: 10px 13px;
  border-radius: 8px 0 0 8px;
}
h3.required::after {
  content: " *";
  color: #F00;
}
.rf-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: stretch;
  margin: 3px 0 5px 0;
}
.rf-row input.is-readonly {
  background: #f3f4f6 !important;
  cursor: not-allowed !important;
  opacity: .55;
}
/* サイズ入力の横並び */
.wid {
  gap: 5px 0;
  display: grid;
  grid-template-columns: 14% 15% 8% 14% 15% 8% 26%;
}
.textsize {
  font-size: 11px;
  background: #d6dae3;
  display: block;
  padding: 10px;
  border-radius: 0 8px 8px 0;
  margin-right: 5px;
  border: solid 1px #d6dae3;
}
.rf-row > *:nth-child(2) {
  min-width: 0;
}
.rf-row label {
  min-width: 0;
  font-weight: normal;
  font-size: 13px;
  background: #2e4e65;
  color: #fff;
  border-radius: 8px 0 0 8px;
  padding: 10px 0 0 15px;
}
.wid label {
  padding: 9px 15px 9px 15px;
}
.rf-row:has(textarea) > label {
  align-self: normal;
}
.rf-note {
  font-size: 11px;
  color: var(--rf-sub);
  margin-left: 6px;
}
.rf-row input[type="text"], .rf-row input[type="url"], .rf-row input[type="number"], .rf-row input[type="date"], .rf-row input[type="datetime-local"], .rf-row select, .rf-row textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #d6dae3;
  border-radius: 0 8px 8px 0;
  background: #fff;
  font-size: 14px;
  line-height: 1.4;
  outline: none;
}
.rf-row input[type="number"], .rf-row input[type="date"], .rf-row input[type="datetime-local"], .rf-row select {
  cursor: pointer;
}
.wid input[type="number"] {
  border-radius: 0;
}
.rf-row textarea {
  resize: vertical;
  min-height: 140px;
}
.rf-row input:focus, .rf-row select:focus, .rf-row textarea:focus {
  border-color: rgba(27, 116, 228, .75);
  box-shadow: 0 0 0 4px rgba(27, 116, 228, .14);
}
.rf-row select {
  min-width: 0;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 16px) 55%, calc(100% - 11px) 55%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.rf-wide {
  width: 100%;
}
/* 用途セクションだけカード風 */
.rf-purpose .rf-row {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 5px;
}
.rf-purpose .rf-row label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  border: 4px solid var(--rf-line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  color: #127be6;
  box-shadow: 0 2px 10px rgba(17, 24, 39, .04);
}
.rf-purpose input[type="radio"] {
  width: 0;
  height: 0;
  display: none;
}
/* Chromeなど: :has 対応 */
.rf-purpose .rf-row label:has(input[type="radio"]:checked) {
  border-color: rgba(27, 116, 228, .65);
  box-shadow: 0 0 0 4px rgba(27, 116, 228, .12);
  background: rgba(27, 116, 228, .04);
}
/* Firefox等の保険：JSで付与する */
.rf-purpose .rf-row label.is-checked {
  border-color: rgba(27, 116, 228, .65);
  box-shadow: 0 0 0 4px rgba(27, 116, 228, .12);
  background: rgba(27, 116, 228, .04);
}
.rp_text {
  font-size: 10px;
  font-weight: normal;
  color: #565656;
  text-align: center;
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
fieldset:disabled {
  opacity: .55;
  cursor: not-allowed;
}
fieldset:disabled input, fieldset:disabled select, fieldset:disabled textarea {
  background: #f3f4f6;
  cursor: not-allowed !important;
}
fieldset:disabled label {
  cursor: not-allowed !important;
}
.rf-hidden {
  display: none;
}
/* ====== deploy セクション（01/02/03...） ====== */
.rf-deploy-item {
  border: 1px solid var(--rf-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(17, 24, 39, .04);
  overflow: hidden;
  margin-bottom: 12px;
}
.rf-deploy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #f3f4f6;
  font-weight: 900;
}
.rf-deploy-no {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rf-deploy-no .no {
  background: #127be6;
  color: #fff;
  padding: 6px 25px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
}
.rf-deploy-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.rf-deploy-actions button {
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 900;
  border: 1px solid #cbd5e1;
  background: #fff;
  cursor: pointer;
}
.rf-deploy-actions button:hover {
  box-shadow: 0 0 0 4px rgba(27, 116, 228, .10);
  border-color: rgba(27, 116, 228, .55);
}
.rf-deploy-actions .danger {
  border-color: rgba(239, 68, 68, .5);
  color: #b91c1c;
}
.rf-deploy-actions .danger:hover {
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .10);
  border-color: rgba(239, 68, 68, .75);
}
.rf-deploy-body {
  padding: 14px 14px 10px;
}
.error {
  font-weight: bold;
}
.red {
  color: #F00 !important;
}
.yellow {
  color: #FF0 !important;
}
/* 追加ボタン（常に deploy セクション末尾） */
.rf-add-btn {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px dashed #b9c3d6;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .02em;
}
.rf-add-btn:hover {
  border-color: rgba(27, 116, 228, .65);
  box-shadow: 0 0 0 4px rgba(27, 116, 228, .10);
}
.rf-add-note {
  font-size: 11px;
  color: var(--rf-sub);
  margin-top: 8px;
}
.rf-actions button {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .02em;
}
.rf-actions .submit {
  width: 100%;
  margin-top: 8px;
  border: none;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
  font-size: 16px;
  background: #127be6;
  border-bottom: solid 5px #2369b1;
  color: #fff;
  cursor: pointer;
}
.rf-actions .submit:hover {
  background: #2369b1;
  transition: .3s;
}
@media (max-width: 768px) {
  .rf-section {
    padding: 16px 14px;
  }
  .rf-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .rf-row label {
    font-size: 16px;
    border-radius: 8px;
    padding: 10px 13px 7px 13px;
  }
  input, textarea, select {
    border-radius: 8px !important;
  }
  .wid label {
    border-radius: 8px 0 0 8px !important;
  }
  .wid input {
    border-radius: 0 !important;
  }
  .rf-purpose .rf-row {
    grid-template-columns: 1fr;
  }
  .wid {
    gap: 5px 0;
    display: grid;
    grid-template-columns: 35% 45% 20%;
  }
  .rf-note {
    margin: 0;
  }
  .rf-actions .submit {
    font-size: 16px;
  }
}
/* ===== デザイナー指名ボタン ===== */
.cc-btnPickDesigner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  padding: 10px 35px;
  font-weight: 900;
  background: #127be6;
  color: #fff;
  cursor: pointer;
  border-bottom: solid 5px #2369b1;
}
.cc-btnPickDesigner:hover {
  background: #2369b1;
  transition: .3s;
}
/* ===== モーダル ===== */
.cc-designerModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}
.cc-designerModal[aria-hidden="false"] {
  display: block;
}
.cc-designerModal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}
.cc-designerModal__panel {
  position: relative;
  top: calc(var(--cc-adminbar-h) + 14px);
  width: min(860px, calc(100% - 24px));
  max-height: calc(100% - 24px);
  margin: 12px auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  display: flex;
  flex-direction: column;
}
.cc-designerModal__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #e6e8ee;
}
.cc-designerModal__title {
  font-weight: 900;
  font-size: 16px;
}
.cc-designerModal__close {
  border: none;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.cc-designerModal__bd {
  padding: 15px 20px;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: stretch;
  max-height: 65vh;
}
#cc-designerSearch {
  border-radius: 999px;
  font-size: 12px;
  border: solid 2px #e6e8ee;
}
@media (max-width: 768px) {
  .cc-designerModal__bd {
    grid-template-columns: 1fr;
  }
  .cc-designerItem__pick {
    display: none;
  }
}
.cc-designerItem {
  cursor: pointer;
}
.cc-designerItem input {
  display: none;
}
.cc-designerItem__card {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 4px solid #e6e8ee;
  border-radius: 10px;
  padding: 12px;
  background: #fff;
  height: 100%;
}
.cc-designerItem__avatar img, .cc-designerItem__avatar .avatar {
  width: 75px;
  height: 75px;
  border-radius: 999px;
  object-fit: cover;
}
.cc-designerItem__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.cc-designerItem__name {
  font-weight: 900;
}
.cc-designerItem__eta {
  font-size: 12px;
  font-weight: 900;
  color: #1f2937;
  background: #e6e8ee;
  border-radius: 5px;
  padding-right: 10px;
}
.cc-designerItem__pick {
  margin-left: auto;
  font-size: 14px;
  padding: 6px 20px;
  border-radius: 8px;
  border-bottom: solid 3px #2369b1;
  background: #127be6;
  color: #fff;
}
.cc-designerItem input:checked + .cc-designerItem__card {
  border-color: rgba(27, 116, 228, .75);
  box-shadow: 0 0 0 4px rgba(27, 116, 228, .14);
}
.cc-designerModal__ft {
  padding: 15px 20px;
  border-top: 1px solid #e6e8ee;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cc-designerModal__ok {
  border-bottom: solid 3px #2369b1;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 900;
  background: #127be6;
  color: #fff;
  cursor: pointer;
  width: 50%;
}
.cc-designerModal__ok:hover {
  background: #2369b1;
  transition: .3s;
}
.cc-designerModal__cancel {
  border: 1px solid #cbd5e1;
  border-bottom: 3px solid #cbd5e1;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 900;
  background: #fff;
  cursor: pointer;
  width: 50%;
}
.cc-designerModal__cancel:hover {
  background: #cbd5e1;
  transition: .3s;
}
.cc-designerItem__sns {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cc-designerItem__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #666;
  background: rgba(0, 0, 0, .04);
  transition: .15s;
  text-decoration: none;
}
.cc-designerItem__sns a:hover {
  color: #1b74e4;
  background: rgba(27, 116, 228, .10);
}
.shortest {
  color: #FFF;
  background: #127be6;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 5px 0 0 5px;
  margin-right: 10px;
  font-weight: normal;
}
/* ===== モーダルヘッダー：タイトル＋検索＋ソート ===== */
.cc-designerModal__titleRow {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cc-designerModal__tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 12px;
}
.cc-designerSearch {
  width: 180px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #d6dae3;
  border-radius: 10px;
  background: #fff;
  font-size: 13px;
}
.cc-designerSort {
  height: 34px;
  padding: 0 10px;
  border: solid 2px #e6e8ee;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  color: #757575;
  cursor: pointer;
}
/* ===== 認証バッジ ===== */
.cc-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(2px);
}
.cc-verified svg {
  display: block;
}
@media screen and (max-width: 834px) {
  .cc-designerModal__hd {
    align-items: flex-start;
  }
  .cc-designerModal__titleRow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
  }
  .cc-designerModal__tools {
    margin-left: 0;
  }
  .cc-designerSort {
    width: 50%;
  }
  #cc-designerSearch {
    width: 50%;
  }
}
/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}
/*834px以下*/
/* ===== スマホ：ハンバーガーでサイドバーを出す ===== */
@media screen and (max-width: 834px) {
  /* 右カラムを「左メニュー分ずらす」のを解除 */
  .cc-mypage {
    padding-left: 0;
    margin: 0;
  }
  /* サイドバーを画面外に隠してスライドイン */
  .cc-mypage__sidebar {
    left: 0;
    top: calc(var(--cc-mypage-header-h) + var(--cc-adminbar-h) + 14px);
    height: calc(100vh - var(--cc-mypage-header-h) - var(--cc-adminbar-h));
    width: min(86vw, 320px);
    transform: translateX(-110%);
    transition: transform .25s ease;
    z-index: 1001;
  }
  /* 開いた状態 */
  body.cc-mypage-menu-open .cc-mypage__sidebar {
    transform: translateX(0);
  }
  /* オーバーレイ */
  .cc-mypage__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1000;
  }
  body.cc-mypage-menu-open .cc-mypage__overlay {
    display: block;
  }
  /* 閉じるボタン（サイドバー内） */
  .cc-mypage__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    margin: 10px auto;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    padding: 15px;
    color: #646464;
  }
  /* 開いてる時は裏のスクロールを止めたい場合 */
  body.cc-mypage-menu-open {
    overflow: hidden;
    touch-action: none;
  }
  /* メインの余白をスマホ向けに */
  .cc-mypage__main {
    margin: 16px 12px 0;
    padding: 16px;
    border-radius: 10px;
  }
  .cc-mypage__hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: #0f2f4c;
    color: #fff;
    cursor: pointer;
  }
}
@media (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cc-mypage__main {
    width: 100%;
    overflow: hidden;
    margin: 0;
  }
  input, textarea, select {
    font-size: 16px !important;
    transform-origin: left center;
  }
  @media screen and (max-width: 834px) {
    .cc-mypage__hamburger {
      display: inline-flex;
    }
  }
}