@charset "UTF-8";


html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  color: #101010;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.w_inner {
  margin: 30px auto 0;
  width: 90%;
  max-width: 1200px;
}

#main-content-wrapper.no-scroll-content {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #F2F6FF;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
}

#header .header-logo a {
  display: inline-block;
}

#header .header-logo a img {
  display: block;
  max-height: 70px;
}

#header .header-nav {
  margin-left: auto;
}

#header .header-nav ul.header-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

#header .header-nav ul.header-nav__menu li a {
  color: #101010;
  text-decoration: none;
  font-weight: normal;
  transition: color 0.3s;
  font-size: 1.6rem;
}

#header .header-nav ul.header-nav__menu li a:hover,
#header .header-nav ul.header-nav__menu li a:focus {
  color: #0641BD;
}

#header .header-nav ul.header-nav__menu li.has-modal a.modal-toggle {
  display: block;
}

#header .header-nav ul.header-nav__menu li.has-submenu .menu-title {
  display: none;
}

#header .header-nav ul.header-nav__menu li.has-submenu .sub-menu {
  display: none;
}

@media (min-width: 500px) {
  #header .header-nav ul.header-nav__menu li.has-submenu {
    display: none;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
}

#header .header-nav ul.header-nav__menu li.search-modal-toggle .search-modal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#header .header-nav ul.header-nav__menu li.search-modal-toggle .search-modal-btn img {
  vertical-align: middle;
}

#header .header-nav .mobile-modal-content {
  display: none;
}

#header .modal-overlay.desktop-only-modal {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 27, 45, 0.9);
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 99;
}

#header .modal-overlay.desktop-only-modal .modal-content {
  width: 70%;
  height: auto;
  padding: 40px 60px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#header .modal-overlay.desktop-only-modal .modal-content::-webkit-scrollbar {
  display: none;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-close::before,
#header .modal-overlay.desktop-only-modal .modal-content .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #FDFDFD;
  transform-origin: center;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-close:hover::before,
#header .modal-overlay.desktop-only-modal .modal-content .modal-close:hover::after {
  background-color: #FDFDFD;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-block {
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-block p {
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  color: #FDFDFD;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-block p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-color: #A5A5A5;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  text-align: left;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-links a {
  width: 40%;
  margin-bottom: 5px;
  position: relative;
  font-size: 2rem;
  color: #FDFDFD;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #A5A5A5;
}

#header .modal-overlay.desktop-only-modal .modal-content .modal-links a:hover,
#header .modal-overlay.desktop-only-modal .modal-content .modal-links a:focus {
  opacity: 0.8;
}

#header .modal-overlay.desktop-only-modal .modal-content .category-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 150px) / 4));
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
}

#header .modal-overlay.desktop-only-modal .modal-content .category-list li {
  list-style: none;
}

#header .modal-overlay.desktop-only-modal .modal-content .category-list li a {
  display: inline-block;
  border: 1px solid #A5A5A5;
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #FDFDFD;
}

#header .modal-overlay.desktop-only-modal .modal-content .category-list li a:hover,
#header .modal-overlay.desktop-only-modal .modal-content .category-list li a:focus {
  background: #eee;
  color: #101010;
}

#header .search-modal-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(46, 54, 65, 0.9);
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  z-index: 99;
}

#header .search-modal-overlay .search-modal-content {
  width: 70%;
  height: auto;
  padding: 40px 60px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#header .search-modal-overlay .search-modal-content::-webkit-scrollbar {
  display: none;
}

@media (max-width: 500px) {
  #header .search-modal-overlay .search-modal-content {
    display: none;
  }
}

#header .search-modal-overlay .search-modal-content .modal-close {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

#header .search-modal-overlay .search-modal-content .modal-close::before,
#header .search-modal-overlay .search-modal-content .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #FDFDFD;
  transform-origin: center;
}

#header .search-modal-overlay .search-modal-content .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#header .search-modal-overlay .search-modal-content .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#header .search-modal-overlay .search-modal-content .modal-close:hover::before,
#header .search-modal-overlay .search-modal-content .modal-close:hover::after {
  background-color: #FDFDFD;
}

#header .search-modal-overlay .search-modal-content h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  color: #FDFDFD;
}

#header .search-modal-overlay .search-modal-content .search-input-area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  width: 80%;
}

#header .search-modal-overlay .search-modal-content .search-input-area input[type=text] {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-size: 1.6rem;
  outline: none;
  padding-right: 50px;
  background-color: #E6E6E6;
}

#header .search-modal-overlay .search-modal-content .search-input-area .search-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: -40px;
}

#header .search-modal-overlay .search-modal-content .search-input-area .search-button img {
  width: 25px;
  height: 25px;
  display: block;
}

