@charset "UTF-8";
/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box; /* box-sizingを追加すると便利です */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------------- */
/* --- フォーム要素のリセットCSS --- */
/* ----------------------------------- */
input,
button,
textarea,
select {
  -webkit-appearance: none; /* Safari, Chromeなどのベンダープレフィックス */
  -moz-appearance: none; /* Firefox */
  appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  padding: 0;
  margin: 0;
}

/* buttonとinput[type="button"]などにカーソルをポインターに */
button,
input[type=button],
input[type=submit],
input[type=reset] {
  cursor: pointer;
}

/* iOSでの内側の影を削除 */
input[type=text],
input[type=email],
input[type=search],
input[type=password],
textarea {
  -webkit-appearance: none;
}

/* selectの矢印を非表示にする（基本的なリセット） */
select::-ms-expand {
  /* IE */
  display: none;
}

/* textareaのリサイズを無効化（必要に応じて縦(vertical)や横(horizontal)に設定） */
textarea {
  resize: none;
}

.text-example {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .text-example {
    font-size: 1.2rem;
  }
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333333;
  background-color: #fff;
}

a {
  cursor: pointer;
}

main {
  position: relative;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 577px) {
  .sp-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .under-tablet-only {
    display: none !important;
  }
}

@media screen and (max-width: 576px) {
  .over-tablet-only {
    display: none !important;
  }
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.inner {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 20px;
}

.inner--large {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.inner--small {
  width: 100%;
  max-width: 728px;
  margin-inline: auto;
  padding-inline: 20px;
}

.inner--full {
  max-width: 100%;
  padding-inline: 0;
}

section {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  section {
    padding-block: 40px;
  }
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.header {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 12px;
  background: #0e0e0e;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header__inner {
  width: 100%;
  padding-inline: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-and-categories {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__logo-and-categories__logo {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-and-categories__logo img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__logo-and-categories__categories {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 4px 4px;
  border-radius: 50vh;
  border: 1px solid #036eb8;
}
.header__logo-and-categories__categories__item {
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
  font-size: 14px;
  line-height: 1;
  transition: all 0.3s ease;
}
.header__logo-and-categories__categories__item:hover {
  color: #036eb8;
}
.header__logo-and-categories__categories__item.is-active {
  background: #036eb8;
  color: #fff;
}
.header__nav-and-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-and-buttons__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__nav-and-buttons__nav__item {
  font-size: 12px;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}
.header__nav-and-buttons__nav__item:hover {
  color: #036eb8;
}
.header__nav-and-buttons__nav__item.material-symbols-rounded {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  transition: all 0.3s ease;
}
.header__nav-and-buttons__nav__item.material-symbols-rounded:hover {
  color: #036eb8;
}
.header__nav-and-buttons__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__nav-and-buttons__buttons .button {
  padding-block: 8px;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.footer {
  color: #fff;
  background: #0e0e0e;
}
.footer__top {
  position: relative;
  z-index: 1;
  padding-block: 80px;
}
.footer__top__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.2);
  overflow: hidden;
}
.footer__top__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__top .inner--large {
  position: relative;
}
.footer__top__cta-area {
  text-align: center;
}
.footer__top__cta-area__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__top__cta-area__title {
    line-height: 1.5;
  }
}
.footer__top__cta-area__copy {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
}
.footer__top__cta-area__button-area {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer__top__cta-area__button-area {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
  .footer__top__cta-area__button-area .button {
    width: 200px;
  }
}
.footer__bottom {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding-block: 40px 0px;
  }
}
.footer__bottom .inner--large {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__bottom .inner--large {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.footer__bottom__corporate-area__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__bottom__corporate-area__logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__bottom__corporate-area__copy {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
}
.footer__bottom__corporate-area__sns-list {
  display: flex;
  margin-top: 20px;
  align-items: center;
  gap: 20px;
}
.footer__bottom__corporate-area__sns-list__item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #036eb8;
  transition: all 0.3s ease;
}
.footer__bottom__corporate-area__sns-list__item:hover {
  opacity: 0.8;
  scale: 1.05;
}
.footer__bottom__corporate-area__sns-list__item img {
  height: 16px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__bottom__contents-area {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .footer__bottom__contents-area {
    justify-content: start;
    gap: 40px;
  }
}
.footer__bottom__contents-area__links__row__title {
  font-size: 18px;
  font-weight: 700;
}
.footer__bottom__contents-area__links__row__list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__bottom__contents-area__links__row__list__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__bottom__contents-area__links__row__list__item:before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #036eb8;
}
.footer__bottom__contents-area__links__row__list__item__link {
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.footer__bottom__contents-area__links__row__list__item__link:hover {
  color: #036eb8;
}
.footer__bottom__copyright {
  padding-top: 40px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #d0d0d0;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.button {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #333333;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.button .button-icon {
  font-size: 18px;
  font-weight: 600;
}
.button:hover {
  background-color: #036eb8;
  color: #fff;
  border: 1px solid #fff;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.button--full {
  width: 100%;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.button--blue {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #036eb8;
  color: #fff;
  border: 1px solid #036eb8;
}
.button--blue:hover {
  background-color: #fff;
  color: #036eb8;
  border: 1px solid #036eb8;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.button--white {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  color: #036eb8;
  border: 1px solid #036eb8;
}
.button--white:hover {
  background-color: #036eb8;
  color: #fff;
  border: 1px solid #036eb8;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.section-title {
  text-align: center;
}
.section-title__title-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  line-height: 1;
  color: #036eb8;
}
@media screen and (max-width: 768px) {
  .section-title__title-area {
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
  }
}
.section-title__title-area__icon {
  font-size: 28px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-title__title-area__icon {
    transform: translateY(3px);
    font-size: 24px;
  }
}
.section-title__title-area__title {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .section-title__title-area__title {
    font-size: 20px;
    text-align: left;
  }
}
.section-title__subtitle {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section-title__sp-break {
    display: block;
  }
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.report-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .report-list {
    margin-top: 24px;
    gap: 20px;
  }
}
.report-list__item {
  width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .report-list__item {
    width: 100%;
  }
}
.report-list__item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: scale(1.008);
}
.report-list__item:hover .report-list__item__bottom__read-more {
  transform: translateX(0);
}
.report-list__item:hover .report-list__item__thumbnail img {
  transform: scale(1.1);
}
.report-list__item__thumbnail {
  width: 100%;
  aspect-ratio: 3/1;
  overflow: hidden;
}
.report-list__item__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.8s ease;
}
.report-list__item__text-area {
  flex-grow: 1;
  padding-inline: 24px;
  padding-block: 20px;
}
.report-list__item__information {
  display: flex;
  align-items: center;
  gap: 24px;
}
.report-list__item__information__category {
  padding: 8px 8px;
  border-radius: 4px;
  line-height: 1;
  font-size: 13px;
  font-weight: 400;
  background: #036eb8;
  color: #fff;
}
.report-list__item__information__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.report-list__item__information__tags__item {
  padding: 8px 8px;
  border-radius: 4px;
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  border: 1px solid #333333;
}
.report-list__item__date {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: #696969;
}
.report-list__item__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.report-list__item__excerpt {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
.report-list__item__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-list__item__bottom__researcher {
  display: flex;
  align-items: center;
  gap: 12px;
}
.report-list__item__bottom__researcher__thumbnail {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #696969;
}
.report-list__item__bottom__researcher__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.report-list__item__bottom__researcher__name {
  font-size: 16px;
  font-weight: 500;
}
.report-list__item__bottom__read-more {
  font-size: 12px;
  font-weight: 400;
  color: #036eb8;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}
.report-list .alternative-category-link {
  color: #036eb8;
  transition: all 0.3s ease;
}
.report-list .alternative-category-link:hover {
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
  text-underline-offset: 6px;
}

.pagination {
  margin-top: 40px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.pagination .page-numbers {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #036eb8;
  font-size: 14px;
  font-weight: 600;
  color: #036eb8;
  transition: all 0.3s ease;
}
.pagination .page-numbers:hover {
  background-color: #036eb8;
  color: #fff;
}
.pagination .page-numbers.current {
  background-color: #036eb8;
  color: #fff;
}
.pagination .prev,
.pagination .next {
  display: none;
  padding-inline: 4px;
  width: auto;
  height: auto;
  border: none;
  font-size: 18px;
  color: #696969;
  transition: all 0.3s ease;
}
.pagination .prev:hover,
.pagination .next:hover {
  background: transparent;
  color: #036eb8;
}
.pagination .dots {
  pointer-events: none;
  width: auto;
  height: auto;
  border: none;
  font-size: 18px;
  color: #696969;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.tag-list {
  margin-top: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .tag-list {
    margin-top: 24px;
    gap: 12px;
  }
}
.tag-list__item__link {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid #696969;
  background: #fff;
  color: #333333;
  font-size: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tag-list__item__link {
    padding: 6px 8px;
    font-size: 10px;
  }
}
.tag-list__item__link.is-active {
  background-color: #333333;
  color: #fff;
  border-color: #333333;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
/* ===============================================
 *  フォーム
 =============================================== */
.wpcf7 {
  width: 100%;
  margin-inline: auto;
  /* インナーコンテナ */
  /* 各行のラッパー */
  /* 見出し（ラベル）エリア */
  /* 必須・任意バッジ */
  /* 入力エリアのラッパー */
  /* ==========================================================================
        Input Elements Styling (タグ別の基本スタイル)
  ========================================================================== */
  /* テキスト入力系 (text, email, url, tel, password) */
  /* テキストエリア固有 */
  /* セレクトボックス - デフォルトスタイルへ戻す */
  /* チェックボックスのラッパー (CF7が出力するspan) */
  /* ラジオボタンのラッパー (CF7が出力するspan) */
  /* チェックボックス・ラジオボタンのアイテムのラッパー (CF7が出力するspan) */
  /* チェックボックス & ラジオボタン本体 */
  /* 送信ボタン */
}
.wpcf7 * {
  box-sizing: border-box;
}
.wpcf7 .wpcf7-form {
  width: 100%;
  margin-inline: auto;
  padding: 20px;
  background: #036eb8;
  border-radius: 8px;
  border: 1px solid #036eb8;
}
.wpcf7 .contactFormInner {
  display: flex;
  flex-direction: column;
  gap: 32px; /* 行間の余白 */
}
.wpcf7 .contactFormItem {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* 送信ボタンエリア用の修飾クラス */
}
@media (max-width: 768px) {
  .wpcf7 .contactFormItem {
    gap: 8px;
    flex-direction: column;
  }
}
.wpcf7 .contactFormItem .submitWrapper {
  margin-top: 24px;
  border-bottom: none;
  align-items: center;
  justify-content: center;
}
.wpcf7 .contactFormItem .submitWrapper .contactFormItemContent {
  width: auto; /* ボタンの幅に合わせる */
  flex: 0 0 auto;
}
.wpcf7 .contactFormItemTitle {
  width: 200px;
  flex-shrink: 0;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.wpcf7 .contactFormItemRequired,
.wpcf7 .contactFormItemOptional {
  font-size: 12px;
  padding: 6px 8px 6px 8px;
  border-radius: 4px;
  line-height: 1;
  white-space: nowrap;
}
.wpcf7 .contactFormItemRequired {
  border: 1px solid #faff63;
  color: #faff63;
}
.wpcf7 .contactFormItemOptional {
  background-color: #fff;
  color: #036eb8;
  border: 1px solid #fff;
}
.wpcf7 .contactFormItemContent {
  flex-grow: 1;
  width: 100%;
  position: relative;
}
.wpcf7 .contactFormItemContent .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #faff63;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  height: 100%;
}
.wpcf7 input {
  width: 100%;
  box-sizing: border-box;
  /* ラジオボタン・チェックボックス以外にappearance: noneを適用 */
}
.wpcf7 input:not([type=radio]):not([type=checkbox]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 input[type=password],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* ブラウザ標準スタイルをリセット */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=password]::-moz-placeholder, .wpcf7 textarea::-moz-placeholder, .wpcf7 select::-moz-placeholder {
  color: #adb5bd;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=password]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #adb5bd;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=password]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-color: #339af0;
  box-shadow: 0 0 0 3px rgba(51, 154, 240, 0.1);
}
.wpcf7 textarea {
  min-height: 160px;
  letter-spacing: 0.05em;
  resize: vertical; /* 縦方向のみリサイズ許可 */
}
.wpcf7 select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto; /* OS標準の矢印を表示 */
  cursor: pointer;
}
.wpcf7 .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.wpcf7 .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
  accent-color: #036eb8;
  /* 標準の外観を保持（重要！） */
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  /* カスタムスタイルは最小限に */
  flex-shrink: 0; /* サイズ固定 */
}
.wpcf7 .submitWrapper {
  margin-top: 24px;
  margin-inline: auto;
  position: relative;
  cursor: pointer;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  padding: 0 20px;
  height: 44px;
  border-radius: 4px;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: #fff;
  color: #036eb8;
  transition: all 0.3s;
}
.wpcf7 .submitWrapper:focus-within {
  border-radius: 24px;
  background: #faff63 !important;
  color: #036eb8 !important;
}
@media (hover: none) {
  .wpcf7 .submitWrapper {
    border-radius: 24px;
    background: #036eb8 !important;
    color: #036eb8 !important;
  }
  .wpcf7 .submitWrapper:active {
    opacity: 0.7;
    scale: 0.98;
  }
}
@media (max-width: 768px) {
  .wpcf7 .submitWrapper {
    margin-inline: auto;
  }
}
@media (hover: hover) {
  .wpcf7 .submitWrapper:hover {
    border-radius: 24px;
    background: #faff63;
    color: #036eb8;
  }
  .wpcf7 .submitWrapper:hover .material-symbols-rounded {
    transform: translateX(4px);
  }
}
.wpcf7 .submitWrapper input[type=submit],
.wpcf7 .submitWrapper button[type=submit] {
  letter-spacing: 0.1em;
}
.wpcf7 .submitWrapper .contactFormItemButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  opacity: 0;
}
.wpcf7 .submitWrapper .contactFormItemButton input {
  height: 100%;
  width: 100%;
}
.wpcf7 .submitWrapper .material-symbols-rounded {
  pointer-events: none;
  font-size: 24px;
  font-weight: 300;
  transition: all 0.3s ease-out;
  transform: translateX(-4px);
}
.wpcf7 .submitWrapper:active {
  transform: translateY(1px);
}
.wpcf7 .submitWrapper.submitting {
  opacity: 0.7;
  cursor: wait;
}

/* ===============================================
   *  メッセージ
   =============================================== */
.wpcf7-response-output {
  display: block;
  font-size: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-top: 16px !important;
  color: #333;
  border: none !important;
  padding: 0;
}

.invalid .wpcf7-response-output {
  text-align: center;
  color: #faff63;
}

.wpcf7-spinner {
  display: none !important;
}

/* ===============================================
   *  Turnstileの認証
   =============================================== */
.wpcf7-turnstile {
  margin-bottom: 24px;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
/* ===============================================
 *  https://tcd-theme.com/2026/02/wp-members.html から拝借
 =============================================== */
/* 1. フォーム全体のコンテナ調整 */
#wpmem_reg {
  max-width: 600px !important; /* フォームの最大横幅 */
  margin: 10px auto !important; /* 上下の余白と中央寄せ */
  padding: 50px !important; /* 内側の余白 */
  background-color: #ffffff !important; /* 背景色 */
  border-radius: 10px !important; /* 角の丸み */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important; /* 外側の影 */
}

/* 2. フォームのタイトル（legendタグ） */
#wpmem_reg legend {
  display: block !important; /* ブロック化 */
  width: 100% !important; /* 横幅 */
  font-size: 1.4rem !important; /* 文字サイズ */
  font-weight: bold !important; /* 太字 */
  padding-bottom: 10px !important; /* 下側の内側余白 */
  margin-bottom: 35px !important; /* 次の項目との余白 */
  border-bottom: 2px solid #eee !important; /* 下線の種類と色 */
  color: #333 !important; /* 文字色 */
}

/* 3. 項目名（ラベル）のスタイル */
#wpmem_reg label.text,
#wpmem_reg label.textarea {
  display: block !important; /* 縦並びにするためにブロック化 */
  font-weight: bold !important; /* 太字 */
  margin-bottom: 8px !important; /* 入力欄との余白 */
  color: #444 !important; /* 文字色 */
}

/* 4. 入力項目（div）ごとの間隔 */
#wpmem_reg .div_text,
#wpmem_reg .div_textarea {
  margin-bottom: 25px !important; /* 項目と項目の間の余白 */
}

/* 5. 入力フィールド（テキストボックス・テキストエリア） */
#wpmem_reg input.textbox,
#wpmem_reg textarea.textarea {
  width: 100% !important; /* 横幅 */
  padding: 12px !important; /* 入力欄内の余白 */
  border: 1px solid #ccc !important; /* 枠線の太さと色 */
  border-radius: 6px !important; /* 入力欄の角の丸み */
  box-sizing: border-box !important; /* パディングを横幅に含める */
  font-size: 16px !important; /* 文字サイズ */
  background-color: #fafafa !important; /* 入力欄の背景色 */
}

/* 6. 送信ボタンを包むコンテナ（中央寄せ用） */
#wpmem_reg .button_div {
  text-align: center !important; /* 中のボタンを中央に寄せる */
  margin-top: 30px !important; /* 上の項目との余白 */
  padding: 0 !important;
  clear: both !important; /* 回り込み解除 */
}

