@charset "utf-8";

/*
Theme Name: WordPressレスポンシブテーマ作成byPlusers
Author: Plusers
Description: original theme
Version： 3.0.0
*/
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f0f0f0;
}

.interface-container {
  max-width: 100%;
  margin: 0 auto;
}

.button-section {
  background-color: #a9a9a9;
  padding: 15px;
  text-align: center;
}

.interface-button {
  background-color: #e6e6e6;
  border: none;
  padding: 8px 20px;
  font-size: 14px;
  cursor: pointer;
}

.cards-section {
  padding: 15px;
  background-color: #f5f5f5;
}

.card-item {
  display: flex;
  background-color: white;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-thumbnail {
  width: 80px;
  background-color: #fff;
  flex-shrink: 0;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
}

.card-content {
  display: flex;
  flex-grow: 1;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}

.card-text-lines {
  flex-grow: 1;
}

.text-line {
  height: 10px;
  margin-bottom: 8px;
  background-color: #e0e0e0;
  width: 90%;
}




.blue-button {
  display: block;
  background-color: #4285f4;
  color: white;
  text-decoration: none;
  padding: 5px 15px;
  font-size: 12px;
  text-align: center;
}


.bpbm-empty-or {
  display: none;
}

.bpbm-empty-link {
  display: none;
}

/* === 自分のメッセージ全体を右寄せ === */
.bm-messages-stack.outgoing {
  display: flex !important;
  /* ← これがないと row-reverse 効きません */
  flex-direction: row-reverse !important;
  /* アイコンとメッセージを反転 */
  align-items: flex-start;
  text-align: right;
}

/* === アイコン（アバター）も右に === */
.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack .bm-pic {
  margin-right: 15px;
}

.bm-messages-stack.outgoing .bm-pic {
  margin-right: 10px;
  margin-right: 0;
}

.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack.bm-left-side .bm-content .bm-info {
  justify-content: end;
}

/* === メッセージの吹き出し本体 === */
.bm-messages-stack.outgoing .bm-message-content {
  background-color: #dcf8c6 !important;
  /* LINE風の緑 */
  border-radius: 12px 12px 0 12px;
  padding: 10px 14px;
  max-width: 70%;
  display: inline-block;
  text-align: left;
}

/* === メッセージテキストの余白調整 === */
.bm-message-content-text p {
  margin: 0;
}

.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack .bm-content .bm-messages-listing .bm-message .bm-message-info {
  display: block;
  float: right;
  margin-left: 0px;
}

.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack .bm-content {
  margin-top: 0%;
  margin-right: 15px;
}

.message-controls {
  display: none !important;
}

.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack .bm-content .bm-messages-listing .bm-message {
  justify-content: flex-end;
}

.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack.bm-left-side .bm-content .bm-messages-listing .bm-message .bm-message-content:not(.bm-hide-background) * {

  color: rgba(var(--left-message-text-color), 1) !important;
}

.bp-messages-wrap .bm-messages-list .bm-list .bm-messages-stack.bm-left-side .bm-content .bm-messages-listing .bm-message .bm-message-content:not(.bm-hide-background) {
  border-radius: var(--bm-message-border-radius) !important;
  background: rgba(var(--left-message-bg-color), 1);
  color: rgba(var(--left-message-text-color), 1);
  flex-direction: row-reverse;
  display: flex;
  gap: 10px;
}

/* === 相手のメッセージは左寄せのまま（参考） === */
.bm-messages-stack.incoming {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}

.bm-messages-stack.incoming .bm-message-content {
  background-color: #f1f0f0;
  border-radius: 12px 12px 12px 0;
  padding: 10px 14px;
  max-width: 70%;
  display: inline-block;
}

.bm-messages-listing {
  float: right;
}


.chat-header.side-header {
  display: none !important;
}

.new-message {
  display: none !important;
}



.internship-archive-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 12px;
  ;
}

.internship-archive-container h1 {
  margin: 50px 0;
  font-size: 30px;
  font-weight: bold;
}

.internship {
  display: flex;
  justify-content: center;

}

.internship__item__block__avatar {
  transition: opacity 0.3s ease;
  /* ホバー時のアニメーションを追加 */
}

.internship__item__block__avatar:hover {
  opacity: 0.6;
  /* ホバー時の透明度を変更 */
}

