@charset "UTF-8";
/* themeColor
-----------------------------*/
/* fontFamily
-----------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #1b3c7e;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}

main {
  padding-top: 85px;
  overflow: hidden;
}
@media (max-width: 768px) {
  main {
    padding-top: 73px;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

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

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

span {
  display: inline-block;
}

button {
  border: unset;
  cursor: pointer;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ヘッダー */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1b3c7e;
  z-index: 99;
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #fff;
}
@media (max-width: 768px) {
  .l-header__inner {
    padding: 0 20px;
    justify-content: space-between;
  }
}
.l-header__logo {
  position: relative;
  font-size: 2.1rem;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .l-header__logo {
    padding: 20px 0;
  }
}
.l-header__logo.is-active::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 11px;
  top: 0;
  left: 0;
  background-color: #b23100;
}
@media (max-width: 768px) {
  .l-header__logo.is-active::before {
    content: none;
  }
}
.l-header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  font-size: 1.6rem;
  font-weight: bold;
}
.l-header__menu-item {
  position: relative;
  padding: 34px 0;
}
.l-header__menu-item.is-active::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 11px;
  top: 0;
  left: 0;
  background-color: #b23100;
}
@media (max-width: 768px) {
  .l-header__menu-item.is-active::before {
    content: none;
  }
}
.l-header__menu-item a {
  position: relative;
  padding-bottom: 5px;
}
.l-header__menu-item a::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #b23100;
  transition: 0.2s;
}
.l-header__menu-item a:hover::after {
  width: 100%;
}
@media (max-width: 768px) {
  .l-header__nav--pc {
    display: none;
  }
}
.l-header__menu-toggle {
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .l-header__menu-toggle {
    display: block;
    position: relative;
    width: 33px;
    height: 23px;
  }
  .l-header__menu-toggle img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    width: 100%;
    height: 100%;
  }
  .l-header__menu-toggle .icon-open {
    opacity: 1;
  }
  .l-header__menu-toggle .icon-close {
    opacity: 0;
  }
  .l-header__menu-toggle.is-active .icon-open {
    opacity: 0;
  }
  .l-header__menu-toggle.is-active .icon-close {
    opacity: 1;
  }
}
.l-header__menu-overlay {
  display: none;
}
@media (max-width: 768px) {
  .l-header__menu-overlay {
    display: block;
    position: fixed;
    top: 73px;
    left: 0;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: #1b3c7e;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .l-header__menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media (max-width: 768px) {
  .l-header__nav--sp .l-header__menu--sp {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .l-header__nav--sp .l-header__menu--sp-item {
    margin-bottom: 30px;
    color: #fff;
  }
  .l-header__nav--sp .l-header__menu--sp-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
  }
}

.l-login-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e6e6e6;
  z-index: 99;
}
.l-login-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 23px 0;
  font-weight: bold;
}
.l-login-header span {
  background-color: #1b3c7e;
  display: inline-block;
  color: #fff;
  padding: 5px 15px;
  font-size: 1.4rem;
  margin-left: 25px;
}