/* 7. 送信ボタン本体のデザイン */
#wpmem_reg input.buttons[type=submit] {
  display: inline-block !important; /* 中央寄せ */
  width: auto !important; /* 横幅を中身に合わせる */
  min-width: 250px !important; /* ボタンの最低横幅 */
  padding: 15px 30px !important; /* ボタン内の余白（上下 左右） */
  background-color: #0073aa !important; /* ボタンの色 */
  color: #ffffff !important; /* ボタンの文字色 */
  border: none !important; /* 枠線を消す */
  border-radius: 50px !important; /* 角を丸める */
  font-size: 18px !important; /* 文字サイズ */
  font-weight: bold !important; /* 文字の太さ */
  cursor: pointer !important; /* マウスホバー時に指マークにする */
  transition: all 0.3s ease !important; /* 変化を滑らかにする */
  -webkit-appearance: none !important; /* スマホ特有のスタイルをリセット */
}

/* 8. ボタンにマウスを乗せた時（ホバー） */
#wpmem_reg input.buttons[type=submit]:hover {
  background-color: #005177 !important; /* ホバー時の背景色 */
  transform: translateY(-2px) !important; /* 少し上に浮き上がらせる */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important; /* ホバー時の影を強調 */
}

/* 9. 必須項目マーク（*） */
#wpmem_reg .req {
  color: #ff4444 !important; /* アスタリスクの色 */
  margin-left: 5px !important; /* 左側の余白 */
}

