@charset "UTF-8";
/* @font-face でローカルフォントを優先 */
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}
html {
  scroll-behavior: smooth;
}

body {
  color: #2f2f2f;
  font: 400 16px/1.6 "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

@media (any-hover: hover) {
  a,
  [type=submit] {
    transition: 0.2s;
  }
  a:hover,
  [type=submit]:hover {
    opacity: 0.7;
  }
}
.header {
  display: flex;
  height: 108px;
  width: 100%;
  box-shadow: 0 0 10px rgba(102, 102, 102, 0.3019607843);
}
@media screen and (max-width: 1024px) {
  .header {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    height: 72px;
    box-shadow: 0 0 5px rgba(102, 102, 102, 0.3019607843);
  }
}
.header .logo a {
  display: block;
  margin-inline: 1.5rem;
  margin-top: 1.375rem;
}
@media screen and (max-width: 1024px) {
  .header .logo a {
    margin-inline: 1rem;
    margin-top: 1rem;
  }
}
.header .logo a img {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .header .logo a img {
    height: 40px;
  }
}
.header .nav {
  background-color: #0033cc;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) {
  .header .nav .main-nav {
    display: flex;
    width: 100%;
  }
  .header .nav .main-nav li {
    flex-grow: 1;
    text-align: center;
  }
  .header .nav .main-nav li:not(:last-child) {
    border-right: 1px solid #6680cc;
  }
  .header .nav .main-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    line-height: 34px;
  }
  .header .nav .sub-nav {
    display: flex;
    flex-shrink: 0;
  }
  .header .nav .sub-nav li {
    padding-inline: 1rem;
  }
  .header .nav .sub-nav li:first-child {
    border-right: 1px solid #6680cc;
  }
  .header .nav .sub-nav li a {
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 34px;
  }
  .header .nav .sub-nav li a.contact {
    position: relative;
    padding-left: 28px;
  }
  .header .nav .sub-nav li a.contact:before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    top: 0;
    left: 0;
    -webkit-mask-image: url(../images/mail.svg);
            mask-image: url(../images/mail.svg);
    background-color: currentColor;
  }
}
@media screen and (max-width: 1024px) {
  .header .nav {
    width: -moz-fit-content;
    width: fit-content;
  }
  .header .nav .main-nav,
  .header .nav .sub-nav, .header .nav > .search-box {
    display: none;
  }
}
.header .nav .search-box {
  position: relative;
}
.header .nav .search-box input {
  background-color: #fff;
  padding-inline: 0.5rem 2rem;
  height: 34px;
  width: 174px;
}
.header .nav .search-box input::-moz-placeholder {
  color: #666;
}
.header .nav .search-box input::placeholder {
  color: #666;
}
.header .nav .search-box button {
  -webkit-mask-image: url(../images/search.svg);
          mask-image: url(../images/search.svg);
  background-color: #666;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 0;
}
.header .nav .outer-menu {
  margin-inline: 1rem 1.5rem;
  position: relative;
  min-width: 58px;
  height: 58px;
}
@media screen and (max-width: 1024px) {
  .header .nav .outer-menu {
    min-width: 40px;
    height: 40px;
    margin-inline: 1rem;
  }
}
.header .nav .outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  cursor: pointer;
  width: 58px;
  height: 58px;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 1024px) {
  .header .nav .outer-menu .checkbox-toggle {
    width: 40px;
    height: 40px;
  }
}
@media (any-hover: hover) {
  .header .nav .outer-menu .checkbox-toggle:hover + .hamburger {
    opacity: 0.7;
  }
}
.header .nav .outer-menu .checkbox-toggle:checked + .hamburger:before, .header .nav .outer-menu .checkbox-toggle:checked + .hamburger:after {
  top: 20px;
  width: 32px;
}
@media screen and (max-width: 1024px) {
  .header .nav .outer-menu .checkbox-toggle:checked + .hamburger:before, .header .nav .outer-menu .checkbox-toggle:checked + .hamburger:after {
    top: 14px;
    width: 16px;
  }
}
.header .nav .outer-menu .checkbox-toggle:checked + .hamburger:before {
  transform: rotate(135deg);
}
.header .nav .outer-menu .checkbox-toggle:checked + .hamburger:after {
  transform: rotate(-135deg);
}
.header .nav .outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.header .nav .outer-menu .checkbox-toggle:checked ~ .menu > div {
  transition-duration: 0.75s;
}
.header .nav .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.3s;
}
.header .nav .outer-menu .hamburger {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 58px;
  height: 58px;
  cursor: pointer;
  backface-visibility: hidden;
}
.header .nav .outer-menu .hamburger:before, .header .nav .outer-menu .hamburger:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background: #0033cc;
  transition: all 0.4s ease;
}
.header .nav .outer-menu .hamburger:before {
  top: 12px;
}
.header .nav .outer-menu .hamburger:after {
  top: 25px;
}
.header .nav .outer-menu .hamburger span {
  color: #0033cc;
  font-size: 0.85rem;
  font-weight: 700;
  display: block;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .header .nav .outer-menu .hamburger {
    width: 40px;
    height: 40px;
  }
  .header .nav .outer-menu .hamburger:before, .header .nav .outer-menu .hamburger:after {
    width: 24px;
  }
  .header .nav .outer-menu .hamburger:before {
    top: 8px;
  }
  .header .nav .outer-menu .hamburger:after {
    top: 17px;
  }
  .header .nav .outer-menu .hamburger span {
    font-size: 0.625rem;
    letter-spacing: 0;
    margin-top: 1.25rem;
  }
}
.header .nav .outer-menu .menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.header .nav .outer-menu .menu > div {
  width: 100vw;
  height: 100vw;
  background: #111;
  transition: all 0.4s ease;
  flex: none;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 480px) {
  .header .nav .outer-menu .menu > div {
    width: 100svh;
    height: 100svh;
  }
}
.header .nav .outer-menu .menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .nav .outer-menu .menu > div > div > ul {
  padding: 0 1rem;
  display: block;
  max-height: 100vh;
}
.header .nav .outer-menu .menu > div > div > ul > li {
  margin: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}