/* ==========================
  フッター全体
========================== */
.l-footer {
  background-color: #1b3c7e;
  color: #fff;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}
@media (max-width: 768px) {
  .l-footer__inner {
    width: 90%;
    flex-direction: column;
    align-items: center;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  width: 50%;
}
@media (max-width: 768px) {
  .l-footer__left {
    width: fit-content;
    margin: 0 auto 50px auto;
  }
}
.l-footer__logo {
  width: 190px;
}
@media (max-width: 768px) {
  .l-footer__logo {
    margin: 0 auto;
  }
}
.l-footer__address {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.l-footer__info {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.l-footer__nav {
  width: 50%;
}
@media (max-width: 768px) {
  .l-footer__nav {
    width: 100%;
  }
}
.l-footer__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}
@media (max-width: 768px) {
  .l-footer__list {
    margin-bottom: 30px;
  }
}
.l-footer__list li {
  width: 160px;
  font-size: 1.6rem;
}
.l-footer__note {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}
.l-footer.center .l-footer__inner {
  justify-content: center;
  flex-direction: column;
}
.l-footer.center .l-footer__logo {
  margin: 0 auto 10px auto;
}
.l-footer.center .l-footer__left {
  width: fit-content;
  margin-bottom: 30px;
}
.l-footer.center .l-footer__nav {
  width: fit-content;
  margin-bottom: 40px;
}
.l-footer.center .l-footer__list {
  flex-direction: row;
  justify-content: center;
  gap: 40px;
}
.l-footer.center .l-footer__list li {
  width: auto;
  text-align: center;
}
.l-footer.center .l-footer__note {
  text-align: center;
}

.l-blog {
  font-size: 1.6rem;
}
.l-blog > * {
  padding: 20px 0;
}
@media (max-width: 768px) {
  .l-blog > * {
    padding: 12px 0;
  }
}
.l-blog .wp-block-group *,
.l-blog .wp-block-column * {
  padding: 5px 0;
}
.l-blog h1 {
  font-size: 2.2rem;
  font-weight: 600;
}
.l-blog h2 {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .l-blog h2 {
    font-size: 1.6rem;
  }
}
.l-blog h3 {
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .l-blog h3 {
    font-size: 1.5rem;
  }
}
.l-blog h4,
.l-blog h5,
.l-blog h6 {
  font-size: 2rem;
  font-weight: 400;
}
.l-blog a {
  color: #b23100;
  text-decoration: underline;
}
.l-blog ul {
  list-style: disc;
}
.l-blog ul,
.l-blog ol {
  padding-left: 20px !important;
}
.l-blog ul li,
.l-blog ol li {
  padding: 0 !important;
}
.l-blog p {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .l-blog p {
    font-size: 1.4rem;
  }
}

.wp-block-quote {
  padding: 3px 10px;
  margin: 20px 0;
  border-left: 4px solid #e3e3e3;
}

.has-thomas-orange-color {
  color: #eb6311;
}

.has-thomas-orange-background-color {
  background-color: #eb6311;
}

.has-thomas-blue-color {
  color: #87cacd;
}

.has-thomas-blue-background-color {
  background-color: #87cacd;
}

.site-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.member-only-badge {
  display: inline-block;
  background-color: #1b3c7e;
  padding: 2px 8px;
  font-size: 1.2rem;
  color: #fff;
}

.member-sidebar {
  width: 250px;
  background-color: #e6e6e6;
  display: flex;
  height: 80vh;
  flex-direction: column;
  position: sticky;
  top: 0;
}
@media (max-width: 768px) {
  .member-sidebar {
    display: none;
  }
}
.member-sidebar-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.member-sidebar-nav {
  flex: 1;
  padding: 20px 0;
}
.member-sidebar-nav .member-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-sidebar-nav .member-menu .menu-item {
  display: block;
}
.member-sidebar-nav .member-menu .menu-item a {
  display: block;
  padding: 12px 20px;
  font-size: 1.4rem;
}
.member-sidebar-nav .member-menu .menu-item.current a {
  background-color: #f5f5f5;
  font-weight: bold;
}
.member-sidebar-footer {
  padding: 20px;
}
.member-sidebar-footer .logout-button {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: #f5f5f5;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.member-mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: #e6e6e6;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .member-mobile-header {
    display: flex;
  }
}
.member-mobile-header .member-mobile-title {
  display: flex;
  flex-direction: column-reverse;
  width: fit-content;
}
.member-mobile-header .member-mobile-title .member-only-badge {
  width: fit-content;
}
.member-mobile-header .member-mobile-toggle {
  width: 30px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.member-mobile-header .member-mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1b3c7e;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.member-mobile-header .member-mobile-toggle span:nth-child(1) {
  top: 0;
}
.member-mobile-header .member-mobile-toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.member-mobile-header .member-mobile-toggle span:nth-child(3) {
  bottom: 0;
}
.member-mobile-header .member-mobile-toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.member-mobile-header .member-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.member-mobile-header .member-mobile-toggle.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.member-mobile-menu {
  position: fixed;
  top: 66px;
  right: 0;
  width: 80%;
  max-width: 300px;
  height: calc(100vh - 54px);
  background-color: #fff;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: none;
}
@media (max-width: 768px) {
  .member-mobile-menu {
    display: block;
  }
}
.member-mobile-menu.is-active {
  transform: translateX(0);
}
.member-mobile-menu .member-mobile-nav {
  padding: 9px 0;
}
.member-mobile-menu .member-mobile-nav .member-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-mobile-menu .member-mobile-nav .member-menu .menu-item {
  padding: 0;
}
.member-mobile-menu .member-mobile-nav .member-menu .menu-item a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}
.member-mobile-menu .member-mobile-nav .member-menu .menu-item.current a {
  background-color: #1b3c7e;
  color: #fff;
}

.member-menu-overlay {
  position: fixed;
  display: none;
  top: 54px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .member-menu-overlay {
    display: block;
  }
}
.member-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* ダッシュボードページ用 */
.l-dashboard {
  padding: 0;
  min-height: 100vh;
}
.l-dashboard-container {
  display: flex;
  width: 100%;
  min-width: 1100px;
}
@media (max-width: 768px) {
  .l-dashboard-container {
    display: block;
    min-width: unset;
  }
}
.l-dashboard-content {
  flex: 1;
  padding: 40px;
}
@media (max-width: 768px) {
  .l-dashboard-content {
    padding: 85px 0;
    width: 90%;
    margin: 0 auto;
  }
}
.l-dashboard-content.p-project-detail__content {
  padding: 0;
}
@media (max-width: 768px) {
  .l-dashboard-content.p-project-detail__content {
    padding: 100px 0;
  }
}
.l-dashboard-content .page-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #1b3c7e;
}

.c-page-title {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

/* ボタン */
.c-btn {
  display: block;
  width: 280px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.2s;
}
.c-btn--primary {
  background-color: #1b3c7e;
  color: #fff;
}
.c-btn--primary:hover {
  background-color: #b23100;
}
@media (max-width: 768px) {
  .c-btn--primary:hover {
    background-color: #1b3c7e;
  }
}
.c-btn--light {
  background-color: #cdd9f2;
}
.c-btn--light:hover {
  background-color: #b23100;
  color: #fff;
}
@media (max-width: 768px) {
  .c-btn--light:hover {
    color: #1b3c7e;
    background-color: #cdd9f2;
  }
}

/* お知らせ */
.c-news {
  list-style: none;
  width: 85%;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 0;
  display: flex;
  flex-direction: column;
}

.c-news-item {
  border-bottom: 1px solid #cdd9f2;
}
.c-news-item a {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
@media (max-width: 768px) {
  .c-news-item a {
    flex-direction: column;
    gap: 5px;
  }
}
.c-news-item__date {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .c-news-item__date {
    font-size: 1.2rem;
  }
}
.c-news-item__title {
  flex: 1;
  font-size: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-news-item__title {
    font-size: 1.4rem;
  }
}

/* 専門家カード */
.c-professions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 390px);
  gap: 50px;
  width: 830px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-professions {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
  }
}

.c-profession-item {
  padding: 38px 33px;
  border-radius: 5px;
  margin: 0 auto;
  border: 1px solid #cdd9f2;
  width: 390px;
}
@media (max-width: 768px) {
  .c-profession-item {
    width: 360px;
    margin: 0 auto;
  }
}
.p-front .c-profession-item {
  background-color: #fff;
}
body:not(.p-front) .c-profession-item {
  background-color: #fff;
}
.c-profession-item__head {
  display: flex;
  gap: 30px;
}
.c-profession-item__image {
  width: 130px;
  aspect-ratio: 128/160;
  overflow: hidden;
  border-radius: 5px;
}
.c-profession-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-profession-item__content {
  margin: 20px 0 30px 0;
}
.c-profession-item__title {
  font-size: 1.6rem;
  margin: 0 0 15px;
  font-weight: 600;
}
.c-profession-item__head__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-profession-item__link {
  display: flex;
  justify-content: space-between;
  background-color: #1b3c7e;
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 1.6rem;
}
.c-profession-item__link .icon {
  width: 12px;
}
.c-profession-item__description {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-profession-item__description.full {
  -webkit-line-clamp: unset;
}
.c-profession-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-profession-item__tag {
  background-color: #eef2ff;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 1.4rem;
  color: #1b3c7e;
  opacity: 0.3;
}
.c-profession-item__tag.is-active {
  opacity: 1;
}

/* コラム */
.c-columns {
  padding: 80px 0;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 228px);
  gap: 50px;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-columns {
    grid-template-columns: 1fr;
    width: 90%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.c-columns__title {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.c-columns__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 814px) {
  .c-columns__list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.c-column-item {
  transition: opacity 0.3s ease;
}
.c-column-item:hover {
  opacity: 0.7;
}
.c-column-item__img {
  aspect-ratio: 3/2;
  margin-bottom: 15px;
}
.c-column-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-column-item__meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.c-column-item__date {
  font-size: 1.4rem;
  color: #999;
}
.c-column-item__cat {
  font-size: 1.2rem;
  background: #e7ebf5;
  padding: 4px 8px;
}
.c-column-item__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

.c-intro-contents {
  width: fit-content;
  margin: 0 auto;
  padding: 55px 0;
}
.c-intro-contents span {
  color: #b23100;
}

.c-privacy-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-privacy-modal.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}
.c-privacy-modal__content {
  background-color: #fff;
  margin: 4vh auto;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}
.is-active .c-privacy-modal__content {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .c-privacy-modal__content {
    width: 90%;
    margin: 4vh auto;
  }
}
.c-privacy-modal__header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-privacy-modal__header h2 {
  margin: 0;
  font-size: 20px;
  color: #1b3c7e;
}
.c-privacy-modal__body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}
.c-privacy-modal__body p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.c-privacy-modal__footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  text-align: right;
}
.c-privacy-modal__close, .c-privacy-modal__close-btn {
  background: none;
  border: none;
  cursor: pointer;
}
.c-privacy-modal__close:hover, .c-privacy-modal__close-btn:hover {
  opacity: 0.7;
}
.c-privacy-modal__close {
  font-size: 24px;
  color: #999;
}
.c-privacy-modal__close-btn {
  background-color: #1b3c7e;
  color: #fff;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
}
.c-privacy-modal .c-privacy-modal__body {
  padding: 20px;
}
.c-privacy-modal .c-privacy-modal__body h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.c-privacy-modal .c-privacy-modal__body h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0 10px;
}
.c-privacy-modal .c-privacy-modal__body p {
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.6;
}
.c-privacy-modal .c-privacy-modal__body ol {
  font-size: 14px;
  padding-left: 20px;
  margin-bottom: 15px;
}
.c-privacy-modal .c-privacy-modal__body ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.c-modal-trigger {
  color: #1b3c7e;
  text-decoration: underline;
  cursor: pointer;
}
.c-modal-trigger:hover {
  text-decoration: none;
}