/* 10. 下部の「必須項目」注釈テキスト */
#wpmem_reg .req-text {
  text-align: right !important; /* 右寄せ */
  font-size: 0.9rem !important; /* 文字サイズ */
  color: #888 !important; /* 色 */
  margin-top: 10px !important; /* 上部の余白 */
}

/* ===============================================
 *  以下ログインフォームのスタイリング
 =============================================== */
/* 1. フォーム全体の外枠 */
#wpmem_login {
  max-width: 500px !important; /* 横幅の最大値 */
  margin: 40px auto !important; /* 上下の余白、左右は中央寄せ */
  padding: 50px !important; /* 枠の内側の余白 */
  background-color: #ffffff !important; /* 背景色 */
  border-radius: 12px !important; /* 角を丸める */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important; /* 影を周囲に配置 */
}

/* 2. タイトル部分（既存ユーザのログイン） */
#wpmem_login legend {
  display: block !important; /* ブロック化 */
  width: 100% !important; /* 横幅 */
  font-size: 1.5rem !important; /* 文字の大きさ */
  font-weight: bold !important; /* 太字 */
  padding-bottom: 12px !important; /* 下側の内側余白 */
  margin-bottom: 30px !important; /* タイトルの下に余白 */
  border-bottom: 2px solid #f0f0f0 !important; /* タイトル下に線を引く */
  color: #333 !important; /* 文字色 */
  text-align: center !important; /* 中央寄せ */
}