.header .nav .outer-menu .menu > div > div > ul > li > a {
  color: #fff;
  position: relative;
  display: inline;
}
.header .nav .outer-menu .menu > div > div > ul > li .search-box input {
  width: 400px;
}
@media screen and (max-width: 480px) {
  .header .nav .outer-menu .menu > div > div > ul > li .search-box input {
    width: 200px;
  }
}

.container {
  display: grid;
  grid-template-columns: 1fr 270px;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "main sidebar" "footer sidebar";
  max-width: 1446px;
  margin-inline: auto;
}
@media screen and (min-width: 1025px) {
  .container {
    -moz-column-gap: 3rem;
         column-gap: 3rem;
    row-gap: 3rem;
  }
}
@media screen and (max-width: 1500px) {
  .container {
    margin-inline: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
    grid-template-areas: "main" "sidebar" "footer";
    row-gap: 1.5rem;
    margin-inline: 0;
  }
}
@media screen and (max-width: 480px) {
  .container {
    row-gap: 1rem;
  }
}
.container .main {
  grid-area: main;
  margin-top: 2rem;
}
@media screen and (max-width: 1024px) {
  .container .main {
    margin-inline: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .container .main {
    margin-inline: 1rem;
    margin-top: 1rem;
  }
}
.container .aside {
  grid-area: sidebar;
  background-color: #f9f9f9;
  border-left: 2px solid #f5f5f5;
  border-right: 2px solid #f5f5f5;
  padding: 2rem 1.875rem;
}
@media screen and (max-width: 1024px) {
  .container .aside {
    border-top: 2px solid #f5f5f5;
    border-bottom: 2px solid #f5f5f5;
    margin-inline: 1.5rem;
    padding: 2rem 4% 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .container .aside {
    margin-inline: 1rem;
    padding: 1rem 1rem 0.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .container .aside .sidebnr {
    display: flex;
    flex-wrap: wrap;
    gap: 0 4%;
  }
}
.container .aside .sidebnr li {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .container .aside .sidebnr li {
    width: 22%;
  }
}
@media screen and (max-width: 480px) {
  .container .aside .sidebnr li {
    width: 48%;
  }
}
.container .aside .sidebnr li a {
  color: #2f2f2f;
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  font-weight: 700;
  display: block;
}
@media (any-hover: hover) {
  .container .aside .sidebnr li a:hover {
    color: #0033cc;
  }
}
.container .aside .sidebnr li a img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.25rem;
}
.container .aside .sidemenu a {
  color: #2f2f2f;
}
@media (any-hover: hover) {
  .container .aside .sidemenu a:hover {
    color: #0033cc;
  }
}
.container .aside .sidemenu .archiveList-dt {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d7d7d7;
  padding-bottom: 0.25rem;
}
@media screen and (max-width: 1024px) {
  .container .aside .sidemenu .archiveList-dt {
    margin-bottom: 1rem;
  }
}
.container .aside .sidemenu .archiveList-dd {
  margin-bottom: 2.5rem;
}
.container .aside .sidemenu .archiveList-dd .list-parent {
  border-top: 2px dotted #bbb;
  padding-top: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  .container .aside .sidemenu .archiveList-dd .main-list:not(.iinkai) {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.container .aside .sidemenu .archiveList-dd .main-list > li {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  padding-left: 1.125rem;
  position: relative;
}
.container .aside .sidemenu .archiveList-dd .main-list > li:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  height: 18px;
  width: 18px;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #0033cc;
}
.container .aside .sidemenu .archiveList-dd .sub-list {
  margin-bottom: 0.5rem;
}
.container .aside .sidemenu .archiveList-dd .sub-list li {
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
  font-weight: 400;
  padding-left: 1rem;
  margin-top: 0.25rem;
}
.container .footer {
  grid-area: footer;
  background-color: #eaeaea;
  display: grid;
  grid-template-columns: auto auto auto auto 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "main1 main2 main3 main4 sub" "name name name name name";
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  padding: 1.5rem 2.5rem 2.5rem;
  align-self: end;
}
@media screen and (min-width: 1025px) {
  .container .footer {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  .container .footer {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .container .footer {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: repeat(4, auto);
    grid-template-areas: "main1 main2 sub" "main1 main3 sub" "main1 main4 sub" "name name name";
    row-gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .container .footer {
    grid-template-columns: auto auto;
    grid-template-rows: repeat(5, auto);
    grid-template-areas: "main1 main2" "main1 main3" "main1 main4" "sub sub" "name name";
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    padding: 1.5rem 1rem;
  }
}
.container .footer .link-list1 {
  grid-area: main1;
}
.container .footer .link-list2 {
  grid-area: main2;
}
.container .footer .link-list3 {
  grid-area: main3;
}
.container .footer .link-list4 {
  grid-area: main4;
}
.container .footer .link-list1 .title,
.container .footer .link-list2 .title,
.container .footer .link-list3 .title,
.container .footer .link-list4 .title {
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  .container .footer .link-list1 .title,
  .container .footer .link-list2 .title,
  .container .footer .link-list3 .title,
  .container .footer .link-list4 .title {
    margin-bottom: 0.5rem;
  }
}
.container .footer .link-list1 li,
.container .footer .link-list2 li,
.container .footer .link-list3 li,
.container .footer .link-list4 li {
  margin-bottom: 2px;
}
.container .footer .link-list1 li a,
.container .footer .link-list2 li a,
.container .footer .link-list3 li a,
.container .footer .link-list4 li a {
  color: #2f2f2f;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  .container .footer .link-list1 li a,
  .container .footer .link-list2 li a,
  .container .footer .link-list3 li a,
  .container .footer .link-list4 li a {
    display: inline-block;
  }
}
.container .footer .link-list1 li a:before,
.container .footer .link-list2 li a:before,
.container .footer .link-list3 li a:before,
.container .footer .link-list4 li a:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  height: 18px;
  width: 18px;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #0033cc;
}
.container .footer .link-list-sub {
  grid-area: sub;
  justify-items: end;
}
@media screen and (max-width: 480px) {
  .container .footer .link-list-sub {
    justify-items: flex-start;
  }
  .container .footer .link-list-sub ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.container .footer .link-list-sub li {
  margin-bottom: 0.6125rem;
}
@media screen and (max-width: 480px) {
  .container .footer .link-list-sub li {
    margin-bottom: 0;
  }
}
.container .footer .link-list-sub li a {
  color: #2f2f2f;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  text-decoration: underline;
}
.container .footer .association {
  grid-area: name;
  border-top: 1px solid #bbb;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}
.container .footer .association address {
  color: #666;
  font-style: normal;
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
@media screen and (max-width: 820px) {
  .container .footer .association address {
    gap: 0.5rem;
    flex-direction: column;
  }
}
.container .footer .association address .official-name {
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  font-weight: 700;
}
.container .footer .association address .address {
  font-size: clamp(0.625rem, 0.554rem + 0.36vw, 0.875rem);
}
.container .footer .association address .address a {
  color: #666;
}
.container .footer .association small {
  color: #666;
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
}
@media screen and (max-width: 480px) {
  .container .footer .association small {
    display: inline-block;
    margin-top: 0.5rem;
  }
}

.page-title {
  font-size: clamp(1.25rem, 1.108rem + 0.71vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section {
  margin-bottom: 5rem;
}
@media screen and (max-width: 480px) {
  .section {
    margin-bottom: 4rem;
  }
}

.section-title {
  background-color: #eaeaea;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #d7d7d7;
  font-size: clamp(1rem, 0.893rem + 0.54vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding: 0 1.25rem 2px;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .section-title {
    padding-inline: 0.875rem;
  }
}
.section-title:before {
  position: absolute;
  content: "";
  height: calc(100% + 2px);
  width: 4px;
  background-color: #0033cc;
  left: 0;
  top: -1px;
}

.btns {
  display: flex;
  justify-content: center;
}

.btn {
  font-weight: 700;
  display: block;
  text-align: center;
  position: relative;
}
.btn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.btn.apply {
  color: #fff;
  background-color: #0033cc;
}
.btn.apply:after {
  -webkit-mask-image: url(../images/newtab.svg);
          mask-image: url(../images/newtab.svg);
  height: 24px;
  width: 24px;
  background-color: currentColor;
  right: 8px;
}
.btn.detail {
  color: #0033cc;
  background-color: #fff;
  border: 1px solid currentColor;
}
.btn.detail:after {
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  height: 24px;
  width: 24px;
  background-color: currentColor;
  right: 0;
}

.no-entry {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  margin-bottom: 1.5rem;
}

.seminar-accepting {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .seminar-accepting {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .seminar-accepting {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.seminar-accepting + .seminar-accepting {
  margin-top: 3.5rem;
}
@media screen and (max-width: 480px) {
  .seminar-accepting + .seminar-accepting {
    margin-top: 2.5rem;
  }
}
.seminar-accepting .thumb {
  display: block;
  border: 1px solid #bbb;
  aspect-ratio: 16/9;
  max-width: 540px;
  overflow: hidden;
  align-self: flex-start;
}
.seminar-accepting .thumb img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .seminar-accepting .thumb {
    max-width: 340px;
  }
}
@media screen and (max-width: 480px) {
  .seminar-accepting .thumb {
    max-width: 100%;
  }
}
.seminar-accepting .info {
  width: calc(100% - 540px);
}
@media screen and (max-width: 1024px) {
  .seminar-accepting .info {
    width: calc(100% - 340px);
  }
}
@media screen and (max-width: 480px) {
  .seminar-accepting .info {
    width: 100%;
  }
}
.seminar-accepting .info .title {
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  font-weight: 700;
  margin-block: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .seminar-accepting .info .title {
    margin-top: 0;
  }
}
.seminar-accepting .info .title a {
  color: #2f2f2f;
}
@media (any-hover: hover) {
  .seminar-accepting .info .title a:hover {
    color: #0033cc;
  }
}
.seminar-accepting .info .release-date {
  color: #666;
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
  font-weight: 700;
}
.seminar-accepting .info .summary {
  font-size: clamp(0.75rem, 0.697rem + 0.27vw, 0.938rem);
  margin-top: 0.5rem;
}
.seminar-accepting .info .btns {
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 480px) {
  .seminar-accepting .info .btns {
    gap: 0.5rem;
    margin-top: 0.875rem;
  }
}
.seminar-accepting .info .btns li {
  flex-grow: 1;
}
.seminar-accepting .info .btns li .btn {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  height: 40px;
  padding: 0.5rem;
}
@media screen and (max-width: 820px) {
  .seminar-accepting .info .btns li .btn {
    height: 36px;
  }
}

.thumb-list + .thumb-list {
  margin-top: 3rem;
}
@media screen and (max-width: 820px) {
  .thumb-list + .thumb-list {
    margin-top: 2rem;
  }
}
.thumb-list + .archives {
  margin-top: 3rem;
}
.thumb-list a {
  display: flex;
  gap: 1.5rem;
  color: #2f2f2f;
}
@media (any-hover: hover) {
  .thumb-list a:hover {
    color: #0033cc;
  }
}
@media screen and (max-width: 820px) {
  .thumb-list a {
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .thumb-list a {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.thumb-list a .thumb {
  display: block;
  border: 1px solid #bbb;
  aspect-ratio: 16/9;
  overflow: hidden;
  align-self: flex-start;
  max-width: 260px;
}
@media screen and (max-width: 480px) {
  .thumb-list a .thumb {
    max-width: 100%;
  }
}
.thumb-list a .thumb img {
  max-width: 100%;
  height: auto;
}
.thumb-list a .info {
  width: calc(100% - 260px);
}
@media screen and (max-width: 480px) {
  .thumb-list a .info {
    width: 100%;
  }
}
.thumb-list a .info .title {
  font-size: clamp(0.875rem, 0.768rem + 0.54vw, 1.25rem);
  font-weight: 700;
  margin-block: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .thumb-list a .info .title {
    margin-top: 0;
  }
}
.thumb-list a .info .summary {
  font-size: clamp(0.75rem, 0.697rem + 0.27vw, 0.938rem);
  margin-top: 0.5rem;
}

@media screen and (max-width: 480px) {
  .thumb-mini a {
    flex-direction: inherit;
    gap: 1rem;
  }
}
.thumb-mini a .thumb {
  display: grid;
  place-content: center;
  max-width: 150px;
  min-width: 150px;
}
@media screen and (max-width: 480px) {
  .thumb-mini a .thumb {
    min-width: 80px;
    max-width: 80px;
  }
}
.thumb-mini a .info {
  width: calc(100% - 150px);
}
@media screen and (max-width: 480px) {
  .thumb-mini a .info {
    width: calc(100% - 80px);
  }
}
.thumb-mini a .info .date {
  color: #fff;
  text-align: center;
  background-color: #0033cc;
  display: block;
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
  font-weight: 700;
  padding-block: 3px 4px;
  width: 6rem;
}
@media screen and (max-width: 1024px) {
  .thumb-mini a .info .date {
    margin-bottom: 0.5rem;
  }
}
.thumb-mini a .info .file-size {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
}

.section-title-container {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 480px) {
  .section-title-container {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.5rem;
  }
}
.section-title-container .section-title {
  flex-grow: 1;
}
@media screen and (max-width: 480px) {
  .section-title-container .section-title {
    margin-bottom: 0.5rem;
  }
}
.section-title-container .channel {
  color: #2f2f2f;
  background-color: #fff;
  border: 1px solid #e60412;
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  height: 40px;
  padding: 0.5rem 1.5rem 0.5rem 3.625rem;
}
.section-title-container .channel:after {
  background-image: url(../images/youtube.svg);
  height: 20px;
  width: 28px;
  left: 1.5rem;
}
@media screen and (max-width: 480px) {
  .section-title-container .channel {
    height: 36px;
    width: -moz-fit-content;
    width: fit-content;
    align-self: center;
  }
}

.seminar-archive-container .col3 {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1024px) {
  .seminar-archive-container .col3 {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .seminar-archive-container .col3 {
    gap: 2.5rem;
    flex-direction: column;
    margin-bottom: 2.5rem;
  }
}
.seminar-archive-container .col3 .seminar-archive {
  width: 33%;
}
@media screen and (max-width: 480px) {
  .seminar-archive-container .col3 .seminar-archive {
    width: 100%;
  }
}
.seminar-archive-container .col3 .seminar-archive .thumb {
  display: block;
  border: 1px solid #bbb;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.seminar-archive-container .col3 .seminar-archive .thumb img {
  max-width: 100%;
  height: auto;
}
.seminar-archive-container .col3 .seminar-archive .thumb.youtube {
  position: relative;
}
.seminar-archive-container .col3 .seminar-archive .thumb.youtube:after {
  content: "";
  background-image: url(../images/youtube.svg);
  position: absolute;
  height: 50px;
  width: 71px;
  inset: 0;
  margin: auto;
}
.seminar-archive-container .col3 .seminar-archive .title {
  margin-block: 0.5rem 1.125rem;
}
@media screen and (max-width: 480px) {
  .seminar-archive-container .col3 .seminar-archive .title {
    margin-bottom: 0.875rem;
  }
}
.seminar-archive-container .col3 .seminar-archive .btn {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  height: 40px;
  padding: 0.5rem;
}
@media screen and (max-width: 820px) {
  .seminar-archive-container .col3 .seminar-archive .btn {
    height: 36px;
  }
}
@media screen and (max-width: 480px) {
  .seminar-archive-container .col3 .seminar-archive .btn {
    width: calc(50% - 0.25rem);
    margin-inline: auto;
  }
}
.seminar-archive-container .title {
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
}
.seminar-archive-container .title a {
  color: #2f2f2f;
}
@media (any-hover: hover) {
  .seminar-archive-container .title a:hover {
    color: #0033cc;
  }
}
@media (any-hover: hover) {
  .seminar-archive-container .title a.youtube:hover {
    color: #e60412;
  }
}
.seminar-archive-container .col1 {
  border-bottom: 1px solid #bbb;
  margin-bottom: 2rem;
}
.seminar-archive-container .col1 .seminar-archive {
  padding: 1.125rem 1rem 1.35rem;
  border-top: 1px solid #bbb;
}
@media screen and (max-width: 820px) {
  .seminar-archive-container .col1 .seminar-archive {
    padding-inline: 0.5rem;
  }
}
.seminar-archive-container .col1 .seminar-archive .title {
  display: inline;
  margin-right: 0.5rem;
}
.seminar-archive-container .col1 .seminar-archive .btns {
  display: inline-flex;
  gap: 0.5rem;
}
.seminar-archive-container .col1 .seminar-archive .btns .btn {
  font-size: 0.75rem;
}
.seminar-archive-container .col1 .seminar-archive .btns .detail {
  padding: 2px 2.5rem 4px 1.5rem;
}
.seminar-archive-container .col1 .seminar-archive .btns .detail:after {
  height: 16px;
  width: 16px;
  -webkit-mask-size: cover;
          mask-size: cover;
  right: 1.25rem;
}
.seminar-archive-container .col1 .seminar-archive .btns .youtube {
  color: #2f2f2f;
  border: 1px solid #e60412;
  padding: 2px 1.5rem 4px 3rem;
}
.seminar-archive-container .col1 .seminar-archive .btns .youtube:after {
  background-image: url(../images/youtube.svg);
  height: 14px;
  width: 20px;
  left: 1.5rem;
}

.btn.seminar {
  width: 400px;
  margin-inline: auto;
}
@media screen and (max-width: 820px) {
  .btn.seminar {
    width: calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 480px) {
  .btn.seminar {
    width: 80%;
  }
}

.archives a {
  color: #fff;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  padding: 0.875rem;
}
.archives a:after {
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  height: 24px;
  width: 24px;
  background-color: currentColor;
  right: 0;
}
.archives .seminar,
.archives .news {
  background-color: #0033cc;
}
.archives .keyperson {
  background-color: #666;
}

.news-container .news-list {
  border-bottom: 1px solid #bbb;
  margin-bottom: 2rem;
}
.news-container .news-list .news-item {
  display: grid;
  grid-template-columns: 6em 10rem 1fr;
  padding: 1.125rem 1rem 1.35rem;
  border-top: 1px solid #bbb;
}
@media screen and (max-width: 820px) {
  .news-container .news-list .news-item {
    grid-template-columns: 5.5em 10rem 1fr;
    grid-template-rows: repeat(2, auto);
    padding-inline: 0.5rem;
  }
}
.news-container .news-list .news-item .date {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  font-weight: 700;
}
.news-container .news-list .news-item .tag {
  color: #fff;
  display: block;
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
  font-weight: 700;
  text-align: center;
  padding-block: 3px 4px;
  width: 100%;
  align-self: start;
}
.news-container .news-list .news-item .tag.news {
  background-color: #0033cc;
}
.news-container .news-list .news-item .tag.keyperson {
  background-color: #666;
}
.news-container .news-list .news-item .title {
  padding-left: 1rem;
  display: inline-grid;
}
@media screen and (max-width: 820px) {
  .news-container .news-list .news-item .title {
    padding-left: 0;
    grid-column: 1/4;
    grid-row: 2;
    margin-top: 0.5rem;
  }
}
.news-container .news-list .news-item .title a {
  color: #2f2f2f;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  width: -moz-fit-content;
  width: fit-content;
}
@media (any-hover: hover) {
  .news-container .news-list .news-item .title a:hover {
    color: #0033cc;
  }
}
.news-container .news-list .news-item .title a .author {
  display: block;
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  font-weight: 400;
}
.news-container .btns {
  gap: 1.5rem;
}
@media screen and (max-width: 820px) {
  .news-container .btns {
    gap: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .news-container .btns {
    flex-direction: column;
    align-items: center;
  }
}
.news-container .btns li {
  flex-grow: 1;
  max-width: 400px;
}
@media screen and (max-width: 820px) {
  .news-container .btns li {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .news-container .btns li {
    width: 80%;
  }
}

.list-container .cmn-list {
  border-bottom: 1px solid #bbb;
  margin-bottom: 2rem;
}
.list-container .cmn-list a {
  color: #2f2f2f;
}
@media (any-hover: hover) {
  .list-container .cmn-list a:hover {
    color: #0033cc;
  }
}
.list-container .cmn-list .cmn-item {
  padding: 1.125rem 1rem 1.35rem;
  border-top: 1px solid #bbb;
}
@media screen and (max-width: 820px) {
  .list-container .cmn-list .cmn-item {
    padding-inline: 0.5rem;
  }
}
.list-container .cmn-list .cmn-item .item-header {
  display: grid;
}
.list-container .cmn-list .cmn-item .item-header:not(.ayumi) {
  grid-template-columns: 6em 1fr;
}
.list-container .cmn-list .cmn-item .item-header:not(.ayumi) .date {
  color: #fff;
  text-align: center;
  background-color: #0033cc;
}
.list-container .cmn-list .cmn-item .item-header.ayumi {
  grid-template-columns: 6.5em 1fr;
}
.list-container .cmn-list .cmn-item .item-header .date {
  display: block;
  font-size: clamp(0.625rem, 0.589rem + 0.18vw, 0.75rem);
  font-weight: 700;
  padding-block: 3px 4px;
  width: 100%;
  align-self: start;
}
.list-container .cmn-list .cmn-item .item-header .title-wrapper {
  padding-left: 1rem;
}
.list-container .cmn-list .cmn-item .item-header .title-wrapper .title {
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
}
.list-container .cmn-list .cmn-item .item-header .title-wrapper .author {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}
.list-container .cmn-list .cmn-item .summary {
  font-size: clamp(0.75rem, 0.697rem + 0.27vw, 0.938rem);
  margin-top: 0.5rem;
}

.page-contents {
  margin-bottom: 2.5rem;
}
.page-contents a {
  color: #2f2f2f;
  text-decoration: underline;
}
.page-contents p {
  margin-block: 1rem;
}
.page-contents p:not(:has(:is(input, label, textarea, * input, * label, * textarea))) {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}
.page-contents p.notes {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
}
.page-contents h2,
.page-contents h3,
.page-contents h4,
.page-contents h5,
.page-contents h6 {
  margin-top: 2.5rem;
}
.page-contents h2 {
  background-color: #eaeaea;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #d7d7d7;
  font-size: clamp(1rem, 0.893rem + 0.54vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding: 0 1.25rem 2px;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .page-contents h2 {
    padding-inline: 0.875rem;
  }
}
.page-contents h2:before {
  position: absolute;
  content: "";
  height: calc(100% + 2px);
  width: 4px;
  background-color: #0033cc;
  left: 0;
  top: -1px;
}
.page-contents h3 {
  font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
  font-weight: 700;
  display: flex;
  margin-bottom: 1rem;
}
.page-contents h3:before {
  display: block;
  width: 1rem;
  height: 1rem;
  background: #0033cc;
  content: "";
  margin-right: 0.5rem;
  margin-top: 0.3em;
  flex-shrink: 0;
}
.page-contents h4 {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page-contents .indent {
  padding-left: 1rem;
}
.page-contents iframe[src*="youtube.com"] {
  max-width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  border: none;
  margin-inline: auto;
}
.page-contents #contactForm table,
.page-contents .a1 table {
  border: 1px solid #bbb;
  border-collapse: collapse;
  margin-bottom: 1rem;
}
.page-contents #contactForm table:not(:has(:is(input, label, textarea, * input, * label, * textarea))),
.page-contents .a1 table:not(:has(:is(input, label, textarea, * input, * label, * textarea))) {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}
.page-contents #contactForm table th,
.page-contents .a1 table th {
  background: #eaeaea;
  border: 1px solid #bbb;
  font-weight: 700;
  padding: 0.75em;
  text-align: left;
}
.page-contents #contactForm table td,
.page-contents .a1 table td {
  border: 1px solid #bbb;
  padding: 0.75em;
}
@media screen and (max-width: 480px) {
  .page-contents #contactForm table {
    border: none;
  }
  .page-contents #contactForm table tr {
    display: flex;
    flex-direction: column;
  }
  .page-contents #contactForm table th {
    padding: 0 0.75em;
    border-bottom: none;
  }
  .page-contents #contactForm table td {
    border-top: none;
  }
}

#contactForm table {
  margin: 2rem auto;
}
#contactForm table input,
#contactForm table textarea {
  border: 1px solid #2f2f2f;
  padding-inline: 0.5rem;
  width: 100%;
}
#contactForm table .red {
  color: #dc3232;
}
#contactForm .agree {
  text-align: center;
}

#loginform {
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 480px) {
  #loginform {
    width: 90%;
  }
}
#loginform + .login-psReset {
  text-align: center;
}
#loginform + .login-psReset a {
  font-size: 0.875rem;
}

.mypage_welcomeMsg {
  background-color: #eaeaea;
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 1rem;
}

.mypageNav .navList a {
  background-color: #0033cc;
  color: #fff;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  padding: 0.875rem;
  margin-bottom: 1.5rem;
  width: 80%;
  max-width: 400px;
  margin-inline: auto;
}
.mypageNav .navList a:after {
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  height: 24px;
  width: 24px;
  background-color: currentColor;
  right: 0;
}
.mypageNav .forAdmin a {
  border: 1px solid #0033cc;
  color: #0033cc;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
  padding: 0.875rem;
  display: block;
  text-align: center;
  width: 80%;
  max-width: 400px;
  margin-inline: auto;
}

.logout {
  margin-top: 2.5rem;
}

.error p {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#password-reset p {
  text-align: center;
}
@media screen and (max-width: 480px) {
  #password-reset #wp_pass_reset {
    width: 90%;
    margin-inline: auto;
  }
}
#password-reset #wp_pass_reset input[type=submit] {
  margin-top: 0;
}

#loginform input[type=text],
#loginform input[type=password],
#wp_pass_reset input[type=text],
#wp_pass_reset input[type=password],
.mailmagForm_wrapper input[type=text],
.mailmagForm_wrapper input[type=password],
.submit-button input[type=text],
.submit-button input[type=password] {
  border: 1px solid #2f2f2f;
  padding-inline: 0.5rem;
  width: 24em;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  #loginform input[type=text],
  #loginform input[type=password],
  #wp_pass_reset input[type=text],
  #wp_pass_reset input[type=password],
  .mailmagForm_wrapper input[type=text],
  .mailmagForm_wrapper input[type=password],
  .submit-button input[type=text],
  .submit-button input[type=password] {
    width: 100%;
  }
}
#loginform input[type=submit],
#wp_pass_reset input[type=submit],
.mailmagForm_wrapper input[type=submit],
.submit-button input[type=submit] {
  background-color: #0033cc;
  color: #fff;
  font-size: clamp(0.875rem, 0.804rem + 0.36vw, 1.125rem);
  font-weight: 700;
  padding: 0.875rem;
  text-align: center;
  width: 280px;
  margin-inline: auto;
  display: block;
  cursor: pointer;
  margin-top: 1.5rem;
}

.mailmagForm_wrapper table {
  margin-inline: auto;
}
@media screen and (max-width: 480px) {
  .mailmagForm_wrapper table {
    width: 90%;
  }
}

.member .memlistTbl {
  border: 1px solid #bbb;
  border-collapse: collapse;
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  margin-block: 1rem;
}
.member .memlistTbl tr {
  border: 1px solid #bbb;
}
.member .memlistTbl td {
  padding: 0.75em;
}
.member .memlistTbl td:first-of-type, .member .memlistTbl td.memlist02 {
  background-color: #eaeaea;
  border: 1px solid #bbb;
  font-weight: 700;
  text-align: right;
}
.member .memlistTbl td.memlist00 {
  background-color: #0033cc;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 0.5em;
}
.member .memlistTbl td.memlist00, .member .memlistTbl td.memlist01 {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}
.member .interview-container h3 {
  margin-top: 20px;
}
.member .interview-container h4,
.member .interview-container p {
  margin-top: 0;
}

.soshikizu_wrapper table {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .soshikizu_wrapper .soshikizu {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1rem;
  }
}
@media screen and (min-width: 481px) {
  .soshikizu_wrapper {
    overflow: hidden;
  }
  .soshikizu_wrapper .soshikizu {
    width: 670px;
    height: 453px;
    background: url(../images/soshikizu.png) no-repeat;
    margin-inline: auto;
  }
  .soshikizu_wrapper .soshikizu img {
    display: none;
  }
  .soshikizu_wrapper .memlist_Wrapper1,
  .soshikizu_wrapper .memlist_Wrapper2 {
    float: left;
  }
  .soshikizu_wrapper .memlist_Wrapper1 {
    margin-right: 3%;
    width: 55%;
  }
  .soshikizu_wrapper .memlist_Wrapper2 {
    width: 42%;
  }
}

.memberNav {
  padding-top: 1.5rem;
  margin-top: -1.5rem;
}
.memberNav a {
  font-weight: 700;
  margin-right: 0.5rem;
  color: #0033cc;
}

.member-kana-title {
  background-color: #0033cc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 2rem 1.5rem;
  padding: 0.5rem 0.875rem;
}
.member-kana-title h3 {
  color: #fff;
  margin-block: 0;
}
.member-kana-title h3:before {
  content: none;
}
.member-kana-title .goListTop {
  color: #0033cc;
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  font-weight: 700;
  background-color: #fff;
  padding-inline: 0.5rem;
  text-decoration: none;
}

.special_wrapper {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  margin-bottom: 3.5rem;
}
.special_wrapper li {
  margin-bottom: 1rem;
}

.member_list {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
  display: flex;
  gap: 1rem 2%;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.member_list li {
  width: 32%;
}
@media screen and (max-width: 480px) {
  .member_list li {
    width: 49%;
  }
}

.taxonomy-tag {
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}

.taglist {
  border-top: 2px solid #0033cc;
  border-bottom: 2px solid #0033cc;
  padding: 1rem;
  margin-block: 2rem;
}
.taglist a {
  color: #2f2f2f;
  text-decoration: underline;
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
}

.entry-title {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #eaeaea;
  outline: 1px solid #0033cc;
  outline-offset: -8px;
}
.entry-title .article-title {
  font-size: clamp(1.125rem, 1.018rem + 0.53vw, 1.5rem);
  font-weight: 700;
}
.entry-title .date {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  font-weight: 700;
  text-align: right;
  display: block;
}

.entry-content {
  padding-inline: 1.5rem;
}
@media screen and (max-width: 480px) {
  .entry-content {
    padding-inline: 0.5rem;
  }
}

.relatedposts li {
  font-size: clamp(0.75rem, 0.714rem + 0.18vw, 0.875rem);
  font-weight: 700;
  margin-bottom: 0.25rem;
  padding-left: 1.125rem;
  position: relative;
}
.relatedposts li:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  -webkit-mask-image: url(../images/arrow.svg);
          mask-image: url(../images/arrow.svg);
  height: 18px;
  width: 18px;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-color: #0033cc;
}
.relatedposts li a {
  color: #2f2f2f;
}

.dcupage_fileList {
  margin-top: 2.5rem;
}
.dcupage_fileList li {
  list-style: disc;
  margin-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: clamp(0.875rem, 0.839rem + 0.18vw, 1rem);
}

.pagination {
  margin-block: 2.5rem 2rem;
}
.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.pagination .page-numbers li .current {
  background-color: #bbb;
  font-weight: 700;
}
.pagination .page-numbers li a {
  color: #fff;
  background-color: #0033cc;
}
.pagination .page-numbers li .current,
.pagination .page-numbers li a {
  width: 2rem;
  height: 2rem;
  display: block;
  text-align: center;
  line-height: 1.875rem;
}/*# sourceMappingURL=main.css.map */