body.modal-open {
  overflow: hidden;
}

/* ページネーション　*/
.wp-pagenavi {
  display: flex;
  gap: 15px;
  font-size: 1.6rem;
  width: fit-content;
  margin: 60px auto 0 auto;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi span,
.wp-pagenavi a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #cdd9f2;
  border: unset !important;
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  background: transparent;
}
.wp-pagenavi .current {
  background: #1b3c7e;
  color: #fff;
}

.p-front__fv {
  position: relative;
}
.p-front__fv__img {
  width: 100%;
}
.p-front__fv__catchcopy {
  position: absolute;
  left: 13%;
  top: 10%;
  font-size: 4vw;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .p-front__fv__catchcopy {
    font-size: 7vw;
    left: 6%;
    top: 3%;
  }
}
.p-front__fv__sub-catchcopy {
  position: absolute;
  left: 13%;
  top: 34%;
  font-size: 1.6vw;
  color: #fff;
  font-weight: bold;
}
.p-front__fv__sub-catchcopy span {
  margin-top: 1.6vw;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-front__fv__sub-catchcopy {
    left: 7%;
    top: 18%;
    font-size: 4vw;
  }
}
.p-front__fv__cta {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5vw;
}
@media (max-width: 768px) {
  .p-front__fv__cta {
    flex-direction: column;
    gap: 7vw;
    bottom: 7%;
  }
}

