@charset "UTF-8";
/* プロフィール編集ページのスタイル */
.nexsus-profile-edit {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: white;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.nexsus-profile-edit h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.nexsus-profile-edit h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  border-radius: 3px;
}

.profile-section {
  margin-bottom: 40px;
  padding: 0;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.profile-section h3 {
  font-size: 24px;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #64b5f6;
  position: relative;
}

.profile-section h3::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
}

.form-group {
  margin-bottom: 25px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

.form-group input[type="file"] {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(100, 181, 246, 0.5);
}

.form-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}

.description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  font-style: italic;
}

/* プロフィール画像セクション */
.current-image {
  margin-bottom: 20px;
  text-align: center;
}

.current-image img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #64b5f6;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.current-image img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border-color: #2196f3;
  -webkit-box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
          box-shadow: 0 8px 25px rgba(33, 150, 243, 0.4);
}

/* 送信ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}

.nexsus-profile-submit {
  background: -webkit-gradient(linear, left top, right top, from(#64b5f6), to(#2196f3));
  background: linear-gradient(90deg, #64b5f6, #2196f3);
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
          box-shadow: 0 5px 15px rgba(33, 150, 243, 0.3);
  letter-spacing: 1px;
}

.nexsus-profile-submit:hover {
  background: -webkit-gradient(linear, left top, right top, from(#2196f3), to(#1976d2));
  background: linear-gradient(90deg, #2196f3, #1976d2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
          box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
}

.nexsus-profile-submit:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
          box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.nexsus-profile-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.2)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.nexsus-profile-submit:hover::before {
  left: 100%;
}

/* メッセージスタイル */
.success-message,
.error-message {
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-weight: 500;
  text-align: center;
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}

.success-message {
  background-color: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4CAF50;
}

.error-message {
  background-color: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.3);
  color: #ff5252;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* グリッドレイアウト（オプション）*/
@media screen and (min-width: 768px) {
  .profile-section .form-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-group.full-width {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / 3;
  }
}

/* SNSアイコン装飾 */
.social-info .form-group {
  position: relative;
}

.social-info .form-group input {
  padding-left: 45px;
}

.social-info .form-group::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 50px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
}

/* IDセレクタを使用した方法 */
label[for="line_profile"]::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 69%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2364b5f6' d='M19.365 9.89c.50 0 .907.41.907.91s-.407.91-.907.91H17.59v1.306h1.775c.5 0 .907.409.907.909s-.407.909-.907.909H16.59c-.5 0-.909-.409-.909-.909v-5.344c0-.5.41-.909.909-.909h2.775c.5 0 .907.409.907.909s-.407.909-.907.909H17.59v1.306h1.775zm-4.365 4.035c.5 0 .909-.409.909-.909V8.773c0-.5-.41-.909-.909-.909s-.909.409-.909.909v4.243c0 .5.409.909.909.909zm-3.032 0c.396 0 .744-.241.868-.6l1.29-2.845v2.536c0 .5.41.909.91.909s.908-.409.908-.909V8.773c0-.5-.409-.909-.908-.909-.396 0-.744.24-.868.6l-1.29 2.844V8.773c0-.5-.41-.909-.909-.909s-.909.409-.909.909v4.243c0 .5.409.909.909.909zm-4.968 0c.5 0 .909-.409.909-.909V8.773c0-.5-.409-.909-.909-.909s-.909.409-.909.909v4.243c0 .5.409.909.909.909zM24 10.8c0-5.282-5.373-9.59-11.982-9.59C5.41 1.21.037 5.518.037 10.8c0 4.756 4.195 8.72 9.863 9.484.384.077.909.236.99.535.1.272.066.698.033.977l-.16.942c-.05.287-.228 1.12.986.609s6.516-3.836 8.887-6.566C23.017 14.742 24 12.877 24 10.8'/%3E%3C/svg%3E");
}

.social-info .form-group:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2364b5f6' d='M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z'/%3E%3C/svg%3E");
}

.social-info .form-group:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2364b5f6' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z'/%3E%3C/svg%3E");
}

.social-info .form-group:nth-child(5)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%2364b5f6' d='M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z'/%3E%3C/svg%3E");
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
  .nexsus-profile-edit {
    padding: 25px 20px;
    margin: 20px auto;
  }
  .nexsus-profile-edit h2 {
    font-size: 26px;
  }
  .profile-section {
    padding: 20px 15px;
  }
  .profile-section h3 {
    font-size: 20px;
  }
  .form-group label {
    font-size: 15px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
  }
  .nexsus-profile-submit {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .nexsus-profile-edit {
    padding: 20px 15px;
  }
  .nexsus-profile-edit h2 {
    font-size: 22px;
  }
  .profile-section {
    padding: 15px 12px;
  }
  .profile-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    margin-bottom: 5px;
  }
  .current-image img {
    width: 100px;
    height: 100px;
  }
}

/* ホバーエフェクト改善 */
.form-group input,
.form-group select,
.form-group textarea {
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(100, 181, 246, 0.3);
}

/* フォーカス時のアニメーション */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  -webkit-animation: pulse 1.5s infinite alternate;
          animation: pulse 1.5s infinite alternate;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.4);
            box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 4px rgba(100, 181, 246, 0.2);
            box-shadow: 0 0 0 4px rgba(100, 181, 246, 0.2);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.4);
            box-shadow: 0 0 0 0 rgba(100, 181, 246, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 4px rgba(100, 181, 246, 0.2);
            box-shadow: 0 0 0 4px rgba(100, 181, 246, 0.2);
  }
}

/* セレクトボックスとオプションのスタイル */
#gender {
  width: 100%;
  padding: 14px 18px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
  padding-right: 40px;
}

#gender:focus {
  outline: none;
  border-color: #64b5f6;
  -webkit-box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.3);
          box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.3);
  background-color: rgba(255, 255, 255, 0.08);
}

#gender:hover {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(100, 181, 246, 0.3);
}

/* オプションのスタイリング（可能な範囲で） */
#gender option {
  background-color: #192385;
  color: white;
  padding: 10px;
}

/* Firefox用のカスタマイズ */
@-moz-document url-prefix() {
  #gender {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
  }
  #gender option {
    background-color: #192385;
    color: white;
  }
}

/* Webkit（Chrome, Safari）用のカスタマイズ */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #gender {
    color: white;
  }
  #gender option {
    background-color: #192385;
  }
}

/* IE/Edge用のカスタマイズ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  #gender {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
  }
}

/* セレクトボックスの矢印を隠して独自のものに置き換える */
#gender::-ms-expand {
  display: none;
}

/* オプション選択時のハイライトカラー */
#gender option:checked,
#gender option:hover {
  background-color: #3949ab;
  color: white;
}
/*# sourceMappingURL=profile-editor.css.map */