/* 3. 各項目のラベル文字（ユーザー名やパスワードなど） */
#wpmem_login label {
  display: block !important; /* ブロック化 */
  font-weight: bold !important; /* 太字 */
  margin-bottom: 8px !important; /* ラベルと入力欄の間に余白 */
  color: #555 !important; /* 文字色 */
}

/* 4. 入力エリアを包む各ブロック */
#wpmem_login .div_text {
  margin-bottom: 20px !important; /* 各入力項目の間に余白 */
}

/* 5. 入力フィールド本体（ユーザー名・パスワード・キャプチャ） */
#wpmem_login input.username,
#wpmem_login input.password,
#wpmem_login input#cloudsecurewp_captcha {
  width: 100% !important; /* 入力欄の横幅 */
  padding: 14px !important; /* 入力欄の中の余白 */
  border: 1px solid #ddd !important; /* 枠線 */
  border-radius: 6px !important; /* 入力欄の角を丸める */
  box-sizing: border-box !important; /* パディングを含めて横幅を計算する */
  font-size: 16px !important; /* 文字サイズ */
  background-color: #f9f9f9 !important; /* 入力欄の背景色 */
}

/* 6. キャプチャ画像表示エリア */
.cloudsecure-wp-captcha-block {
  margin: 20px 0 !important; /* 上下の余白 */
  padding: 15px !important; /* 内部の余白 */
  background: #fdfdfd !important; /* 背景色 */
  border: 1px dashed #ccc !important; /* 点線の枠 */
  border-radius: 6px !important; /* 角を丸める */
}