.p-front__professions {
  padding: 120px 0;
  background-color: #1b3c7e;
}
.p-front__professions .c-btn {
  margin: 70px auto 0 auto;
}

.p-front__columns {
  padding: 120px 0 200px 0;
}
.p-front__columns h2 {
  text-align: center;
  margin-bottom: 40px;
}
.p-front__columns .c-btn {
  margin: 70px auto 0 auto;
}

.p-front__news {
  padding-bottom: 200px;
}
.p-front__news h2 {
  text-align: center;
  margin-bottom: 40px;
}
.p-front__news .c-btn {
  margin: 70px auto 0 auto;
}

/* お問い合わせフォームスタイル */
.p-contact {
  margin: 60px auto;
  padding: 100px 20px;
  /* チェックボックスグループ */
  /* ボタン */
}
.p-contact form {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}
.p-contact__input-title {
  font-size: 2.3rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-contact__input-title {
    font-size: 1.8rem;
  }
}
.p-contact__input-container {
  padding: 40px 0 60px 0;
  max-width: 560px;
  margin: 0 auto;
  width: 90%;
}
@media (max-width: 768px) {
  .p-contact__input-container {
    width: 100%;
  }
}
.p-contact__checkbox-group {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}
.p-contact__checkbox-group .wpcf7-list-item {
  width: 186px;
  margin: 10px 0;
}
.p-contact__checkbox-group span {
  vertical-align: text-bottom;
}
.p-contact input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .p-contact input[type=checkbox] {
    display: inline-block;
    vertical-align: sub;
  }
}
.p-contact input[type=checkbox]:checked {
  background-color: #253c78;
  border-color: #253c78;
}
.p-contact input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 5px;
  left: 9px;
  transform: rotate(45deg);
}
.p-contact .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-contact input[type=text],
.p-contact input[type=email],
.p-contact input[type=tel],
.p-contact textarea {
  padding: 10px;
  display: block;
  width: 100%;
  margin-top: 10px;
  background-color: #f2f6ff;
  border: 1px solid #cdd9f2;
  border-radius: 2px;
  font-size: 1.6rem;
}
.p-contact input[type=text]:focus,
.p-contact input[type=email]:focus,
.p-contact input[type=tel]:focus,
.p-contact textarea:focus {
  outline: none;
}
.p-contact__progress-count {
  padding-top: 10px;
  text-align: center;
  border-top: 1px solid #cdd9f2;
}
.p-contact__button-container {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-contact .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  margin: 0;
}
.p-contact .wpcf7-submit {
  background: #253c78;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 60px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.p-contact .wpcf7-submit:hover {
  background: #b23100;
}
@media (max-width: 767px) {
  .p-contact .wpcf7-submit {
    width: 100%;
  }
}
.p-contact .wpcf7-previous {
  background: #cdd9f2;
  border: none;
  border-radius: 4px;
  padding: 12px 60px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
.p-contact .wpcf7-previous:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .p-contact .wpcf7-previous {
    width: 100%;
  }
}
.p-contact__privacy {
  margin-bottom: 60px;
}
.p-contact__privacy a {
  text-decoration: underline;
}
.p-contact__privacy label {
  display: flex;
  align-items: center;
}
.p-contact__privacy .wpcf7-form-control-wrap {
  width: fit-content;
  margin: 0 auto 20px auto;
}
.p-contact__privacy .note {
  font-size: 1.6rem;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-contact__privacy .note {
    font-size: 1.3rem;
  }
}
.p-contact__confirm-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
}
.p-contact__confirm-label {
  width: 25%;
  min-width: 180px;
  font-size: 1.6rem;
  font-weight: bold;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .p-contact__confirm-label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-contact__confirm-value {
  flex: 1;
  font-size: 1.6rem;
}
.p-contact .recaptcha {
  font-size: 1.3rem;
  text-align: center;
  margin-top: 30px;
}
.p-contact .recaptcha a {
  text-decoration: underline;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output {
  font-size: 1.6rem;
  color: #b23100;
}

/* ログインページ */
.login-page {
  padding: 150px 0 60px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.login-page .container {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
.login-page .login-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
  color: #1b3c7e;
}
.login-page .login-error {
  background: #ffebeb;
  color: #d63031;
  padding: 15px;
  border-radius: 0;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.login-page .login-form .form-group {
  margin-bottom: 20px;
}
.login-page .login-form label {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}
.login-page .login-form input[type=text],
.login-page .login-form input[type=password],
.login-page .login-form input[type=email] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 1.6rem;
  background-color: #f9f9ff;
}
.login-page .login-form .login-button {
  display: block;
  background: #1b3c7e;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 0;
  margin: 30px auto;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.login-page .login-form .login-button:hover {
  background: #152f61;
}
.login-page .login-links {
  margin-top: 50px;
  text-align: center;
  font-size: 1.4rem;
}
.login-page .login-links a {
  color: #1b3c7e;
  text-decoration: underline;
}
.login-page .login-links a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .login-page {
    padding: 40px 0;
  }
  .login-page .login-form-container {
    padding: 20px;
  }
  .login-page .login-title {
    font-size: 2.2rem;
  }
}

.p-profile .container {
  max-width: 700px;
  margin: 30px auto;
}
.p-profile .c-profession-item__head {
  max-width: 350px;
  margin: 0 auto;
}
.p-profile .c-profession-item__tags {
  max-width: 350px;
  margin: 40px auto;
}
.p-profile .c-profession-item__description {
  line-height: 2;
}

/* プロジェクト一覧ページ */
.p-projects__list {
  display: grid;
  grid-template-columns: repeat(2, 380px);
  gap: 20px;
}
@media (max-width: 768px) {
  .p-projects__list {
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-projects .no-projects {
  grid-column: 1/-1;
  text-align: center;
  padding: 40px;
  background: #fff;
  font-size: 1.6rem;
  color: #666;
}

/* プロジェクトのカード */
.c-project-card {
  background: #fff;
  border: 1px solid #cdd9f2;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 5px;
  max-width: 380px;
}
.c-project-card:hover {
  opacity: 0.8;
}
.c-project-card__link {
  display: block;
  padding: 20px;
  text-decoration: none;
  height: 100%;
}
.c-project-card__title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 4.48rem; /* 1.6rem × 1.4 × 2行 = 4.48rem */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.c-project-card__date {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 15px;
}
.c-project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-project-card__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #eef2ff;
  color: #1b3c7e;
}

/* プロジェクト詳細ページ */
.p-project-detail__content {
  flex: 1;
  background-color: #fff;
}
.p-project-detail__header {
  margin-bottom: 30px;
}
.p-project-detail__title {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  background: #cdd9f2;
  padding: 20px 40px;
}
@media (max-width: 768px) {
  .p-project-detail__title {
    font-size: 2rem;
    padding: 20px 20px;
  }
}
.p-project-detail__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .p-project-detail__meta {
    padding: 0;
  }
}
.p-project-detail__date {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0;
}
.p-project-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.p-project-detail__tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: 500;
  background-color: #eef2ff;
  color: #1b3c7e;
}
.p-project-detail__section {
  padding: 40px;
}
@media (max-width: 768px) {
  .p-project-detail__section {
    padding: 20px 0;
  }
}
.p-project-detail__section__title {
  font-size: 2rem;
  font-weight: bold;
  color: #1b3c7e;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}
.p-project-detail__section .hidden-dl {
  position: relative;
  overflow: hidden;
  width: fit-content;
}
@media (max-width: 768px) {
  .p-project-detail__section .hidden-dl {
    width: 100%;
  }
}
.p-project-detail__section .hidden-dl::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: calc(100% - 150px);
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(205, 217, 242, 0.7);
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-project-detail__section .hidden-dl::before {
    width: calc(100% - 106px);
  }
}
.p-project-detail__section .hidden-dl::after {
  content: "マッチング成立後に開示されます。";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: calc(100% - 150px);
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 768px) {
  .p-project-detail__section .hidden-dl::after {
    font-size: 1.2rem;
    width: calc(100% - 114px);
  }
}
.p-project-detail__section .hidden-dl.first::before {
  height: 50%;
}
.p-project-detail__section .hidden-dl.first::after {
  height: 50%;
  top: 46%;
}
.p-project-detail__section dl {
  margin: 0 0 8px 0;
  padding: 12px 16px;
}
@media (max-width: 768px) {
  .p-project-detail__section dl {
    padding: 12px 0;
  }
}
.p-project-detail__section dl dt {
  float: left;
  clear: left;
  width: 123px;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 1.6rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .p-project-detail__section dl dt {
    font-size: 1.4rem;
    width: 100px;
  }
}
.p-project-detail__section dl dd {
  margin-left: 130px;
  margin-bottom: 8px;
  font-size: 1.6rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 4px 12px;
}
@media (max-width: 768px) {
  .p-project-detail__section dl dd {
    margin-left: 90px;
    font-size: 1.4rem;
  }
}
.p-project-detail__section__details {
  font-size: 1.6rem;
  border-radius: 6px;
  padding: 12px 16px;
  margin-bottom: 8px;
  white-space: pre-line;
}
.p-project-detail__footer {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding: 20px 40px 100px 40px;
}
@media (max-width: 768px) {
  .p-project-detail__footer {
    flex-direction: column;
    gap: 30px;
    padding: 50px 40px 100px 40px;
  }
}
.p-project-detail__footer .contact-button {
  display: inline-block;
  background-color: #1b3c7e;
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 1.6rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .p-project-detail__footer .contact-button {
    text-align: center;
    padding: 20px 30px;
  }
}
.p-project-detail__footer .contact-button:hover {
  background-color: #152f61;
}
@media (max-width: 768px) {
  .p-project-detail__footer .contact-button:hover {
    background-color: #1b3c7e;
  }
}
.p-project-detail__footer .back-button {
  display: inline-block;
  background-color: #f5f5f5;
  color: #666;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 1.6rem;
  text-decoration: none;
  transition: background-color 0.3s;
}
@media (max-width: 768px) {
  .p-project-detail__footer .back-button {
    text-align: center;
    padding: 20px 30px;
  }
}
.p-project-detail__footer .back-button:hover {
  background-color: #e5e5e5;
  color: #333;
}
@media (max-width: 768px) {
  .p-project-detail__footer .back-button:hover {
    background-color: #f5f5f5;
    color: #666;
  }
}

.c-apply-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 40, 80, 0.35);
  justify-content: center;
  align-items: center;
}
.c-apply-modal h2 {
  font-size: 2rem;
}
.c-apply-modal p {
  font-size: 1.6rem;
}
.c-apply-modal .wpcf7-form-control-wrap {
  width: 100%;
}
.c-apply-modal textarea {
  padding: 10px;
  display: block;
  width: 100%;
  margin-top: 10px;
  background-color: #f2f6ff;
  border: 1px solid #cdd9f2;
  border-radius: 2px;
  font-size: 1.6rem;
}
.c-apply-modal textarea:focus {
  outline: none;
}
.c-apply-modal .notice {
  margin-top: 20px;
  font-size: 1.4rem;
  text-align: center;
}
.c-apply-modal .wpcf7-submit {
  display: block;
  background: #253c78;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 60px;
  margin: 20px auto 0 auto;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-apply-modal .wpcf7-submit:hover {
  background: #b23100;
}
@media (max-width: 767px) {
  .c-apply-modal .wpcf7-submit {
    width: 100%;
  }
}
.c-apply-modal__content {
  background: #fff;
  border-radius: 10px;
  max-width: 620px;
  min-height: 80vh;
  width: 90vw;
  margin: 40px auto;
  padding: 32px 24px 24px 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(30, 40, 80, 0.18);
}
.c-apply-modal .recaptcha {
  font-size: 1.3rem;
  text-align: center;
  margin-top: -26px;
}
.c-apply-modal .recaptcha a {
  text-decoration: underline;
}
.c-apply-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.2rem;
  color: #1b3c7e;
  cursor: pointer;
  font-weight: bold;
}
.c-apply-modal #apply-modal-complete-area {
  margin-top: 25%;
}