#header .search-modal-overlay .search-modal-content .modal-block {
  width: 100%;
  margin-bottom: 40px;
  text-align: left;
}

#header .search-modal-overlay .search-modal-content .modal-block p {
  font-weight: 600;
  margin-bottom: 5px;
  position: relative;
  font-size: 1.8rem;
  color: #FDFDFD;
}

#header .search-modal-overlay .search-modal-content .modal-block p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-color: #A5A5A5;
}

#header .search-modal-overlay .search-modal-content .category-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, calc((100% - 150px) / 4));
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
}

#header .search-modal-overlay .search-modal-content .category-list li {
  list-style: none;
}

#header .search-modal-overlay .search-modal-content .category-list li a {
  display: inline-block;
  border: 1px solid #A5A5A5;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #FDFDFD;
}

#header .search-modal-overlay .search-modal-content .category-list li a:hover,
#header .search-modal-overlay .search-modal-content .category-list li a:focus {
  background: #eee;
  color: #101010;
}

#header .nav-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

#header .nav-button span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #101010;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

#header .nav-button.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#header .nav-button.is-active span:nth-child(2) {
  opacity: 0;
}

#header .nav-button.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#header .mask {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100% - 80px);
  z-index: 900;
}

#header .mask.is-active {
  display: block;
}

/* --- 背景画像を設定 --- */
.content-wrapper {
  background: url("../img/bg-img.webp") no-repeat center top;
  background-size: cover;
  padding-top: 80px;
}

/* --- ファーストビュー（メインビジュアル）セクション --- */
.main-visual-section {
  padding: 0 0 0 0;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  width: 100%;
  max-width: 100%;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* justify-content: flex-start; */
  width: 100%;
  min-width: 0;
}