/* 7. ボタンとチェックボックスを包むエリア */
#wpmem_login .button_div {
  text-align: center !important; /* 中央寄せ */
  margin-top: 25px !important; /* 上の項目との余白 */
  margin-bottom: 20px !important; /* 下のリンクとの余白 */
  clear: both !important; /* 回り込み設定を解除 */
}

#wpmem_login .button_div #rememberme,
#wpmem_login .button_div label[for=rememberme] {
  display: none !important;
}

/* 8. 「ログイン状態を保存する」のチェックボックス本体 */
#wpmem_login input#rememberme {
  width: 18px !important; /* チェックボックスの横幅 */
  height: 18px !important; /* チェックボックスの縦幅 */
  vertical-align: middle !important; /* 隣の文字と高さを合わせる（中央配置） */
  margin-right: 5px !important; /* チェックボックスと文字の間の余白 */
}

/* 9. チェックボックスの横の文字ラベル */
#wpmem_login label[for=rememberme] {
  display: inline-block !important; /* 文字の横並び */
  font-weight: normal !important; /* 太字にしない */
  font-size: 14px !important; /* 文字サイズ */
  cursor: pointer !important; /* マウスを乗せた時にクリックできるマーク */
  margin-bottom: 0 !important; /* 下側の余白 */
}