/* コラム一覧ページ */
.p-archive-column {
  margin-top: 100px;
  padding-bottom: 150px;
}
.p-archive-column__title {
  text-align: center;
}

/* single.php（記事詳細）用 */
.p-single-column .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.p-single-column__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #e5e8f3;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .p-single-column__thumb {
    width: 90%;
    margin: 0 auto 32px auto;
  }
}
.p-single-column__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-single-column__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .p-single-column__meta {
    width: 90%;
    margin: 0 auto 24px auto;
  }
}
.p-single-column__cats {
  display: flex;
  gap: 8px;
}
.p-single-column__cat {
  background: #eef2ff;
  color: #1b3c7e;
  padding: 4px 16px;
  font-size: 1.4rem;
}
.p-single-column__date {
  color: #223a7a;
  font-size: 1.3rem;
  margin-left: auto;
}
.p-single-column__title {
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-single-column__title {
    margin-bottom: 36px;
  }
}
.p-single-column__content {
  width: 90%;
  margin: 0 auto 100px auto;
}
.p-single-column__others {
  padding: 80px 0;
  background: #f2f6ff;
}
.p-single-column__others-title {
  text-align: center;
}
.p-single-column__others .c-btn {
  margin: 0 auto;
}

/* お知らせ一覧ページ */
.p-archive-news {
  margin-top: 100px;
  padding-bottom: 150px;
}
.p-archive-news__title {
  text-align: center;
}

/* single-news.php（記事詳細）用 */
.p-single-news .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0;
}
.p-single-news__date {
  color: #223a7a;
  font-size: 1.3rem;
  margin-left: auto;
  margin-bottom: 20px;
}
.p-single-news__title {
  font-size: 2.2rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .p-single-news__title {
    margin-bottom: 36px;
  }
}
.p-single-news__content {
  width: 90%;
  margin: 0 auto 100px auto;
}
.p-single-news__back {
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 1.6rem;
}

.p-pricing {
  margin: 100px auto;
}
.p-pricing__title {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 32px;
}
.p-pricing__usage {
  margin-bottom: 60px;
}
.p-pricing__usage-box {
  background: #f2f6ff;
  border-radius: 2px;
  padding: 50px 100px;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-pricing__usage-box {
    width: 90%;
    padding: 50px 40px;
    margin: 0 auto;
    font-size: 1.6rem;
  }
}
.p-pricing__plan {
  margin-top: 100px;
  margin-bottom: 40px;
}
.p-pricing__table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}
.p-pricing__table {
  max-width: 900px;
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  text-align: center;
  margin: 50px auto;
}
@media (max-width: 768px) {
  .p-pricing__table {
    width: fit-content;
    margin-top: 10px;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.p-pricing__table th, .p-pricing__table td {
  border-bottom: 1px solid #e5e8ef;
  padding: 37px 8px;
}
@media (max-width: 768px) {
  .p-pricing__table th, .p-pricing__table td {
    padding: 37px 20px;
  }
}
.p-pricing__table th {
  font-weight: bold;
  background: #fff;
  border-bottom: 2px solid #e5e8ef;
}
.p-pricing__experts {
  text-align: center;
  padding-left: 24px;
}
.p-pricing__free {
  position: relative;
  color: #b94c1e;
  font-size: 4.3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .p-pricing__free {
    font-size: 3rem;
  }
}
.p-pricing__free span {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  color: #1b3c7e;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .p-pricing__free span {
    font-size: 2rem;
  }
}
.p-pricing .c-btn {
  margin: 0 auto;
}

.p-request {
  max-width: 700px;
  margin: 170px auto 200px;
}
@media (max-width: 768px) {
  .p-request {
    width: 90%;
    margin: 140px auto;
  }
}
.p-request h1 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
}
.p-request p {
  margin-top: 30px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .p-request p {
    text-align: center;
    font-size: 1.6rem;
  }
}
.p-request form .wpcf7-list-item {
  margin: 0 40px 10px 0;
}
.p-request form .wpcf7-form-control-wrap {
  width: 100%;
}
.p-request form .request-form__section {
  margin-top: 30px;
}
.p-request form label {
  font-size: 1.8rem;
  margin-bottom: 0.3em;
  display: block;
}
@media (max-width: 768px) {
  .p-request form label {
    font-size: 1.6rem;
    margin-bottom: 0.1em;
  }
}
.p-request form input[type=text],
.p-request form input[type=email],
.p-request form input[type=tel],
.p-request form textarea {
  padding: 10px;
  display: block;
  width: 100%;
  margin-top: 10px;
  background-color: #f2f6ff;
  border: 1px solid #cdd9f2;
  border-radius: 2px;
  font-size: 1.6rem;
}
.p-request form input[type=text]:focus,
.p-request form input[type=email]:focus,
.p-request form input[type=tel]:focus,
.p-request form textarea:focus {
  outline: none;
}
.p-request form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 1px;
  position: relative;
  cursor: pointer;
}
.p-request form input[type=checkbox]:checked {
  background-color: #253c78;
  border-color: #253c78;
}
.p-request form input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  top: 5px;
  left: 9px;
  transform: rotate(45deg);
}
.p-request form .profession-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-top: 10px;
}
.p-request form .profession-list label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .p-request form .profession-list label {
    font-size: 1.6rem;
  }
}
.p-request form .profession-list input[type=text] {
  width: 550px;
  margin-left: 0.5em;
}
@media (max-width: 768px) {
  .p-request form .profession-list input[type=text] {
    width: 100%;
    margin-left: 0em;
  }
}
.p-request form .required {
  color: #d9534f;
  font-size: 1em;
  margin-left: 0.2em;
}
.p-request form .privacy-check {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1em;
  font-size: 0.98em;
}
.p-request form .privacy-check input {
  margin-top: 3px;
  margin-right: 10px;
}
.p-request form .privacy-check span {
  vertical-align: super;
  margin-bottom: 0;
}
.p-request form .privacy-check .note {
  width: 100%;
  margin-top: -15px;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .p-request form .privacy-check .note {
    font-size: 1.4rem;
    text-align: left;
  }
}
.p-request form .recaptcha {
  font-size: 1.3rem;
  margin-top: 0;
}
.p-request form .recaptcha a {
  text-decoration: underline;
}
.p-request form .wpcf7-submit {
  background: #253c78;
  color: white;
  border: none;
  border-radius: 4px;
  margin: 50px auto 0 auto;
  padding: 12px 60px;
  display: block;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.p-request form .wpcf7-submit:hover {
  background: #b23100;
}
@media (max-width: 767px) {
  .p-request form .wpcf7-submit {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-request .request-form-wrapper {
    padding: 1.2em 0.5em 1.5em;
  }
  .p-request .request-form .profession-list {
    gap: 8px 10px;
  }
  .p-request .request-form .profession-list label {
    font-size: 0.95em;
  }
  .p-request .request-form input[type=text],
  .p-request .request-form input[type=email],
  .p-request .request-form input[type=tel] {
    max-width: 100%;
  }
}/*# sourceMappingURL=style.css.map */