.carousel-item {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item img{
  width: 90%;
  height: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-indicators {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

.carousel-indicators .indicator {
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicators .indicator.active {
  background-color: #003775;
}

/* --- 各セクションの共通スタイル (記事一覧）--- */
.section-inner, 
.seminar-section-inner {
  margin: 0 auto;
  box-sizing: border-box;
}

.section-inner h2,
.seminar-section-inner h2 {
  font-size: 5rem;
  color: #003775;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}

.section-inner h2 .section-subtitle,
.seminar-section-inner h2 .section-subtitle {
  font-size: 2rem;
  color: #003775;
  margin-left: 16px;
}

/* --- コンセプトセクション --- */
.section-inner-concept {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.section-inner-concept h2 {
  font-size: 5rem;
  font-family: "Merriweather Sans", sans-serif;
  color: #003775;
  margin-bottom: 50px;
  font-weight: bold;
  position: relative;
  text-align: center;
}

.section-inner-concept h2 .section-subtitle {
  font-size: 2rem;
  color: #003775;
  margin-left: 10px;
  vertical-align: middle;
}

.concept-section {
  padding: 160px 0 100px 0;
  position: relative;
}

.concept-section::before {
  content: "CONCEPT";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(10rem, 2vw, 15rem);
  font-weight: bold;
  color: #004fa8;
  opacity: 0.1;
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.concept-section img {
  max-width: 66%;
  height: auto;
  display: block;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.concept-section .section-inner-concept .concept-content-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 400px;
}

.concept-section .concept-content-wrapper .concept-main-block {
  position: absolute;
  bottom: 35%;
  width: 100%;
}

.concept-section .concept-content-wrapper .concept-area {
  background-color: #003775;
  width: 70%;
  margin: 0 0 0 auto;
  text-align: right;
}

.concept-section .concept-content-wrapper .concept-area .concept-text-area {
  width: 40%;
  margin: 0 20px 0 auto;
  padding: 30px 0 30px;
  text-align: left;
}

.concept-section .concept-content-wrapper .concept-area .concept-headline {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FDFDFD;
  margin-bottom: 10px;
}

.concept-section .concept-content-wrapper .concept-area .concept-headline span {
  font-size: 3.4rem;
}

.concept-section .concept-content-wrapper .concept-area .concept-subheadline {
  margin-bottom: 10px;
  text-align: left;
}

.concept-section .concept-content-wrapper .concept-area p {
  line-height: 1.7;
  color: #FDFDFD;
}

.concept-section .concept-content-wrapper .btn-readmore {
  text-align: left;
  display: inline-flex;
  gap: 20px;
  transition: background-color 0.3s;
  align-items: center;
  justify-content: center;
}

.concept-section .concept-content-wrapper .btn-readmore img {
  vertical-align: middle;
}

@media (max-width: 500px) {
  .concept-section .concept-content-wrapper .btn-readmore img {
    width: 20px;
    height: 20px;
  }
}

.concept-section .concept-content-wrapper .btn-readmore p {
  margin: 0;
  padding: 0;
}

/* --- 記事セクション・セミナーセクション共通 --- */
.articles-section,
.popular-articles-section,
.seminar-section {
  padding-bottom: 100px;
}

.article-grid,
.seminar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}

.category-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding-bottom: 100px;
}

.btn-all-articles {
  position: relative;
  display: block;
  max-width: 360px;
  margin: 30px auto 0;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  background-color: #003775;
  color: #FDFDFD;
  border: 1px solid #003775;
  transition: all 0.3s;
}

.btn-all-articles::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #FDFDFD;
  border-right: 2px solid #FDFDFD;
  transform: rotate(45deg);
  box-sizing: border-box;
  transition: all 0.3s;
}

.btn-all-articles:hover {
  background-color: transparent;
  border: 1px solid #003775;
  color: #003775;
}

.btn-all-articles:hover::after {
  /* ホバー時に矢印の色を変更 */
  border-top: 2px solid #003775;
  border-right: 2px solid #003775;
}


/* --- 記事セクション (New Articles) --- */
.article-card {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.article-card p {
  padding-bottom: 8px;
}

.article-card:hover {
  opacity: 0.7;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.article-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-card .article-text {
  padding: 12px;
}

.article-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.article-card .article-title {
  font-size: 2rem;
  font-weight: bold;
  color: #003775;
  margin: 0.4rem 0;
  text-align: left;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
}

.article-card .article-author {
  font-size: 1.4rem;
  color: #101010;
  margin: 0.4rem 0;
  text-align: left;
}

.article-card .article-date {
  font-size: 1.2rem;
  color: #101010;
  margin: 0.4rem 0;
  text-align: left;
}

.post-categories {
  font-size: 1.2rem;
  color: #676767;
  margin: 0.4rem 0;
  text-align: left;
  border: 1px solid #676767;
  padding: 4px 4px;
  text-align: center;
  display: inline-block;
}

/* --- セミナーセクション --- */
.seminar-section {
  background-color: #E3ECFF;
  padding-top: 60px;
}

.seminar-card {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.seminar-card p {
  padding-bottom: 8px;
}

.seminar-card:hover {
  opacity: 0.7;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.seminar-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.seminar-card a .seminar-text {
  padding: 12px;
}

.seminar-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.seminar-card .seminar-title {
  font-size: 2rem;
  font-weight: bold;
  color: #003775;
  margin: 0.4rem 0;
  text-align: left;
  line-height: 1.4;
  padding-bottom: 0.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.6;
}

.seminar-card .seminar-date {
  font-size: 1.2rem;
  color: #101010;
  margin: 0.4rem 0;
  text-align: left;
}

.seminar-card .seminar-category {
  font-size: 1.2rem;
  width: 20%;
  color: #FDFDFD;
  background-color: #003775;
  margin: 0.4rem 0;
  text-align: left;
  border: 1px solid #101010;
  padding: 0.3rem 1rem;
  text-align: center;
}

/* --- footer --- */
.site-footer {
  background: #003775;
  color: #FDFDFD;
  padding: 32px 0 16px 0;
  text-align: center;
  width: 100%;
}

.site-footer .footer-logo-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
}

.site-footer .footer-logo-area .footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 8px;
}

.site-footer .footer-logo-area .footer-subtitle {
  font-size: 1.2rem;
  color: #FDFDFD;
  opacity: 0.8;
  margin-bottom: 8px;
}

.site-footer .footer-divider {
  border: none;
  border-top: 1px solid #fff;
  opacity: 0.3;
  margin: 16px 0;
}

.site-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.site-footer .footer-links li a {
  color: #FDFDFD;
  text-decoration: none;
  font-size: 1.4rem;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.site-footer .footer-links li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.site-footer .footer-copyright {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 8px;
}

/* --- コンセプトページ --- */
.concept-section-inner {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.concept-section-inner h2 {
  font-size: 5rem;
  color: #003775;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}

.concept-section-inner h2 .section-subtitle {
  font-size: 2rem;
  color: #003775;
  margin-left: 16px;
}

.two-tone-divider-pseudo {
  position: relative;
  width: 100%;
  height: 2px;
  margin: 30px auto;
}

.two-tone-divider-pseudo::before,
.two-tone-divider-pseudo::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
}

.two-tone-divider-pseudo::before {
  left: 0;
  width: 20%;
  background-color: #003775;
}

.two-tone-divider-pseudo::after {
  right: 0;
  width: 80%;
  background-color: rgba(16, 16, 16, 0.1);
}

.concept-page {
  padding: 40px 0;
  text-align: center;
}

.full-width-divider {
  width: 100%;
  height: 1px;
  background-color: #9EBEE1;
  margin-bottom: 60px;
}

.concept-page_image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.concept-page_subtitle {
  font-size: 3rem;
  font-weight: bold;
  text-align: left;
  margin: 60px 0 120px 0;
}

.concept-page_features {
  text-align: left;
}

.concept-page_features .concept-page_features-title {
  font-size: 4rem;
  font-weight: bold;
  color: #003775;
  margin-bottom: 30px;
}

.concept-page_features .concept-page_features-subtitle {
  color: #003775;
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  display: block;
  text-align: left;
}

.concept-page_features .concept-page_features-subtitle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #003775;
}

.concept-page_features .concept-page_features-text {
  margin-bottom: 60px;
}

/* --- 新着記事ページ --- */
.articles-latest-page,
.articles-popular-page,
.seminar-page {
  padding: 60px 0 100px 0;
}

.pagination {
  padding-bottom: 80px;
}

/* --- セミナーページ --- */
.seminar-page_wrapper .seminar-page_subtitle {
  position: relative;
  padding-left: 20px;
  font-size: 1.8rem;
}

.seminar-page_past-wrapper {
  padding-bottom: 100px;
}

.seminar-page_past-wrapper .seminar-page_subtitle {
  position: relative;
  padding-left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
}

.seminar-page_past-wrapper .seminar-page_subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 12px;
  width: 12px;
  background-color: #003775;
  border-radius: 50%;
  transform: translateY(-50%);
}

.seminar-page_upcoming-wrapper .seminar-page_subtitle {
  position: relative;
  padding-left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
}

.seminar-page_upcoming-wrapper .seminar-page_subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 12px;
  width: 12px;
  background-color: #003775;
  border-radius: 50%;
  transform: translateY(-50%);
}

.seminar-page_wrapper .seminar-page_subtitle {
  position: relative;
  padding-left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
}

.seminar-page_wrapper .seminar-page_subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 12px;
  width: 12px;
  background-color: #003775;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* --- ページネーション --- */
.pagination {
  margin-top: 60px;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination .nav-links a,
.pagination .nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: #101010;
  font-style: italic;
  font-size: 1.6rem;
  transition: all 0.3s;
}

.pagination .nav-links a:hover,
.pagination .nav-links span:hover {
  color: #003775;
}

.pagination .nav-links a.current,
.pagination .nav-links span.current {
  color: #003775;
  font-weight: bold;
}

.pagination .nav-links a.prev,
.pagination .nav-links a.next,
.pagination .nav-links span.prev,
.pagination .nav-links span.next {
  width: 40px;
  height: 40px;
  position: relative;
}

.pagination .nav-links a.prev::before,
.pagination .nav-links a.next::before,
.pagination .nav-links span.prev::before,
.pagination .nav-links span.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -50%);
}

.pagination .nav-links a.prev::before,
.pagination .nav-links span.prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.pagination .nav-links a.next::before,
.pagination .nav-links span.next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* --- 記事詳細ページ --- */
.detail-section-inner {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.detail-section-inner h2 {
  font-size: 5rem;
  color: #003775;
  font-weight: bold;
  display: flex;
  align-items: baseline;
}

.detail-section-inner h2 .section-subtitle {
  font-size: 2rem;
  color: #003775;
  margin-left: 16px;
}

.detail-page {
  padding: 60px 0;
  text-align: center;
}

.full-width-divider {
  width: 100%;
  height: 1px;
  background-color: #9EBEE1;
  margin-bottom: 60px;
}

.detail-page_image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.detail-page_title {
  color: #003775;
  font-size: 3rem;
  font-weight: bold;
  text-align: left;
  margin: 60px 0 60px 0;
}

.detail-page_wrapper {
  text-align: left;
  margin: 60px 0 60px 0;
}

.detail-page_wrapper .detail-page_full-width-divider {
  width: 100%;
  height: 1px;
  background-color: #9EBEE1;
}

.detail-page_wrapper .post-categories {
  background-color: #003775;
  color: #FDFDFD;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  display: inline-block;
}

.detail-page_wrapper .post-categories li{
  font-size: 2rem;
}


.detail-page_wrapper .detail-page_subtitle {
  font-weight: 700;
  color: #003775;
  font-size: 2rem;
  margin-bottom: 28px;
}

.detail-page_wrapper .detail-page_wrapper-auther {
  margin-bottom: 28px;
  display: flex;
  gap: 40px;
}

.detail-page_wrapper .detail-page_content {
  margin-bottom: 80px;
}

.detail-page_wrapper .detail-page_content .detail-page_content-title {
  padding: 8px 16px;
  background-color: #003775;
  color: #FDFDFD;
  margin: 40px 0;
  font-weight: bold;
  font-size: 2.4rem;
}

.detail-page_wrapper .detail-page_content .detail-page_interview-wrapper {
  margin-top: 40px;
}

.detail-page_wrapper .detail-page_content .detail-page_interview-wrapper .detail-page_content-interview {
  color: #003775;
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 700;
  position: relative;
}

.detail-page_wrapper .detail-page_content .detail-page_interview-wrapper .detail-page_content-interview span {
  color: #003775;
}

.detail-page_wrapper .detail-page_profile {
  padding: 48px;
  border: 1px solid #101010;
}

.detail-page_wrapper .detail-page_profile .detail-page_profile-title {
  font-size: 5rem;
  font-weight: bold;
  color: #003775;
  padding-bottom: 16px;
  margin-bottom: 40px;
  border-bottom: 1px solid #003775;
}

.detail-page_wrapper .detail-page_profile .detail-page_profile-auther-wrapper {
  display: flex;
  gap: 40px;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 34px;
}

.detail-page_wrapper .detail-page_profile .detail-page_company-wrapper {
  margin-top: 34px;
}

.detail-page_wrapper .detail-page_profile .detail-page_company-name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
}

.detail-page_wrapper .detail-page_profile .detail-page_company-text {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.detail-page_interview-content img {
  width: 100%;
  height: auto;
  max-width: 1200px;
  margin-top: 40px;
}

.detail-page_popular-articles-section {
  background-color: #E3ECFF;
  padding: 60px 0 100px 0;
}

/* --- お問い合わせページ --- */
.contact-page {
  margin-top: 60px;
  margin-bottom: 60px;
}

#contact {
  padding: 60px 20px 60px;
  margin-bottom: 80px;
  background-color: #EAEEF3;
}

.form-group label {
  display: inline-block;
  margin-bottom: 8px;
  margin-top: 24px;
}

.form-group {
  max-width: 800px;
  margin: 0 auto;
}

.form-group.name-group .name-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-group.name-group .name-wrapper .name-item {
  flex: 1;
  min-width: 0;
}

.form-group.name-group .name-wrapper .name-item input,
.form-group.name-group .name-wrapper .name-item textarea {
  width: 100%;
}

.form-group.kana-group .name-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.form-group.kana-group .name-wrapper .name-item {
  flex: 1;
  min-width: 0;
}

.form-group.kana-group .name-wrapper .name-item input,
.form-group.kana-group .name-wrapper .name-item textarea {
  width: 100%;
}

.required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: normal;
  color: #fff;
  background-color: #d9534f;
  border-radius: 4px;
  vertical-align: middle;
}

.wpcf7-form-control-wrap {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}

.wpcf7-acceptance .wpcf7-list-item {
  display: inline-block;
  vertical-align: middle;
  /* チェックボックスとの位置を中央揃え */
}

.privacy-group {
  margin-top: 30px;
  text-align: center;
}

.privacy-group label {
  cursor: pointer;
}

.privacy-group .privacy-link {
  color: #0073aa;
  text-decoration: underline;
}

.privacy-group .privacy-link:hover {
  text-decoration: none;
}

.privacyPolicy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  margin-bottom: 70px;
  gap: 8px;
}

.privacyPolicy-text {
  font-size: 16px;
  color: #333;
}

.privacyPolicy-checkbox {
  all: initial;
  vertical-align: middle;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  width: 16px;
  height: 16px;
  margin-top: 20px;
}

.privacyPolicy-text a {
  color: #007BFF;
  display: inline-block;
}

.privacyPolicy-text a:hover {
  color: #0056b3;
}

/* 送信ボタングループ */
.submit-group {
  max-width: 800px;
  margin-top: 30px;
  margin-bottom: 40px;
  margin: 0 auto;
  text-align: center;
}

.form-submit {
  margin-bottom: 40px;
}

/* 送信ボタン本体 */
.wpcf7-submit {
  display: inline-block;
  padding: 15px 120px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #003775;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.wpcf7-submit:hover {
  background-color: #005a87;
  transform: translateY(-2px);
}

/* --- プライバシーポリシーページ --- */
.privacy-page {
  margin: 100px auto 100px;
  background-color: #EAEEF3;
  padding-bottom: 60px;
}

.privacy-page .privacy-page-inner {
  text-align: center;
  padding: 60px 0 40px;
}

.privacy-page .privacy-page-inner .main-title {
  font-size: 4rem;
  font-weight: bold;
  color: #003775;
}

.privacy-page .privacy-page_text {
  width: 80%;
  margin: 0 auto;
}

/* --- 情報セキュリティ --- */
.security-page {
  margin: 100px auto 100px;
  background-color: #EAEEF3;
  padding-bottom: 60px;
}

.security-page .security-page-inner {
  text-align: center;
  padding: 60px 0 40px;
}

.security-page .security-page-inner .main-title {
  font-size: 4rem;
  font-weight: bold;
  color: #003775;
}

.security-page .security-page_text {
  width: 80%;
  margin: 0 auto;
}

.security-page .security-page_text .security-page_content {
  padding-bottom: 40px;
}

/* --- サンクスページ --- */
.thanks-page {
  padding-bottom: 100px;
}

.thanks-page .thanks-page-inner {
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}

.thanks-page .thanks-page-inner .main-title {
  font-size: 4rem;
  color: #003775;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.thanks-page .thanks-page-inner .main-title::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  /* 親要素の中央起点を指定 */
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background-color: #101010;
}

.thanks-page .thanks-page_text {
  text-align: center;
  margin-top: 80px;
}

.thanks-page .thanks-page_text .thanks-page_detail {
  margin-bottom: 40px;
}

.thanks-page .thanks-page_text .thanks-page_company {
  margin-bottom: 80px;
}



@media (max-width: 1024px) {
  #header {
    height: auto;
    flex-wrap: wrap;
    padding: 10px 20px;
  }

  #header .header-logo {
    margin-right: 0;
  }

  #header a img {
    width: 180px;
  }

  #header .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background-color: #F2F6FF;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding-top: 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #header .header-nav.is-active {
    right: 0;
  }

  #header .header-nav ul.header-nav__menu {
    flex-direction: column;
    gap: 0;
  }

  #header .header-nav ul.header-nav__menu li {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  #header .header-nav ul.header-nav__menu li:last-child {
    border-bottom: none;
  }

  #header .header-nav ul.header-nav__menu li.has-modal {
    display: none;
  }

  #header .header-nav ul.header-nav__menu li.search-modal-toggle {
    display: none;
  }

  #header .header-nav ul.header-nav__menu li a {
    display: block;
    padding: 15px 20px;
    text-align: left;
  }

  #header .header-nav ul.header-nav__menu li a.search-icon {
    display: none;
  }

  #header .header-nav ul.header-nav__menu li.has-submenu .menu-title {
    display: block;
    padding: 15px 20px;
    color: #101010;
    cursor: default;
    font-size: 1.6rem;
  }

  #header .header-nav ul.header-nav__menu li.has-submenu .sub-menu {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  #header .header-nav ul.header-nav__menu li.has-submenu .sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  #header .header-nav ul.header-nav__menu li.has-submenu .sub-menu li:last-child {
    border-bottom: none;
  }

  #header .header-nav ul.header-nav__menu li.has-submenu .sub-menu li a {
    padding: 10px 30px;
    font-weight: normal;
    color: #101010;
  }

  #header .header-nav ul.header-nav__menu li.has-submenu .sub-menu li a:hover {
    background-color: white;
  }

  #header .header-nav .mobile-modal-content {
    display: block;
    padding: 30px 20px;
  }

  #header .header-nav .mobile-modal-content .modal-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 10px;
    max-width: none;
  }

  #header .header-nav .mobile-modal-content .modal-block p {
    font-size: 1.6rem;
    font-weight: bold;
  }

  #header .header-nav .mobile-modal-content .modal-block p::after {
    bottom: -15px;
  }

  #header .header-nav .mobile-modal-content .mobile-search-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-right: 20px;
  }

  #header .header-nav .mobile-modal-content .mobile-search-area input[type=text] {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    font-size: 1.6rem;
    outline: none;
    background-color: white;
    color: #101010;
  }

  #header .header-nav .mobile-modal-content .mobile-search-area input[type=text]::-moz-placeholder {
    color: #A5A5A5;
  }

  #header .header-nav .mobile-modal-content .mobile-search-area input[type=text]::placeholder {
    color: #A5A5A5;
  }

  #header .header-nav .mobile-modal-content .mobile-search-area .mobile-search-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: -40px;
  }

  #header .header-nav .mobile-modal-content .mobile-search-area .mobile-search-button img {
    width: 25px;
    height: 25px;
    display: block;
  }

  #header .header-nav .mobile-modal-content .category-list {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 15px;
    max-width: none;
    margin-bottom: 20px;
  }

  #header .header-nav .mobile-modal-content .category-list li {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #header .header-nav .mobile-modal-content .category-list li a {
    display: inline-block;
    padding: 16px 15px;
    text-decoration: none;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    color: #003775;
  }

  #header .header-nav .mobile-modal-content .category-list li a:hover,
  #header .header-nav .mobile-modal-content .category-list li a:focus {
    background: #eee;
  }

  #header .modal-overlay.desktop-only-modal {
    display: none !important;
  }

  #header .nav-button {
    display: block;
    z-index: 1001;
    margin-left: 20px;
  }
}