/* 10. ログインボタンのデザイン */
#wpmem_login input.buttons[type=submit] {
  display: block !important; /* ブロック化 */
  width: 100% !important; /* ボタンの横幅 */
  padding: 15px !important; /* ボタンの内側の余白 */
  background-color: #0073aa !important; /* ボタンの背景色 */
  color: #ffffff !important; /* ボタンの文字色を白 */
  border: none !important; /* ボタンの枠線を消す */
  border-radius: 50px !important; /* ボタンを丸める */
  font-size: 18px !important; /* 文字サイズ */
  font-weight: bold !important; /* 太字 */
  cursor: pointer !important; /* マウスを乗せた時に指マーク */
  margin-top: 15px !important; /* チェックボックス上部の余白 */
  transition: all 0.3s ease !important; /* 変化（色や影）を0.3秒かけて滑らかに */
  -webkit-appearance: none !important; /* スマホブラウザ独自の装飾を無効化 */
}

/* 11. ボタンにマウスを乗せた時（ホバー） */
#wpmem_login input.buttons[type=submit]:hover {
  background-color: #005177 !important; /* 背景色 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important; /* 影を付けて浮き上がらせる */
}

/* 12. パスワード忘れ・新規登録リンクのテキスト全体 */
#wpmem_login .link-text {
  text-align: center !important; /* リンクを中央に寄せ */
  margin-top: 15px !important; /* リンク間の余白 */
  font-size: 14px !important; /* 文字サイズ */
}

/* 13. リンク内の「Aタグ（クリックできる部分）」 */
#wpmem_login .link-text a {
  color: #0073aa !important; /* リンクの色 */
  text-decoration: none !important; /* 下線を削除 */
  font-weight: bold !important; /* リンクを太字 */
}

/* 14. リンクにマウスを乗せた時 */
#wpmem_login .link-text a:hover {
  text-decoration: underline !important; /* マウスを乗せると下線を表示 */
}

/* ===============================================
 *  以下は追加のカスタム
 =============================================== */
.wpmem_msg {
  margin-inline: auto !important;
  margin-block: 40px !important;
  text-align: center !important;
}

#wpmem_restricted_msg a {
  color: #036eb8 !important;
  text-decoration: underline !important;
  transition: all 0.3s ease !important;
}
#wpmem_restricted_msg a:hover {
  text-decoration: none !important;
}

.member-profile .inner {
  width: -moz-fit-content;
  width: fit-content;
  max-width: auto;
}
.member-profile .section-title {
  width: -moz-fit-content;
  width: fit-content;
}
.member-profile__content {
  margin-block: 40px !important;
}
.member-profile__content__item:not(:first-child) {
  margin-top: 24px;
}
.member-profile__content__item__title {
  font-size: 18px;
  font-weight: 700;
  color: #036eb8;
}
.member-profile__content__item__value {
  font-size: 16px;
}
.member-profile__content__item a {
  color: #036eb8 !important;
  text-decoration: underline !important;
  transition: all 0.3s ease !important;
}
.member-profile__content__item a:hover {
  text-decoration: none !important;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.first-view {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 24px 48px;
  background-repeat: repeat;
  background-position: center center;
}
.first-view .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 80px;
}
@media screen and (max-width: 768px) {
  .first-view .inner {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding-inline: 20px;
  }
}
.first-view__text-area {
  flex-shrink: 0;
}
.first-view__text-area__main-copy {
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .first-view__text-area__main-copy {
    font-size: 7vw;
    line-height: 1.4;
  }
}
.first-view__text-area__main-copy span {
  background: linear-gradient(to right, #036eb8, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.first-view__text-area__sub-copy {
  margin-top: 16px;
  font-size: 1.2vw;
}
@media screen and (max-width: 768px) {
  .first-view__text-area__sub-copy {
    font-size: 14px;
  }
}
.first-view__text-area .button {
  margin-top: 24px;
}
.first-view__image {
  width: 100%;
  max-width: 780px;
}
.first-view__image img {
  width: 100%;
  height: 100%;
}

.latest-report {
  background: #f1f7fb;
}
.latest-report__item {
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .latest-report__item {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
}
.latest-report__item__thumbnail {
  width: auto;
  align-self: stretch;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .latest-report__item__thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    align-self: center;
  }
}
.latest-report__item__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-report__item__text-area {
  flex-grow: 1;
  padding-inline: 24px;
  padding-block: 20px;
}
@media screen and (max-width: 768px) {
  .latest-report__item__text-area {
    padding-inline: 16px;
    padding-block: 16px;
  }
}
.latest-report__item__information {
  display: flex;
  align-items: center;
  gap: 24px;
}
.latest-report__item__information__category {
  padding: 8px 8px;
  border-radius: 4px;
  line-height: 1;
  font-size: 13px;
  font-weight: 400;
  background: #036eb8;
  color: #fff;
}
.latest-report__item__information__tags {
  display: flex;
  align-items: center;
  gap: 8px;
}
.latest-report__item__information__tags__item {
  padding: 8px 8px;
  border-radius: 4px;
  line-height: 1;
  font-size: 12px;
  font-weight: 400;
  color: #333333;
  border: 1px solid #333333;
}
.latest-report__item__date {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 400;
  color: #696969;
}
.latest-report__item__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
.latest-report__item__excerpt {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #696969;
}
.latest-report__item__bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .latest-report__item__bottom {
    margin-top: 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
  }
}
.latest-report__item__bottom__researcher {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 1200px) {
  .latest-report__item__bottom__researcher {
    gap: 8px;
  }
}
.latest-report__item__bottom__researcher__thumbnail {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #696969;
}
@media screen and (max-width: 1200px) {
  .latest-report__item__bottom__researcher__thumbnail {
    width: 28px;
    height: 28px;
  }
}
.latest-report__item__bottom__researcher__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.latest-report__item__bottom__researcher__name {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .latest-report__item__bottom__researcher__name {
    font-size: 14px;
  }
}