.internship__item {
  max-width: 900px;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 50px;
  background-color: #fff;

}

.internship-basic__company__info {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  justify-content: space-around;
}

@media (min-width: 768px) {
  .internship__item__block img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }

}

.internship__item__block__title {
  font-size: 19px;
}

@media (max-width: 768px) {
  .internship__item__block__title {
    font-size: 17px;
  }

  .internship__title__details {
    font-size: 14px;
  }

  .internship__item__block img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
  }

}

.internship__item__block {
  align-items: flex-start;
  gap: 20px;
}


/*drawer-userのstyle*/
.internship__item__block__company {
  margin-bottom: 10px;
  color: #009688;
  font-weight: 700;
  font-size: 14px;
}



/**************************************/

.internship__title h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.internship__title__details p {
  margin-bottom: 4px;
  /* font-size: 17px; */
  color: #333;
  line-height: 1.6;
}


.acf-field.acf-field-post-to-edit.acf-field-67ee504e8e172 {
  display: none;
}

.btn-detail {
  width: 200px;
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  background-color: #0168b4;
  /* ボタンの背景色 */
  text-decoration: none;
  border-radius: 5px;
  /* 角を丸くする */
  transition: background-color 0.3s ease;
  /* ホバー時のアニメーション */
}

.btn-detail:hover {
  background-color: #005177;
  /* ホバー時の背景色 */
}


.internship__title__details {
  margin-top: 20px;
}

.internship__title {
  margin-left: 10px;

}

.internship-details {
  display: flex;
}

.internship__title__details p {
  margin: 0 0 8px;
  text-indent: -5em;
  /* ラベル部分を引き戻す */
  padding-left: 5em;
  /* ラベル分を右にずらす */
  line-height: 1.6;
  word-break: break-word;
}

.detail-label {
  font-weight: bold;
  display: inline-block;
  width: 5em;
  /* ラベル部分を固定幅に */
}

.internship__details p {
  margin: 0 0 8px;
  text-indent: 0em;
  /* ラベル部分を引き戻す */
  /* ラベル分を右にずらす */
  line-height: 1.6;
  word-break: break-word;
}

.internship-basic {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acf-field textarea {
  height: 5rem;

}

.frontend-form.-submit {
  width: 60%;
  border: 1px solid #ccc;
  margin-bottom: 100px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .frontend-form.-submit {
    width: 95%;
    border: solid 1px black;
    margin-bottom: 100px;
  }

}

.internship-basic__company {
  display: flex;
  width: 100%;
  gap: 20px;

}

.internship-basic__company__name {
  font-weight: 700;
  font-size: 15px;
  color: #009688;

  @media (max-width: 768px) {
    font-size: 13px;

  }
}


.container {
  max-width: 900px;
  margin: 0 auto;
  /* padding: 40px 20px; */
  padding: 40px 12px;
}



.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.faq-container {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-category {
  border-bottom: 1px solid #e0e0e0;
}

.faq-category:last-child {
  border-bottom: none;
}

.category-header {
  background: #009688;
  color: white;
  padding: 20px 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2c3e50;
  transition: all 0.5s ease;
  position: relative;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
  transform: translateX(10px);
  box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
}

.faq-question::before {
  content: "Q";
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #667eea;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  background: #f8f9ff;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 25px 30px 25px 75px;
  color: #555;
  line-height: 1.8;
  position: relative;
}

.faq-answer-content::before {
  content: "A";
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 30px;
  /* top: 25px; */
}

.highlight {
  color: #667eea;
  font-weight: 600;
}

.contact-section {
  background: rgba(255, 255, 255, 0.9);
  margin-top: 40px;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.contact-section p {
  color: #666;
  margin-bottom: 20px;
}

.contact-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .container {
    padding: 20px 10px;
  }

  .header h1 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 20px 20px;
    font-size: 1rem;
  }

  .faq-answer-content {
    padding: 20px 20px 20px 65px;
  }

  .category-header {
    padding: 15px 20px;
    font-size: 1rem;
  }
}



.hero {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  text-align: center;
  color: #fff;
  /* background: rgba(0, 0, 0, 0.4); */
  /* 半透明の黒背景で文字を読みやすく */
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: #00aaff;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #0077cc;
}

/* モバイル対応 */
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}


/* 全体のコンテナ(single.php) */
.internship__container {
  max-width: 900px;
  width: 100%;
  margin: 40px 10px;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: "Helvetica Neue", sans-serif;

  @media (max-width: 768px) {
    max-width: 900px;
    width: 100%;
    margin: 40px 10px;
    padding: 15px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: "Helvetica Neue", sans-serif;

  }
}




.internship-basic__company img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 50%;
}



/* 区切り線 */
hr {
  margin: 25px 0;
  border: none;
  border-top: 1px solid #ccc;
}

/* 見出し */
.internship__details h3 {
  font-size: 18px;
  border-left: 5px solid #0073aa;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #0073aa;
}

/* ラベルと値の組み合わせ */
.internship__details p {
  margin: 5px 0;
  line-height: 1.6;
}

.internship__details .label {
  display: inline-block;
  min-width: 100px;
  font-weight: bold;
  color: #333;
}

/* 応募条件（横並び） */
.internship__details>div {
  display: flex;
  align-items: flex-start;
  margin: 10px 0;
}

.internship__details>div strong {
  min-width: 150px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .internship__details>div strong {
    min-width: 90px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
  }

  .internship__details {
    min-width: 90px;
    color: #333;
    font-size: 14px;
  }

}

strong {
  /* min-width: 150px !important; */
  margin-right: 10px;
  font-weight: bold;
  color: #333;
}

/* デフォルト: 大きい画面用 */
.strong-large {
  display: inline;
}

.strong-small {
  display: none;
}



@media (max-width: 768px) {
  #job-description {
    flex-direction: column;

  }

  #job-description strong {
    margin-bottom: 3px;
  }

  .strong-large {
    display: none;
  }

  .strong-small {
    display: inline !important;
  }

}

.internship__details>div p {
  margin: 0;
  line-height: 1.8;
  min-width: 90px;
  color: #333;

}

/* ボタン */
.contact-btn,
.btn-edit-post {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 25px;
  background-color: #0073aa;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover,
.btn-edit-post:hover {
  background-color: #0168b4;
}

/* 背景画像があればこのスタイルを適用 */
.profile-cover {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin: 20px 0;
}



/* page-create */
.create__intern,
.edit__intern {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.create__intern h1,
.edit__intern h1 {
  margin-top: 100px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {

  .create__intern h1,
  .edit__intern h1 {
    font-size: 25px;
    margin-top: 50px;
    margin-bottom: 30px;
  }

}

.acf-field.acf-field-group {

  background-color: white;
}

.acf-fields.-border {
  border: none !important;
  background: none;
}

.acf-field.acf-field-submit-button.acf-field-67dce71381812,
.acf-field.acf-field-submit-button.acf-field-67ee2eea58fc8,
.acf-field.acf-field-delete-post.acf-field-67f61b247b056 {
  background-color: white;
}

.acf-field.acf-field-submit-button.acf-field-67dce71381812 .acf-input {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature_tag {
  text-decoration: none;
  color: black;
}



.fea-submit-button.button.button-primary {
  background-color: #009688;
  color: white;
  padding: 10px 70px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;

  @media (max-width: 768px) {
    background-color: #009688;
    color: white;
    padding: 10px 30px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;

  }
}



/*募集要項編集ページ*/
.fea-delete-button.button.button-primary {
  background-color: #E53927;
  color: white;
  padding: 10px 70px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;

  @media (max-width: 768px) {
    background-color: #E53927;
    color: white;
    padding: 10px 30px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;

  }
}

.acf-field.acf-field-submit-button.acf-field-67ee2eea58fc8,
.acf-field.acf-field-delete-post.acf-field-67f61b247b056 {
  width: 50%;
}

.acf-field.acf-field-submit-button.acf-field-67ee2eea58fc8 .acf-input,
.acf-field.acf-field-delete-post.acf-field-67f61b247b056 .acf-input {
  display: flex;
  justify-content: center;
}




/* ログイン */
.um-form {
  /* margin-top: 100px; */
  padding: 10px;
  margin-bottom: 100px !important;
}

.um-profile-body.main.main-default {
  padding: 0 10px;
}

/* ページ全体をflexboxでレイアウト */
main {
  min-height: 100vh;
  /* ビューポート全体の高さを確保 */
}




/* フォーム */
/* ------ 全体レイアウト ------ */
.form-section {
  margin-bottom: 32px;
}

.form-title {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.required {
  font-size: .75rem;
  padding: 2px 6px;
  border-radius: 4px;
  color: white;
  background-color: #e91e62;
  margin-left: 6px;
}

/* ------ ラジオを“トグルボタン”化 ------ */
.btn-group .wpcf7-list-item {
  margin: 0 1em 0 0 !important;
}

.btn-group input[type="radio"] {
  display: none;
}

/* 非表示 */
.btn-group label {
  display: inline-block;
  width: calc(20% - 6px);
  /* 5 個横並びで隙間  */
  min-width: 70px;
  padding: 10px 0;
  margin: 0 3px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: .2s;
}

/* 5 個未満のグループ (5日以上など) も自動幅計算 */
[data-field="work_days"] label:nth-child(5) {
  width: calc(20% - 6px);
}

/* ------ 数値入力＋単位 ------ */
.input-inline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-hours {
  width: 100px;
  text-align: center;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.unit-label {
  font-weight: 600;
}

/* ------ セレクトボックス ------ */
.select-duration {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

/* ------ チェックボックス ------ */
.agree-check {
  margin-right: 8px;
  transform: scale(1.2);
}

.checkbox-wrap {
  font-size: .9rem;
  line-height: 1.6;
}

/* ------ 送信ボタン ------ */
.submit-btn {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 40px auto 0;
  background: #27b46d;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px 0;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  transition: .2s;
}

.submit-btn:hover {
  opacity: .8;
}

/* ------ レスポンシブ (幅 < 600px) ------ */
@media(max-width:600px) {
  .btn-group label {
    width: 48%;
    margin: 4px 1%;
  }

  /* 2列並び */
}


.wpcf7-form.init {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border: 1px solid #ccc;
  padding: 40px 20px;
  margin: 100px 10px;

  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
    border: 1px solid #ccc;
    padding: 40px 10px;
    margin: 100px 10px;
  }
}

#wpcf7-f216-p217-o1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-section {
  margin-bottom: 24px;
}

.form-title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}


.wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 1rem 0em;
}


.button-group .wpcf7-list-item label {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.2s;
}

.input-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.um:not(.um-admin):not(.um-directory) input,
.um:not(.um-admin):not(.um-directory) select,
.um:not(.um-admin):not(.um-directory) textarea {
  font-size: 13px !important;
}

.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
  color: #666;
  font-size: 13px !important;
}


.unit-label {
  font-weight: 500;
  margin-left: 10px;
}

.select-duration {
  padding: 10px;
  width: 200px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.submit-btn {
  background-color: #00a38c;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #007b64;
}

.wpcf7-form.sent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  border: 1px solid #ccc;
  padding: 40px 20px;
  margin: 100px 50px;
}

.um-col-1 {
  font-size: 17px;
}

.um.um-profile.um-viewing.um-33.um-role-um_custom_role_2.uimob500 {
  padding: 15px;
}


@media (max-width:768px) {
  .um-field-area {
    position: relative;
    word-wrap: break-word;
    font-size: 14px;
  }


}




/* 親グループ（profile_group）のボックスだけ */
/* .acff-post-field_67ee2eea5720f{
  font-size: 18px;
    border-left: 5px solid #0073aa;
    padding-left: 10px;
    margin-bottom: 15px;
    color: #0073aa;
} */
/* 特定のfor属性を持つlabelにスタイルを適用 */
label[for="acff-post-field_67ee2eea5720f"],
label[for="acff-post-field_67dcf64b05aeb"],
label[for="acff-post-field_67dcf75ecafcc"],
label[for="acff-post-field_67ee39ed7e27a"] {
  font-size: 18px !important;
  /* フォントサイズを18pxに設定 */
  font-weight: bold !important;
  color: #0073aa;
  /* テキストの色を青に設定 */
  border-left: 5px solid #0073aa;
  /* 左側に青いボーダーを追加 */
  padding-left: 10px !important;
  /* 左側の余白を追加 */
  margin-bottom: 15px !important;
  /* 下部の余白を追加 */
  display: block !important;
  /* ブロック要素として表示 */
}


.real_url,
.um-dropdown-hide {
  color: black !important;
}

.um-profile.um .um-name a {
  color: black !important;
}



.um.um-profile.um-viewing.um-33.um-role-um_custom_role_2.uimob500 {
  padding: 0px;
}



/* ──────────────
   ACF Frontend フォーム共通スタイル調整
   ────────────── */

.frontend-form.-submit .acf-field .acf-label label {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  /* 必要なら色も指定 */
  line-height: 1.4;
  /* 行間を少し詰める */
}

/* 入力欄（テキスト・テキストエリア・セレクト）の枠線を角丸に */
.frontend-form.-submit .acf-input-wrap input[type="text"],
.frontend-form.-submit .acf-input-wrap input[type="email"],
.frontend-form.-submit .acf-input-wrap input[type="url"],
.frontend-form.-submit .acf-input-wrap input[type="number"],
.frontend-form.-submit .acf-field-textarea textarea,
.frontend-form.-submit .acf-field-select select {
  border-radius: 6px;
  /* お好みで 4px～8px 程度に調整 */
  border: 1px solid #ccc;
  /* 枠線色も必要に応じて調整 */
  font-size: 15px;
  /* 入力中の文字サイズ */
  font-weight: 400;
  /* 普通の太さ */
}

/* プレースホルダー文字を少し薄めに */
.frontend-form.-submit ::-webkit-input-placeholder {
  color: #999;
}

.frontend-form.-submit ::-moz-placeholder {
  color: #999;
}

.frontend-form.-submit :-ms-input-placeholder {
  color: #999;
}

/* テキストエリア内テキストの行間調整 */
.frontend-form.-submit .acf-field-textarea textarea {
  line-height: 1.6;
}



.acf-field.acf-field-group.acf-field-67dcf64b05aeb,
.acf-field.acf-field-group.acf-field-67ee2eea5720f {
  border-radius: 20px 20px 0 0;
}

.acf-field.acf-field-submit-button.acf-field-67dce71381812,
.acf-field.acf-field-submit-button.acf-field-67ee2eea58fc8 {
  border-radius: 0 0 20px 20px;
}


.acf-field.acf-field-submit-button.acf-field-67ee2eea58fc8 {
  border-radius: 0 0 0 20px;
}

.acf-field.acf-field-delete-post.acf-field-67f61b247b056 {
  border-radius: 0 0 20px 0;
}


.acf-field .acf-label {
  vertical-align: top;
  margin: 10px 0 10px !important;
}




.internship_thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/*利用規約・プライバシーポリシー*/
/* ❶ 全体の箱レイアウト -------------- */
.policy-content {
  margin: 30px 1rem 50px 1rem;
}

.policy-wrap {
  max-width: 800px;
  /* 行が長すぎないよう中央に幅制限 */
  margin: 0 auto;
  padding: 2rem 2.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, "Noto Sans JP", sans-serif;
  line-height: 1.75;
  color: #333;
}

/* ❷ 見出しデザイン ------------------- */
.policy-wrap h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
  border-bottom: 3px solid #efefef;
  padding-bottom: .4rem;
}

.policy-wrap h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  position: relative;
  padding-left: .9rem;
}

.policy-wrap h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: .25rem;
  width: 4px;
  height: 1.3rem;
  background: #3f51b5;
  /* ■ 見出しのアクセント色 */
  border-radius: 2px;
}

/* ❸ 番号付きリストをカスタム ----------- */
.policy-wrap ol {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding-left: 1.6rem;
}

.policy-wrap ol>li {
  counter-increment: item;
  margin: .5rem 0;
  position: relative;
  padding-left: 2.2rem;
}

.policy-wrap ol>li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: 600;
  color: #3f51b5;
}

/* ❹ 箇条書き（ul）の調整 -------------- */
.policy-wrap ul {
  margin: 0;
  padding-left: 1.6rem;
}

.policy-wrap ul>li {
  margin: .4rem 0;
  list-style: disc;
}

/* ❺ リンクとレスポンシブ -------------- */
.policy-wrap a {
  color: #3f51b5;
  text-decoration: underline;
}

@media(max-width:480px) {
  .policy-wrap {
    padding: 1.25rem;
  }

  .policy-wrap h2 {
    font-size: 1.5rem;
  }

  .policy-wrap h3 {
    font-size: 1.1rem;
  }
}