.concept-section .concept-content-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  margin-top: 200px;
}

@media (max-width: 500px) {
  body {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  .wrapper {
    width: 95%;
  }

  .content-wrapper {
    background: url("../img/sp_bg-img.webp") no-repeat center top;
    background-size: cover;
    padding-top: 80px;
  }

  .w_inner {
    margin: 20px auto 0;
    font-size: 12px;
  }

  /* --- ファーストビュー（メインビジュアル）セクションのモバイル対応 --- */
  .main-visual-section {
    padding: 0;
  }

  .carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .carousel-item {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  .carousel-item img{
    width: 100%;
  }

  .carousel-track {
    width: 100%;
    justify-content: flex-start;
  }

  .carousel-indicators {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }

  .carousel-indicators .indicator {
    width: 20px;
    height: 3px;
  }

  /* --- コンセプト・記事セクション・セミナー --- */
  .section-inner,
  .section-inner-concept {
    width: 100%;
    margin: 0 auto;
  }

  .section-inner h2,
  .section-inner-concept h2,
  .seminar-section-inner h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .section-inner h2 .section-subtitle,
  .section-inner-concept h2 .section-subtitle,
  .seminar-section-inner h2 .section-subtitle{
    display: block;
    font-size: 1.4rem;
    margin-left: 8px;
    margin-top: 8px;
  }

  .section-inner-concept {
    padding: 0;
  }

  .concept-section {
    padding: 50px 0 40px 0;
  }

  .concept-section::before {
    font-size: 5rem;
    top: 10px;
  }

  .concept-section h2 {
    font-size: 3rem;
  }

  .concept-section .concept-main-block {
    width: 90%;
    text-align: center;
  }

  .concept-section img {
    max-width: 90%;
  }

  .concept-section .concept-content-wrapper {
    margin-top: 140px;
    margin-bottom: 80px;
  }

  .concept-section .concept-content-wrapper .concept-area {
    width: 85%;
  }

  .concept-section .concept-content-wrapper .concept-area .concept-text-area {
    width: 100%;
    margin: 0 20px 0 20px;
    display: flex;
    justify-content: center;
    transform: translateY(35px);
    gap: 80px;
  }

  .concept-section .concept-content-wrapper .concept-area .concept-headline {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }

  .concept-section .concept-content-wrapper .concept-area .concept-headline span {
    font-size: 2rem;
  }

  .concept-section .concept-content-wrapper .concept-area .concept-subheadline {
    display: none;
  }

  .concept-section .concept-content-wrapper .concept-area p {
    font-size: 1.6rem;
  }

  .concept-section .concept-content-wrapper .concept-area .btn-readmore {
    text-align: left;
    display: inline-flex;
    gap: 5px;
    transition: background-color 0.3s;
    align-items: center;
    justify-content: center;
  }

  .concept-section .concept-content-wrapper .concept-area .btn-readmore img {
    vertical-align: middle;
  }
}

@media (max-width: 500px) and (max-width: 500px) {
  .concept-section .concept-content-wrapper .concept-area .btn-readmore img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 500px) {
  .concept-section .concept-content-wrapper .concept-area .btn-readmore p {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {

  .articles-section,
  .popular-articles-section {
    padding-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .category-article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

@media (max-width: 500px) {
  .article-card .article-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 500px) {
  .btn-all-articles {
    position: relative;
    display: block;
    width: 90%;
    margin: 30px auto 0;
    padding: 15px 40px;
  }
}

@media (max-width: 500px) {
  .seminar-section {
    background-color: #E3ECFF;
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 24px 0 12px 0;
  }

  .site-footer .footer-logo-area .footer-logo {
    width: 120px;
  }

  .site-footer .footer-links {
    flex-wrap: wrap;
    gap: 8px 0;
    justify-content: center;
  }

  .site-footer .footer-links li {
    flex: 1 1 40%;
    text-align: center;
  }

  .site-footer .footer-links li:nth-child(3) {
    flex-basis: 100%;
    order: 2;
    margin-top: 4px;
  }

  .site-footer .footer-links li:nth-child(1),
  .site-footer .footer-links li:nth-child(2) {
    order: 1;
  }

  .site-footer .footer-copyright {
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  .concept-section-inner h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .concept-section-inner h2 .section-subtitle {
    display: block;
    font-size: 1.4rem;
    margin-left: 8px;
    margin-top: 8px;
  }
}

@media (max-width: 500px) {
  .concept-page {
    padding: 0;
  }
}

@media (max-width: 500px) {
  .concept-page_subtitle {
    font-size: 1.8rem;
    margin: 24px 0 60px 0;
  }
}

@media (max-width: 500px) {
  .concept-page_features .concept-page_features-title {
    font-size: 1.8rem;
  }

  .concept-page_features .concept-page_features-subtitle {
    font-size: 1.6rem;
  }
  .concept-section .section-inner-concept .concept-content-wrapper {
    margin-top: 200px;
  }
}

@media (max-width: 500px) {
  .pagination {
    margin-top: 40px;
  }

  .pagination .nav-links {
    gap: 4px;
  }

  .pagination .nav-links a,
  .pagination .nav-links span {
    width: 32px;
    height: 32px;
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {

  .articles-latest-page,
  .articles-popular-page,
  .seminar-page {
    padding: 0 0 60px 0;
  }
}

@media (max-width: 500px) {
  .seminar-page_past-wrapper {
    padding-bottom: 100px;
  }

  .seminar-page_past-wrapper .seminar-page_subtitle {
    font-size: 16px;
  }

  .seminar-page_past-wrapper .seminar-page_subtitle::before {
    height: 8px;
    width: 8px;
  }
}

@media (max-width: 500px) {
  .seminar-page_upcoming-wrapper .seminar-page_subtitle {
    font-size: 16px;
  }

  .seminar-page_upcoming-wrapper .seminar-page_subtitle::before {
    height: 8px;
    width: 8px;
  }
}
.seminar-page .section-inner .seminar-page_subtitle {
  font-size: 1.6rem;
}
.seminar-page .section-inner .seminar-page_subtitle::before {
  height: 8px;
  width: 8px;
}

.detail-page_wrapper .post-categories li{
  font-size: 1.4rem;
}


@media (max-width: 500px) {
  .detail-section-inner h2 {
    font-size: 2.4rem;
    margin-bottom: 8px;
  }

  .detail-section-inner h2 .section-subtitle {
    display: block;
    font-size: 1.4rem;
    margin-left: 8px;
    margin-top: 8px;
  }

  .detail-page {
    padding: 40px 0;
    text-align: center;
  }

  .detail-page_wrapper {
    margin: 40px 0;
  }
}

@media (max-width: 500px) {
  .concept-page {
    padding: 0;
  }
}

@media (max-width: 500px) {
  .detail-page_title {
    font-size: 1.6rem;
    margin: 16px 0 32px 0;
  }
}

@media (max-width: 500px) {
  .detail-page_wrapper .detail-page_wrapper-category {
    margin-bottom: 28px;
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
  }

  .detail-page_wrapper .detail-page_subtitle {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .detail-page_wrapper .detail-page_content {
    margin-bottom: 32px;
  }

  .detail-page_wrapper .detail-page_wrapper-auther {
    margin-bottom: 16px;
    display: flex;
    gap: 20px;
  }

  .detail-page_wrapper .detail-page_interview-content .detail-page_content-title {
    padding: 8px 8px;
    background-color: #003775;
    color: #FDFDFD;
    margin: 32px 0;
    font-weight: bold;
    font-size: 1.8rem;
  }

  .detail-page_wrapper .detail-page_interview-content .detail-page_interview-wrapper .detail-page_content-interview {
    font-size: 1.6rem;
  }

  .detail-page_wrapper .detail-page_profile .detail-page_profile-title {
    font-size: 3rem;
    margin-bottom: 16px;
  }

  .detail-page_wrapper .detail-page_profile {
    padding: 16px;
    border: 1px solid #101010;
  }

  .detail-page_wrapper .detail-page_profile .detail-page_profile-auther-wrapper {
    margin-bottom: 16px;
  }

  .detail-page_profile-auther-post, .detail-page_profile-auther-name {
    font-size: 1.4rem;
  }
}

@media (max-width: 500px) {
  .contact-page {
    padding-top: 0;
  }
}

@media (max-width: 500px) {
  #contact {
    margin-bottom: 40px;
  }
}

@media (max-width: 500px) {
  .contact-form {
    padding: 20px 0;
  }

  .contact-form .submit-group .submit-button {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  .contact-form .name-group,
  .contact-form .kana-group {
    flex-direction: column;
    gap: 0;
  }

  .contact-form .submit-group .submit-button {
    width: 80%;
    padding: 12px;
    font-size: 1.6rem;
  }
}

@media (max-width: 500px) {
  .form-group {
    margin: 0 auto;
  }

  .form-group.name-group .name-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .form-group.name-group .name-wrapper .name-item {
    flex: 1;
    min-width: 0;
  }

  .form-group.name-group .name-wrapper .name-item input,
  .form-group.name-group .name-wrapper .name-item textarea {
    width: 100%;
  }

  .form-group.kana-group .name-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .form-group.kana-group .name-wrapper .name-item {
    flex: 1;
    min-width: 0;
  }

  .form-group.kana-group .name-wrapper .name-item input,
  .form-group.kana-group .name-wrapper .name-item textarea {
    width: 100%;
  }
}

/* --- サンクスページ --- */

.thanks-page .thanks-page-inner .main-title {
  font-size: 2rem;
  position: relative;
  display: inline-block;
}


/*# sourceMappingURL=style.css.map */