.membership {
  background: #f1f7fb;
}
.membership__plans {
  margin-top: 40px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .membership__plans {
    margin-top: 24px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.membership__plans__item {
  transform: scale(0.95);
  width: 100%;
  padding: 20px;
  border: 1px solid #d0d0d0;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .membership__plans__item {
    transform: scale(1);
  }
}
.membership__plans__item__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}
.membership__plans__item__copy {
  margin-top: 8px;
  font-size: 12px;
  color: #696969;
}
.membership__plans__item__price {
  margin-top: 11px;
  font-size: 24px;
  font-weight: 700;
  color: #036eb8;
}
.membership__plans__item__price span:first-child {
  font-size: 14px;
}
.membership__plans__item__price span:last-child {
  font-size: 12px;
  font-weight: 400;
  color: #696969;
}
.membership__plans__item__features {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.membership__plans__item__features__item {
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.membership__plans__item__features__item::before {
  font-family: "Material Symbols Rounded";
  content: "check";
  font-size: 18px;
  color: #036eb8;
  line-height: 1;
  transform: translateY(4px);
}
.membership__plans__item .button {
  margin-top: auto;
}
.membership__plans__item--pro {
  z-index: 1;
  padding-top: 24px;
  position: relative;
  transform: scale(1.05);
  background: #333333;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .membership__plans__item--pro {
    transform: scale(1);
  }
}
.membership__plans__item--pro .membership__plans__item__tag {
  position: absolute;
  top: 0px;
  right: -12px;
  rotate: 16deg;
  width: 120px;
  height: auto;
}
.membership__plans__item--pro .membership__plans__item__tag img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.membership__plans__item--pro .membership__plans__item__copy {
  color: #d0d0d0;
}
.membership__plans__item--pro .membership__plans__item__price {
  color: #fff;
}
.membership__plans__item--pro .membership__plans__item__price span:last-child {
  color: #d0d0d0;
}
.membership__plans__item--pro .membership__plans__item__features {
  color: #fff;
}

.report-area__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.report-area .button {
  margin-top: 40px;
  margin-inline: auto;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.report-archive {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 48px 24px;
  background-repeat: repeat;
  margin-top: 68px;
}
/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.researchers {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 24px 48px;
  background-repeat: repeat;
  background-position: center center;
}
.researchers__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .researchers__list {
    margin-top: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.researchers__list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d0d0d0;
}
.researchers__list__item__thumbnail {
  position: relative;
  width: 160px;
  height: 160px;
}
.researchers__list__item__thumbnail img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.researchers__list__item__thumbnail::before {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 40%;
  height: 40%;
  border-bottom: 1.5px solid #036eb8;
  border-right: 1.5px solid #036eb8;
}
.researchers__list__item__name-area {
  text-align: center;
}
.researchers__list__item__name-area__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.researchers__list__item__name-area__position {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #036eb8;
  text-decoration: underline;
  text-decoration-color: #036eb8;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.researchers__list__item__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.researchers__list__item__sns-list__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.researchers__list__item__sns-list__item:hover {
  opacity: 0.7;
  scale: 1.05;
}
.researchers__list__item__sns-list__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.researchers__list__item__sns-list__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.researchers__list__item__sns-list__item--medium a {
  width: auto;
  height: 10px;
}
.researchers__list__item__introduction {
  margin-top: 16px;
  font-size: 14px;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.page-contact {
  background: #f1f7fb;
}
.page-contact .contact-introduction {
  background: #fff;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 24px 48px;
  background-repeat: repeat;
  background-position: center center;
}
.page-contact .contact-introduction__button-area {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.page-contact .wpcf7 {
  margin-top: 24px;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.page-404 .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.page-404__title {
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(to right, #036eb8, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.page-404__copy {
  font-size: 24px;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.single-report {
  padding-top: 0;
}
.single-report__thumbnail {
  width: 100%;
  aspect-ratio: 3/1;
  overflow: hidden;
}
.single-report__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-report .single-report__content-area {
  margin-top: 40px;
}
.single-report__information {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-report__information__category {
  display: block;
  padding: 8px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 400;
  background: #036eb8;
  color: #fff;
  transition: all 0.3s ease;
}
.single-report__information__category:hover {
  background: #036eb8;
  color: #fff;
}
.single-report__information__time {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
  font-size: 12px;
  font-weight: 700;
  color: #036eb8;
}
.single-report__information__time span {
  font-size: 16px;
  line-height: 1;
  color: #036eb8;
}
.single-report__information__researcher {
  display: flex;
  align-items: center;
  gap: 12px;
}
.single-report__information__researcher__thumbnail {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #696969;
}
.single-report__information__researcher__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-report__information__researcher__name {
  font-size: 16px;
  font-weight: 500;
}
.single-report .tag-list__item__link {
  transition: all 0.3s ease;
}
.single-report .tag-list__item__link:hover {
  color: #fff !important;
  background: #036eb8 !important;
  border-color: #036eb8 !important;
}
.single-report .single-report__content {
  margin-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #333333;
}
.single-report .single-report__content h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  color: #036eb8;
  border-bottom: 1px solid #036eb8;
  padding-bottom: 8px;
}
.single-report .single-report__content h2 {
  margin-top: 40px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 700;
  background: #036eb8;
  color: #fff;
}
.single-report .single-report__content h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #036eb8;
}
.single-report .single-report__content h3::after {
  content: "";
  display: block;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, #036eb8, #fff);
  margin-top: 8px;
}
.single-report .single-report__content p {
  margin-top: 20px;
}
.single-report .single-report__content ul {
  margin-top: 20px;
}
.single-report .single-report__content ul li {
  list-style: disc;
  list-style-position: inside;
  margin-left: 16px;
}
.single-report .single-report__content ol {
  margin-top: 20px;
}
.single-report .single-report__content ol li {
  list-style: decimal;
  list-style-position: inside;
  margin-left: 16px;
}
.single-report .single-report__content figure {
  margin-top: 40px;
  width: 100%;
}
.single-report .single-report__content figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.single-report .single-report__content figure figcaption {
  margin: 0;
  margin-top: 8px;
  font-size: 14px;
  color: #696969;
}
.single-report .single-report__content figure figcaption a {
  color: #036eb8;
  text-decoration: underline;
}
.single-report .single-report__content figure figcaption a:hover {
  text-decoration: none;
}
.single-report .single-report__content code {
  margin-top: 20px;
  background-color: #0e0e0e;
  color: #fff;
  padding: 8px 8px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: auto;
}
.single-report .single-report__content blockquote {
  margin-top: 20px;
  padding: 20px;
  border-left: 4px solid #036eb8;
  background-color: #f1f7fb;
  border-radius: 4px;
}
.single-report .single-report__content blockquote p {
  margin: 0;
}
.single-report .single-report__content .button {
  margin-top: 64px;
  margin-inline: auto;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.searchform {
  margin-top: 40px;
  margin-inline: auto;
  width: 100%;
  max-width: 420px;
}
.searchform .search-form_wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 50vh;
  border: 1px solid #036eb8;
  background: #fff;
}
.searchform .search-form_wrapper .search-form_input {
  width: 100%;
  padding-left: 12px;
  padding-block: 12px;
  line-height: 1;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.searchform .search-form_wrapper .search-form_input:focus {
  outline: none;
  border-radius: 50vh;
}
.searchform .search-form_wrapper .search-form_button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
}
.searchform .search-form_wrapper .search-form_button .material-symbols-rounded {
  font-size: 24px;
  font-weight: 300;
  transition: all 0.3s ease;
  color: #036eb8;
}

/*!
Theme Name: Mind Palace Insight
Author: Mind Palace
Description: A custom WordPress theme for Mind Palace Insight
Version: 1.0.0
Text Domain: mind-palace-insight
*/
.policies h1 {
  font-size: 40px;
  font-weight: 700;
  color: #036eb8;
}
@media screen and (max-width: 768px) {
  .policies h1 {
    font-size: 28px;
  }
}
.policies h2 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
}
.policies p {
  margin-top: 12px;
}
.policies ul {
  margin-top: 12px;
}
.policies ul li {
  margin-left: 20px;
  display: flex;
  align-items: start;
  gap: 10px;
}
.policies ul li:not(:first-child) {
  margin-top: 10px;
}
.policies ul li::before {
  flex-shrink: 0;
  content: "";
  display: block;
  transform: translateY(13px);
  width: 6px;
  height: 2px;
  background: #036eb8;
}
.policies__button-area {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .policies__button-area {
    margin-top: 40px;
    flex-direction: column;
    gap: 16px;
  }
  .policies__button-area .button {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */