@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:opsz,wght@14..32,700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/earlyaccess/hannari.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

:root {
  --white: #FFFFFF;
  --black: #000;
  --navy: #004080;
  --blue: #0657CB;
  --light-blue: #2492D6;
  --blue-green: #02576F;
}

html {
  scroll-behavior: smooth;
  font-size: 0.8333333333vw;
}

@media (max-width: 1440px) {
  html {
    font-size: max(1.1111111111vw, 12px);
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 1.5625vw;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 2.0833333333vw;
  }
}

@media (max-width: 640px) {
  html {
    font-size: min(4.2666666667vw, 16px);
  }
}

body {
  background: #f8f8f8;
  color: var(--black);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

a {
  color: var(--black);
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(1.875rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(1.875rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.fadein {
  opacity: 0;
  transition: all 1s;
  transform: translateY(9.375rem);
}

@media (max-width: 768px) {
  .fadein {
    transform: translateY(5rem);
  }
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.svg {
  position: absolute;
  width: 0;
  height: 0;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-left: 2em;
  display: flex;
  align-items: flex-start;
  z-index: 99;
}

.header__logo {
  width: 17em;
  padding-top: 3em;
}

.header__nav {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.header__nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav ul li {
  position: relative;
}

.header__nav ul li.pcNone {
  display: none;
}

.header__nav ul ul li+li {
  border-top: 1px solid #000;
}

.header__nav ul li:has(ul)>a,
.header__nav ul li:has(ul)>span {
  position: relative;
}

.header__nav ul li:has(ul)>a::before,
.header__nav ul li:has(ul)>span::before {
  content: "";
  position: absolute;
  bottom: 0.5em;
  right: 50%;
  transform: translateX(50%);
  width: 0.75em;
  height: 1.075em;
  background-image: url("/ministry/images/icon/arrow_carrot_down--white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header__nav ul li>a,
.header__nav ul li>span {
  color: var(--white);
  font-size: 1.075em;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.header__nav ul li>a+ul,
.header__nav ul li>span+ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--white);
  z-index: 99;
  white-space: nowrap;
}

.header__nav ul li>a+ul li a,
.header__nav ul li>a+ul li span,
.header__nav ul li>span+ul li a,
.header__nav ul li>span+ul li span {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  flex-wrap: wrap;
  padding: 0.5rem 1rem;
}

.header__nav ul li>a .smoll,
.header__nav ul li>span .smoll {
  font-size: 0.75em;
  width: auto;
  height: auto;
  display: block;
  line-height: 1;
  position: relative;
  top: -0.75em;
}

.header__nav ul li.bg01 a,
.header__nav ul li.bg01 span {
  background: #065572;
}

.header__nav ul li.bg02 a,
.header__nav ul li.bg02 span {
  background: #058DBF;
}

.header__nav ul li.bg03 a,
.header__nav ul li.bg03 span {
  background: #E03F04;
}

.header__nav>ul>li>a,
.header__nav>ul>li>span {
  width: 8em;
  height: 5em;
  cursor: pointer;
}

Collaborative .header__sp-menu-button {
  display: none;
}

@media (max-width: 1440px) {
  .header {
    font-size: 0.875em;
  }

  .header__nav ul li>a,
  .header__nav ul li>span {
    font-size: 1.075em;
  }

  .header__nav>ul>li>a,
  .header__nav>ul>li>span {
    width: 8em;
  }
}

@media (max-width: 1280px) {

  .header__nav>ul>li>a,
  .header__nav>ul>li>span {
    width: 5em;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    white-space: nowrap;
    padding: 0.25rem;
  }
}

@media (max-width: 1024px) {
  .header {
    font-size: 0.75em;
  }

  .header__nav ul li>a,
  .header__nav ul li>span {
    font-size: 1.075em;
  }
}

@media (max-width: 768px) {
  .header {
    font-size: 1em;
    padding-inline: 3em;
    padding-top: 1.5em;
    justify-content: space-between;
    align-items: center;
  }

  .header__logo {
    width: 10em;
    padding-top: 0.75em;
    position: relative;
    z-index: 3;
  }

  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    padding-block: 5rem;
    transition: 0.7s;
    font-size: 1.5em;
    z-index: 99;
  }

  .header__nav.active {
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0.8);
  }

  .header__nav ul {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    height: auto;
    min-height: 100%;
  }

  .header__nav ul li.pcNone {
    display: block;
  }

  .header__nav ul li:has(ul) {
    position: relative;
  }

  .header__nav ul li:has(ul)>a,
  .header__nav ul li:has(ul)>span {
    position: relative;
  }

  .header__nav ul li:has(ul)>a::before,
  .header__nav ul li:has(ul)>span::before {
    content: "";
    position: absolute;
    top: 0.875em;
    right: -1em;
    transform: translateY(-50%);
    width: 0.5em;
    height: 0.5em;
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
    transform: translateY(-50%) rotate(45deg);
  }

  .header__nav ul li a,
  .header__nav ul li span {
    width: auto;
    height: auto;
    background: transparent !important;
    color: var(--white);
    font-size: 0.875em;
    font-weight: 400;
    flex-direction: column;
  }

  .header__nav ul li a+ul,
  .header__nav ul li span+ul {
    display: none;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    background: transparent;
    z-index: auto;
    transform: none;
    font-size: 0.875em;
  }

  .header__nav ul li a .smoll,
  .header__nav ul li span .smoll {
    top: 0;
  }

  .header__sp-menu-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    width: 4em;
    height: 4em;
    z-index: 100;
  }

  .header__sp-menu-button span {
    position: absolute;
    display: block;
    width: 2.5em;
    height: 1px;
    background-color: black;
  }

  .header__sp-menu-button span:nth-of-type(1) {
    transform: rotate(0) translateY(-0.5rem);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0, 1);
  }

  .header__sp-menu-button span:nth-of-type(2) {
    transform: rotate(0) translateY(0.5rem);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0, 1);
  }

  .header__sp-menu-button.active span:nth-of-type(1) {
    transform: rotate(15deg);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0, 1);
  }

  .header__sp-menu-button.active span:nth-of-type(2) {
    transform: rotate(-15deg);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0, 1);
  }

  .header__sp-menu-button--page span {
    background-color: var(--black);
  }
}

@media (max-width: 640px) {
  .header {
    padding-inline: 1.5em;
    padding-top: 0.75em;
  }
}

.footer {
  background: var(--white);
  padding-block: 5em 10em;
}

.footer__inner {
  max-width: 115em;
  width: calc(100% - 3em);
  margin-inline: auto;
}

.footer__logo {
  width: 13.5em;
  margin-inline: auto;
  margin-top: 4em;
}

@media (max-width: 1024px) {
  .footer {
    padding-block: 5em;
  }

  .footer__logo {
    margin-top: 2.5em;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-block: 2.5em;
    width: 100%;
  }
}

.bunner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  margin-bottom: 6.25em;
}

.bunner__item {
  width: 14.25em;
}

@media (max-width: 1024px) {
  .bunner {
    margin-bottom: 2.5em;
  }
}

@media (max-width: 640px) {
  .bunner {
    gap: 0.75em;
  }

  .bunner__item {
    width: 12.5em;
  }
}

.cta {
  background: var(--blue);
  border-radius: 3.125em;
  padding-block: 6.25em 5em;
}

.cta__title {
  font-size: 2em;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: var(--white);
}

.cta__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3.125em;
  margin-top: 5em;
}

.cta__list li a {
  border-radius: 1.1428571429em;
  width: 12.1428571429em;
  height: 2.5em;
  background: var(--white);
  font-weight: bold;
  font-size: 1.75em;
  text-align: center;
  color: #010002;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__list li a::after {
  content: "";
  width: 0.8571428571em;
  height: 0.5em;
  display: block;
  background: url(/ministry/images/icon/arrow_right--purpule.png) no-repeat center center/cover;
  position: absolute;
  right: 0.5em;
}

@media (max-width: 1024px) {
  .cta {
    padding-block: 4em;
  }

  .cta__list {
    gap: 1em;
    margin-top: 2.5em;
  }

  .cta__list li a {
    font-size: 1.25em;
  }
}

@media (max-width: 640px) {
  .cta {
    border-radius: 1.5em;
    padding-block: 2.5em 2.5em;
  }

  .cta__title {
    font-size: 1.25em;
  }

  .cta__list {
    gap: 0.75em;
    margin-top: 2.5em;
  }

  .cta__list li a {
    font-size: 1em;
  }
}

.top-fv {
  position: relative;
  width: 100%;
  padding: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-fv__media {
  overflow: hidden;
  border-radius: 3.125rem;
  width: calc(100% - 3rem);
  max-width: 82rem;
  position: relative;
  margin-inline: auto;
}

.top-fv__media .slick-slide div {
  position: relative;
  width: 100%;
  aspect-ratio: 16/8.5;
}

.top-fv__media .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-fv__title {
  font-family: "Hannari", serif;
  font-weight: normal;
  text-align: center;
  color: var(--white);
  font-size: 4.0625em;
  line-height: 1.2769230769em;
  letter-spacing: 0.02em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.top-section__wrap {
  padding-block: 0em 5em;
}

.top-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-section__title .en {
  font-family: "Barlow", serif;
  font-weight: bold;
  font-size: 2.5em;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--black);
}

.top-section__title .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.125em;
  letter-spacing: 0.02em;
  color: #11343e;
}

.top-section__title02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-section__title02 .en {
  font-family: "Barlow", serif;
  font-weight: bold;
  font-size: 2.8125em;
  line-height: 1.6444444444em;
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}

.top-section__title02 .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 2.8125em;
  line-height: 1.6444444444em;
  color: #08282f;
}

.top-section__text {
  font-size: 1.125em;
  letter-spacing: 0.04em;
  line-height: 3em;
  margin-top: 4em;
}

.top-section__btn {
  margin-top: 3.75em;
}

.top-section__btn a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-family: "Barlow", serif;
  font-size: 1em;
  line-height: 1.25em;
  color: #08282f;
  position: relative;
  padding-right: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-section__btn a::after {
  position: absolute;
  content: "";
  width: 0.84375em;
  height: 0.5625em;
  display: block;
  background: url(/ministry/images/icon/arrow_round_forward--black.png) no-repeat center center/cover;
  right: 0;
}

.top-section01 {
  max-width: 111.25em;
  width: calc(100% - 3em);
  margin-inline: auto;
  display: flex;
  gap: 2.75em;
}

.top-section01__item {
  width: calc(50% - 1.375em);
  padding: 2.5em 1.25em;
  border-radius: 3.125em;
  background: var(--white);
}

.top-section01__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2em;
}

.top-section01__item-cat {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.top-section01__item-cat ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75em;
}

.top-section01__item-cat ul li a {
  font-weight: 500;
  font-size: 0.9375em;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--blue-green);
  padding: 0.5em 2.3333333333em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--blue-green);
  border-radius: 0.8em;
}

.top-section01__item-body {
  margin-top: 3.125em;
}

.top-section01__item-topix {
  display: flex;
  flex-direction: column;
  gap: 3.125em;
}

.top-section01__item-topix li a {
  display: flex;
  align-items: flex-start;
  gap: 2.5em;
}

.top-section01__item-topix li a .date {
  color: #017596;
  font-weight: 300;
  font-size: 1.125em;
  letter-spacing: 0.02em;
  color: #017596;
  flex-shrink: 0;
}

.top-section01__item-topix li a .title {
  font-weight: 300;
  font-size: 1.125em;
  letter-spacing: 0.02em;
  color: #11343e;
  flex: 1;
}

.top-section01__item-seminer {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.top-section01__item-seminer li a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1em;
}

.top-section01__item-seminer li a .title {
  width: 100%;
  font-weight: bold;
  font-size: 1.3125em;
  letter-spacing: 0.02em;
  color: #11343e;
}

.top-section01__item-seminer li a .meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
}

.top-section01__item-seminer li a .meta span {
  border-radius: 0.75em;
  border: 1px solid #02576f;
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 0.02em;
  text-align: center;
  color: #11343e;
  padding-inline: 1.5em;
}

.top-section02 {
  max-width: 100em;
  width: calc(100% - 3em);
  margin-inline: auto;
  margin-top: 15em;
}

.top-section03 {
  max-width: 111.25em;
  width: calc(100% - 3em);
  margin-inline: auto;
  margin-top: 15em;
}

.top-section03__item {
  display: flex;
  align-items: center;
  gap: 5em;
}

.top-section03__body {
  max-width: 100%;
  width: 41.875em;
}

.top-section03__box {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5em;
}

.top-section03__box-item {
  width: calc(33.3333333333% - 1.6666666667em);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-section03__box-item-img {
  max-width: 100%;
  width: 13.25em;
  height: 13.25em;
}

.top-section03__box-item-text {
  position: relative;
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 1em;
}

.top-section03__box-item-text::after {
  content: "";
  width: 0.8571428571em;
  height: 0.5em;
  display: block;
  background: url(/ministry/images/icon/arrow_right--black.png) no-repeat center center/cover;
  position: absolute;
  right: 0;
}

.top-about-us {
  display: flex;
  flex-wrap: wrap;
  gap: 5em;
}

.top-about-us__media {
  margin-inline: 5em;
  max-width: 100%;
  width: 32.875em;
}

.top-about-us__body {
  max-width: 100%;
  flex: 1;
}

.top-swich__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5em;
  margin-bottom: -7.5em;
}

.top-swich__tab-item {
  width: 22.625em;
  padding-block: 2.125em 10em;
  border-radius: 5em;
  background: var(--white);
  cursor: pointer;
}

.top-swich__tab-item--studygroup {
  background: var(--light-blue);
}

.top-swich__tab-item--studygroup .en {
  -webkit-text-stroke-color: var(--white);
}

.top-swich__tab-item--studygroup .jp {
  color: var(--white);
}

.top-swich__panel {
  position: relative;
  z-index: 1;
}

.top-swich__panel-item {
  background: var(--white);
  border-radius: 5em;
  padding: 5em;
  display: none;
}

.top-swich__panel-item.show {
  display: block;
}

.top-swich__panel-item--studygroup {
  background: var(--light-blue);
  color: var(--white);
}

.top-swich__panel-item--studygroup .en {
  -webkit-text-stroke-color: var(--white);
}

.top-swich__panel-item--studygroup .jp {
  color: var(--white);
}

.top-swich__panel-item--studygroup a {
  color: var(--white);
}

.top-swich__panel-item--studygroup a::after {
  background: url(/ministry/images/icon/arrow_round_forward--white.png) no-repeat center center/cover;
}

.top-swich__panel-item--studygroup .top-section03__box-item-text::after {
  content: "";
  background: url(/ministry/images/icon/arrow_right--white.png) no-repeat center center/cover;
}

@media (max-width: 1440px) {
  .top-fv__media {
    max-width: 55rem;
  }

  .top-section01 {
    gap: 2em;
  }

  .top-section01__item {
    width: calc(50% - 1em);
  }

  .top-section01__item-cat ul li a {
    font-size: 0.9375em;
    padding: 0.5em 1.3333333333em;
  }

  .top-section01__item-topix {
    gap: 2.5em;
  }

  .top-section01__item-topix li a {
    gap: 2em;
  }

  .top-section02 {
    margin-top: 7.5em;
  }

  .top-section03 {
    margin-top: 7.5em;
  }

  .top-section03__body {
    width: 35em;
  }

  .top-section03__box {
    gap: 2.5em;
  }

  .top-section03__box-item {
    width: calc(33.3333333333% - 1.6666666667em);
  }

  .top-about-us__media {
    margin-inline: 2.5em;
  }
}

@media (max-width: 1100px) {
  .top-fv__media {
    max-width: calc(100vw - 3em);
  }
}

@media (max-width: 1024px) {
  .top-fv {
    padding-top: 10em;
    font-size: 0.75em;
  }

  .top-section__wrap {
    padding-block: 1em 5em;
  }

  .top-section__text {
    margin-top: 2em;
    line-height: 2;
  }

  .top-section__btn {
    margin-top: 1em;
  }

  .top-section01 {
    flex-direction: column;
  }

  .top-section01__item {
    width: 100%;
    padding: 1em 1.5em;
    border-radius: 1.5em;
  }

  .top-section01__item-body {
    margin-top: 2em;
  }

  .top-section01__item-topix {
    gap: 1.25em;
  }

  .top-section01__item-topix li a {
    gap: 1em;
  }

  .top-section01__item-seminer {
    gap: 1.5em;
  }

  .top-section01__item-seminer li a {
    gap: 0.5em;
  }

  .top-section01__item-seminer li a .title {
    font-size: 1.25em;
  }

  .top-section02 {
    margin-top: 7.5em;
  }

  .top-section03 {
    margin-top: 7.5em;
  }

  .top-section03__item {
    flex-direction: column;
    gap: 2.5em;
  }

  .top-section03__body {
    width: 50em;
  }

  .top-section03__box {
    max-width: 40em;
    gap: 2.5em;
  }

  .top-section03__box-item {
    width: calc(33.3333333333% - 1.6666666667em);
  }

  .top-about-us {
    flex-direction: column;
    align-items: center;
    gap: 2.5em;
  }

  .top-about-us__media {
    margin-inline: 2.5em;
    width: 25em;
  }

  .top-about-us__body {
    max-width: 50em;
    width: 100%;
    flex: none;
  }

  .top-swich__tab {
    gap: 2em;
    margin-bottom: -5em;
  }

  .top-swich__tab-item {
    width: 18.75em;
    padding-block: 1.5em 7em;
    border-radius: 2.5em;
  }

  .top-swich__panel-item {
    border-radius: 2.5em;
    padding: 2.5em;
  }
}

@media (max-width: 768px) {
  .top-fv {
    font-size: 1em;
  }

  .top-fv__title {
    font-size: 2em;
  }

  .top-fv__media {
    max-width: 100vw;
    width: calc(100vw - 1.5em);
  }

  .top-fv__media img {
    min-height: 35em;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .top-section01__item-head {
    flex-direction: column;
  }

  .top-section01__item-cat {
    margin-top: 0.5em;
    margin-inline: auto;
  }

  .top-section01__item-cat ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-section01__item-cat ul li a {
    font-size: 0.875em;
    padding: 0.5em;
  }

  .top-section01__item-body {
    margin-top: 1em;
  }

  .top-section01__item-topix li a {
    flex-direction: column;
  }

  .top-section01__item-topix li a .date {
    width: 100%;
    font-size: 1em;
  }

  .top-section01__item-topix li a .title {
    width: 100%;
    font-size: 1em;
  }

  .top-section01__item-seminer {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .top-section01__item-seminer li a {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1em;
  }

  .top-section01__item-seminer li a .title {
    width: 100%;
    font-weight: bold;
    font-size: 1.3125em;
    letter-spacing: 0.02em;
    color: #11343e;
  }

  .top-section01__item-seminer li a .meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5em;
  }

  .top-section01__item-seminer li a .meta span {
    border-radius: 0.75em;
    border: 1px solid #02576f;
    font-weight: 300;
    font-size: 1em;
    letter-spacing: 0.02em;
    text-align: center;
    color: #11343e;
    padding-inline: 1.5em;
  }

  .top-section03 {
    margin-top: 2.5em;
  }

  .top-section03__box {
    max-width: 30em;
    gap: 1em;
  }

  .top-section03__box-item {
    width: calc(50% - 0.5em);
  }

  .top-section03__box-item-img {
    height: auto;
    width: 5em;
  }

  .top-section03__box-item-text {
    font-size: 0.875em;
    margin-top: 0.5em;
  }
}

@media (max-width: 640px) {
  .top-fv {
    padding: 5em 0.75em;
  }

  .top-fv__title {
    font-size: 1.5em;
  }

  .top-fv__media {
    border-radius: 1.5em;
  }

  .top-fv__media img {
    min-height: 30em;
  }

  .top-section__title02 .en {
    font-size: 2em;
  }

  .top-section__title02 .jp {
    font-size: 2em;
  }

  .top-section__text {
    margin-top: 1em;
    font-size: 1em;
    line-height: 1.75;
  }

  .top-section01 {
    width: calc(100% - 1.5em);
  }

  .top-section01__item-cat ul {
    gap: 0.5em;
  }

  .top-section01__item-cat ul li a {
    font-size: 0.75em;
    padding: 0.25em;
  }

  .top-section01__item-topix {
    gap: 1em;
  }

  .top-section01__item-topix li a {
    gap: 0.5em;
  }

  .top-section01__item-seminer {
    gap: 1em;
  }

  .top-section01__item-seminer li a .title {
    font-size: 1.25em;
  }

  .top-section01__item-seminer li a .meta span {
    font-size: 0.875em;
  }

  .top-section02 {
    margin-top: 2.5em;
  }

  .top-about-us {
    gap: 1em;
  }

  .top-about-us__media {
    margin-inline: auto;
    width: 15em;
  }

  .top-swich__tab {
    gap: 0.5em;
    margin-bottom: -2.5em;
  }

  .top-swich__tab-item {
    width: 8em;
    padding-block: 0.5em 2.5em;
    border-radius: 1.5em;
  }

  .top-swich__tab-item .en {
    font-size: 1.25em;
    -webkit-text-stroke-width: 1px;
  }

  .top-swich__tab-item .jp {
    font-size: 1.25em;
  }

  .top-swich__panel-item {
    padding: 0.75em;
  }
}

.breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2em;
}

.breadcrumbs ul li a,
.breadcrumbs ul li span {
  font-family: "DIN 2014";
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--black);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs ul li a[data-link=top]::before {
  content: "";
  background: url(/ministry/images/icon/foundation-home.png) no-repeat center center/contain;
  display: block;
  width: 1.125em;
  height: 1.25em;
  margin-right: 0.625em;
}

.breadcrumbs ul li+li {
  position: relative;
  display: flex;
  align-items: center;
}

.breadcrumbs ul li+li::before {
  content: "";
  display: block;
  width: 2.25em;
  height: 0.0625em;
  background: #707070;
  margin-inline: 1.25em;
}

@media (max-width: 640px) {
  .breadcrumbs ul {
    margin-top: 1.25em;
  }

  .breadcrumbs ul li a,
  .breadcrumbs ul li span {
    font-size: 0.875em;
  }

  .breadcrumbs ul li+li::before {
    width: 1.25em;
    margin-inline: 0.625em;
  }
}

.page {
  width: calc(100% - 10em);
  margin-inline: auto;
  padding-block: 14em 11.875em;
}

.page--member {
  padding-top: 7.625em;
  padding-bottom: 0;
  width: 100%;
}

.page__inner {
  width: 100%;
  display: flex;
}

.page__head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.125em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.page__title {
  display: flex;
  flex-direction: column;
  gap: 1.125em;
  color: var(--black);
  font-weight: bold;
}

.page__title-en {
  font-size: 3.125em;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page__title-ja {
  font-size: 2.125em;
  line-height: 1;
  letter-spacing: 0.02em;
}

.page__title ._8em {
  font-size: 0.8em;
}

.page__content {
  max-width: 80em;
  margin-left: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.page__content-white {
  width: 100%;
  border-radius: 3.125em;
  background: var(--white);
  padding-block: 2.5em;
}

.page__content-white--blog {
  padding-inline: 5em;
}

.page__content-white--blog .page__content-item {
  gap: 1em;
}

.page__content-white--blog .page__content-link {
  margin: 0;
}

.page__content-white--blog .page__content-link li {
  width: 12.5em;
}

@media (max-width: 640px) {
  .page__content-white--blog {
    padding-inline: 2.5em;
  }

  .page__content-white--blog .page__content-link li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.page__content-inner {
  width: 100%;
  padding: 3.75em;
  display: flex;
  flex-direction: column;
  gap: 7.5em;
}

.page__content-inner--navy {
  background: var(--navy);
  color: var(--white);
}

.page__content-inner--sitemap {
  gap: 3.75em;
}

.page__content-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.75em;
}

.page__content-item--join {
  gap: 2em;
}

.page__content-item--join * {
  margin: 0 !important;
}

.page__content-title {
  font-weight: bold;
  font-size: 2.125em;
  letter-spacing: 0.02em;
  line-height: 1;
}

.page__content-sub-title {
  font-weight: bold;
  font-size: 1.625em;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-block: -0.40625em;
  color: #000;
}

.page__content-text p {
  font-weight: normal;
  font-size: 1.3125em;
  letter-spacing: 0.02em;
  line-height: 2.1904761905em;
}

.page__content-text p+p {
  margin-top: 1em;
}

.page__content-text--bg-gray {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1.2857142857em;
  background: #f4f4f4;
  padding-block: 0.1666666667em;
  padding-inline: 2em;
  margin-top: -1.4285714286em;
}

.page__content-border-text {
  display: flex;
  flex-direction: column;
  gap: 0.625em;
}

.page__content-border-text p {
  font-weight: bold;
  font-size: 1.1875em;
  letter-spacing: 0.01em;
  line-height: 1.5em;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  border: 1px solid #707070;
  border-radius: 1.4210526316em;
  padding: 0.5263157895em 1em;
}

.page__content-voice {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  margin-top: -1.25em;
}

.page__content-voice-item {
  display: flex;
  align-items: center;
  gap: 2em;
}

.page__content-voice-item-img {
  width: 5.25em;
  flex-shrink: 0;
}

.page__content-voice-item-text {
  flex: 1;
}

.page__content-voice-item-text p {
  padding: 1em 2em;
  border-radius: 2.2857142857em;
  border: 1px solid #707070;
  line-height: 2;
}

.page__content-theme {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.page__content-theme:not(:has(h4)) {
  margin-top: -1.25em;
}

.page__content-theme-title {
  font-weight: bold;
  font-size: 1.5625em;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #055572;
}

.page__content-theme ul li {
  display: flex;
  position: relative;
  font-weight: normal;
  font-size: 1.25em;
  letter-spacing: 0.02em;
  line-height: 2em;
  color: #000;
}

/*.page__content-theme ul li::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 0.5em;
  background: #000;
  margin-top: 0.75em;
}
*/
.page__content-active {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  margin-top: -1.875em;
}

.page__content-active-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  max-width: 50em;
}

.page__content-active-item::before {
  content: "";
  display: block;
  width: 0.625em;
  height: 1em;
  background: url(/ministry/images/icon/arrow_carrot_right--black.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page__content-active-item-title {
  color: #055572;
  font-weight: bold;
}

.page__content-active-item-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625em 1.25em;
}

.page__content-active-item-text span {
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 0.02em;
  color: #11343e;
  line-height: 1;
  padding: 0.5em 2em;
  border-radius: 3em;
  border: 1px solid #11343e;
}

.page__content-table dl {
  display: flex;
  gap: 1.25em;
  border-bottom: 1px solid #707070;
}

.page__content-table dl dt,
.page__content-table dl dd {
  font-size: 1.5em;
  padding: 0.5em 1em;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: var(--black);
}

.page__content-table dl dt {
  width: 12.9166666667em;
  font-weight: bold;
}

.page__content-table dl dd {
  flex: 1;
  font-weight: normal;
}

.page__content-map {
  position: relative;
}

.page__content-map::before {
  content: "";
  display: block;
  padding-top: 60%;
  width: 100%;
}

.page__content-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page__content-message {
  display: flex;
  gap: 2.25em;
}

.page__content-message-img {
  width: 13.125em;
}

.page__content-message-body {
  flex: 1;
}

.page__content-message-text p+p {
  margin-top: 1.5em;
}

.page__content-message-position {
  font-size: 1.1875em;
  margin-top: 1.8421052632em;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: bold;
  text-align: right;
}

.page__content-message-name {
  font-size: 2.375em;
  margin-top: 0.9210526316em;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: bold;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5789473684em;
}

.page__content-message-name span {
  font-size: 0.5em;
}

.page__content-link {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: -1.25em;
}

.page__content-link li {
  width: calc(25% - 0.75em);
}

.page__content-link li a,
.page__content-link li span {
  padding: 0.3333333333em 0.8888888889em;
  width: 100%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-weight: bold;
  font-size: 1.125em;
  letter-spacing: 0.01em;
  line-height: 1.75;
  text-align: center;
  color: #000;
  border-radius: 3em;
  border: 1px solid #707070;
}

@media (max-width: 1440px) {
  .page__content-link li {
    width: calc(33.3333333333% - 0.6666666667em);
  }
}

@media (max-width: 768px) {
  .page__content-link {
    margin-top: -0.625em;
  }

  .page__content-link li a,
  .page__content-link li span {
    font-size: 1em;
  }
}

@media (max-width: 640px) {
  .page__content-link {
    margin-top: -0.625em;
  }

  .page__content-link li {
    width: 100%;
  }

  .page__content-link li a,
  .page__content-link li span {
    font-size: 1em;
  }
}

.page__content-board {
  display: flex;
  flex-direction: column;
  gap: 5em;
}

.page__content-board-item {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.page__content-board-item-list {
  display: flex;
  flex-direction: column;
}

.page__content-board-item-list dl {
  padding: 1.25em 0;
  border-bottom: 1px solid #707070;
  display: flex;
}

.page__content-board-item-list dl dt,
.page__content-board-item-list dl dd {
  font-size: 1.5em;
  padding-inline: 0.25em;
}

.page__content-board-item-list dl dt {
  width: 17.5em;
}

.page__content-board-item-list dl dd {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0em 1.5em;
}

.page__content-board-item-list dl dd span:nth-child(1) {
  min-width: 6.25em;
}

@media (max-width: 1440px) {
  .page__content-board-item-list dl dt {
    width: 15em;
  }
}

@media (max-width: 768px) {
  .page__content-board {
    gap: 2.5em;
  }

  .page__content-board-item {
    gap: 1.25em;
  }

  .page__content-board-item-list dl dt,
  .page__content-board-item-list dl dd {
    font-size: 1.25em;
  }
}

@media (max-width: 640px) {
  .page__content-board-item {
    gap: 0.625em;
  }

  .page__content-board-item-list dl {
    flex-wrap: wrap;
  }

  .page__content-board-item-list dl dt,
  .page__content-board-item-list dl dd {
    font-size: 1em;
  }

  .page__content-board-item-list dl dd {
    flex: 0 0 100%;
  }
}

.page__content-join-table {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  overflow: auto;
  white-space: nowrap;
}

.page__content-join-table-wrap {
  min-width: 100%;
  overflow: auto;
}

.page__content-join-table-dl {
  width: 100%;
  display: flex;
}

.page__content-join-table-dl--pink {
  background: #F0E9E9;
}

.page__content-join-table-dl--gray {
  background: #F7F7F7;
}

.page__content-join-table-dl--white {
  background: #fff;
}

.page__content-join-table-dl dt,
.page__content-join-table-dl dd {
  width: 11.1111111111em;
  font-weight: bold;
  font-size: 1.125em;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
  color: #333;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #707070;
}

.page__content-join-table-dl dt:last-child,
.page__content-join-table-dl dd:last-child {
  border-right: none;
}

.page__content-join-table-dl dt:nth-child(1),
.page__content-join-table-dl dd:nth-child(1) {
  width: 5em !important;
}

.page__content-join-table-dl dt:nth-child(2),
.page__content-join-table-dl dd:nth-child(2) {
  min-width: 12em !important;
}

.page__content-news {
  margin-top: 2.5em;
}

.page__content-news h1,
.page__content-news h2,
.page__content-news h3,
.page__content-news h4,
.page__content-news h5,
.page__content-news h6 {
  margin: 1.875em 0 1.25em;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: #000;
}

.page__content-news h1 {
  font-size: 1.75em;
}

.page__content-news h2 {
  font-size: 1.5em;
}

.page__content-news h3 {
  font-size: 1.25em;
}

.page__content-news h4 {
  font-size: 1.125em;
}

.page__content-news h5,
.page__content-news h6 {
  font-size: 1em;
}

.page__content-news p {
  margin: 1em 0;
  font-size: 1em;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: #000;
}

.page__content-news ul,
.page__content-news ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.page__content-news ul li,
.page__content-news ol li {
  font-size: 1em;
  line-height: 1.75;
  margin-bottom: 0.5em;
}

.page__content-news blockquote {
  margin: 1.5em 0;
  padding: 1.25em;
  background: #f5f5f5;
  border-left: 4px solid #ccc;
}

.page__content-news blockquote p {
  margin: 0;
  font-style: italic;
}

.page__content-news blockquote cite {
  display: block;
  margin-top: 0.625em;
  font-size: 0.875em;
  color: #666;
}

.page__content-news figure {
  margin: 1.5em 0;
}

.page__content-news figure img {
  max-width: 100%;
  height: auto;
}

.page__content-news figure figcaption {
  margin-top: 0.5em;
  font-size: 0.875em;
  color: #666;
  text-align: center;
  display: block !important;
}

.page__content-news table {
  width: 100%;
  margin: 1.5em 0;
  border-collapse: collapse;
}

.page__content-news table th,
.page__content-news table td {
  padding: 0.75em;
  border: 1px solid #ddd;
  font-size: 1em;
  line-height: 1.5;
}

.page__content-news table th {
  background: #f5f5f5;
  font-weight: bold;
}

.page__content-news pre {
  margin: 1.5em 0;
  padding: 1em;
  background: #f5f5f5;
  overflow-x: auto;
}

.page__content-news pre code {
  font-family: monospace;
  font-size: 0.875em;
  line-height: 1.6;
}

.page__content-news code {
  background: #f5f5f5;
  padding: 0.125em 0.375em;
  border-radius: 3px;
  font-family: monospace;
}

.page__content-news hr {
  margin: 2em 0;
  border: none;
  border-top: 1px solid #ddd;
}

.page__content-news a {
  color: #0066cc;
  text-decoration: underline;
}

.page__content-news a:hover {
  text-decoration: none;
}

.page__content-news .alignleft {
  float: left;
  margin: 0 1.25em 1.25em 0;
}

.page__content-news .alignright {
  float: right;
  margin: 0 0 1.25em 1.25em;
}

.page__content-news .aligncenter {
  display: block;
  margin: 1.25em auto;
}

.page__content-news .wp-block-embed {
  margin: 1.5em 0;
}

.page__content-news .wp-block-embed iframe {
  max-width: 100%;
}

.page__content-news .wp-block-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1em;
  margin: 1.5em 0;
}

.page__content-news>*:first-child {
  margin-top: 0 !important;
}

@media (max-width: 640px) {
  .page__content-news {
    margin-top: 1.25rem;
  }

  .page__content-news h1,
  .page__content-news h2,
  .page__content-news h3,
  .page__content-news h4,
  .page__content-news h5,
  .page__content-news h6 {
    margin: 1.25rem 0 0.625rem;
  }

  .page__content-news h1 {
    font-size: 1.5em;
  }

  .page__content-news h2 {
    font-size: 1.25em;
  }

  .page__content-news h3 {
    font-size: 1.125em;
  }

  .page__content-news h4 {
    font-size: 1em;
  }

  .page__content-news h5,
  .page__content-news h6 {
    font-size: 0.875em;
  }

  .page__content-news p {
    margin: 0.625rem 0;
    font-size: 0.875em;
  }

  .page__content-news ul,
  .page__content-news ol {
    margin: 0.625rem 0;
  }

  .page__content-news ul li,
  .page__content-news ol li {
    font-size: 0.875em;
  }

  .page__content-news blockquote {
    margin: 0.625rem 0;
  }

  .page__content-news figure {
    margin: 0.625rem 0;
  }

  .page__content-news table {
    width: 100%;
    margin: 0.625rem 0;
    border-collapse: collapse;
  }

  .page__content-news table th,
  .page__content-news table td {
    padding: 0.625rem;
    border: 1px solid #ddd;
    font-size: 0.875em;
    line-height: 1.5;
  }

  .page__content-news table th {
    background: #f5f5f5;
    font-weight: bold;
  }

  .page__content-news pre {
    margin: 0.625rem 0;
    padding: 0.625rem;
    background: #f5f5f5;
    overflow-x: auto;
  }

  .page__content-news pre code {
    font-family: monospace;
    font-size: 0.875em;
    line-height: 1.6;
  }

  .page__content-news hr {
    margin: 0.625rem 0;
  }

  .page__content-news .alignleft {
    float: left;
    margin: 0 0.625rem 0.625rem 0;
  }

  .page__content-news .alignright {
    float: right;
    margin: 0 0 0.625rem 0.625rem;
  }

  .page__content-news .aligncenter {
    display: block;
    margin: 0.625rem auto;
  }

  .page__content-news .wp-block-embed {
    margin: 0.625rem 0;
  }

  .page__content-news .wp-block-embed iframe {
    max-width: 100%;
  }

  .page__content-news .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.625rem;
    margin: 0.625rem 0;
  }
}

.page__company {
  width: 62.5em;
}

.page__company-head {
  display: flex;
  align-items: center;
  padding-left: 5em;
  padding-top: 9.625em;
  gap: 4.5em;
}

.page__company-head .page__head {
  margin-top: 0;
  margin-bottom: 0;
}

.page__company-search {
  width: 30.375em;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.page__company-search input {
  width: 100%;
  height: 3.3125em;
  border-radius: 1.65625em;
  background: #fff;
  border: 1px solid #707070;
  padding: 0.625em 1.25em;
  font-size: 16px;
}

.page__company-list {
  margin-left: 3.625em;
  margin-right: 2.625em;
  margin-top: 4.5em;
  border-radius: 1.65625em;
  background: #fff;
  border: 1px solid #707070;
  padding: 2.625em 3.625em;
}

.page__company-list ul {
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  max-height: 49.375em;
  overflow-y: auto;
}

.page__company-list ul li {
  display: flex;
  align-items: center;
  gap: 1.25em;
}

.page__company-list ul li .img {
  width: 10.3125em;
  flex-shrink: 0;
}

.page__company-list ul li .body {
  flex: 1;
}

.page__company-list ul li .body .title {
  font-weight: bold;
  font-size: 1.0625em;
  letter-spacing: 0.02em;
  text-align: left;
  color: #000;
}

.page__company-list ul li .body a {
  font-size: 0.8125em;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #007691;
}

.page__company-list ul li .body .address {
  font-size: 0.8125em;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #124753;
}

.page-company__tag-search {
  /* width: calc(100% - 5rem); */
  width: fit-content;
  margin-left: 2.5rem;
  margin-top: 2.5rem;
  border-radius: 1.65625em;
  background: #fff;
  border: 1px solid #707070;
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}


@media (max-width: 1024px) {
  .page-company__tag-search {
    margin-left: 0;
  }
}

.page-company__tag-search h3 {
  font-size: 1.125rem;
  font-weight: bold;
}

.page-company__tag-search ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.page-company__tag-search ul li {
  font-size: 1rem;
  color: #18607b;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-company__tag-search ul li.active {
  background: #18607b;
  color: #fff;
}

.page-company__tag-search ul li:hover {
  background: #18607b;
  color: #fff;
}

.page__map {
  width: 57.5em;
  height: 81.25em;
}

.page__map-item {
  width: 100%;
  height: 100%;
}

.page__map-item iframe {
  width: 100%;
  height: 100%;
}

.page__committee-list {
  display: flex;
  flex-direction: column;
  gap: 1.75em;
}

.page__committee-item {
  display: flex;
  gap: 6.25em;
  border-radius: 2.5em;
  background: #fff;
  border: 3px solid #707070;
  padding: 1.75em 2.5em;
}

.page__committee-item-head {
  display: flex;
  flex-direction: column;
  gap: 0.625em;
  width: 21.875em;
}

.page__committee-item-title {
  font-size: 1.4375em;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.page__committee-item-text {
  font-size: 1.125em;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.page__committee-item-link {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: #08282f;
}

.page__committee-item-link::after {
  content: "→";
  margin-left: 0.625em;
}

.page__committee-item-body {
  flex: 1;
}

.page__committee-item-body ol {
  list-style: decimal;
}

.page__committee-item-body ol li {
  font-size: 1.125em;
  letter-spacing: 0.02em;
  color: #000;
}

.page__committee-col {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em;
}

.page__committee-col-item {
  width: calc(50% - 0.625em);
}

.page__committee-col-item-head {
  width: 100%;
}

@media (max-width: 1440px) {
  .page__committee-item-head {
    width: 18.75em;
  }
}

@media (max-width: 768px) {
  .page__committee-list {
    gap: 1.25em;
  }

  .page__committee-item {
    gap: 2.5em;
  }

  .page__committee-item-head {
    width: 15.625em;
  }

  .page__committee-item-title {
    font-size: 1.25em;
  }

  .page__committee-item-text {
    font-size: 1em;
  }

  .page__committee-item-link {
    font-size: 0.875em;
  }

  .page__committee-item-body ol li {
    font-size: 1em;
  }
}

@media (max-width: 640px) {
  .page__committee-item {
    gap: 0.625em;
    flex-direction: column;
    padding: 0.625em;
    border-radius: 1.25em;
  }

  .page__committee-item-head {
    width: 100%;
  }

  .page__committee-item-body {
    flex: 0 0 100%;
    padding-left: 1.25em;
  }

  .page__committee-col-item {
    width: 100%;
  }
}

.page__member-form form {
  display: flex;
  align-items: center;
  gap: 1.25em;
  max-width: 52.5em;
  margin-inline: auto;
}

.page__member-form form input {
  width: 100%;
  flex: 1;
  height: 4.75em;
  border-radius: 2em;
  background: #fff;
  border: 1px solid #707070;
  font-size: 16px;
  padding: 0.625em 1.25em;
}

.page__member-form form button {
  width: 10.125em;
  height: 3.75em;
  border-radius: 1.5em;
  background: #038dbf;
  border: 1px solid #707070;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .page__member-form form {
    gap: 0.625em;
  }

  .page__member-form form input {
    height: 3.125em;
  }

  .page__member-form form button {
    height: 3.125em;
  }
}

@media (max-width: 640px) {
  .page__member-form form {
    flex-direction: column;
    align-items: flex-start;
  }

  .page__member-form form input {
    height: 3.125em;
    border-radius: 0.75em;
  }

  .page__member-form form button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 2.5em;
    padding: 0.625em 1.25em;
    border-radius: 0.75em;
  }
}

@media (max-width: 1440px) {
  .page {
    width: calc(100% - 5em);
  }

  .page__title-en {
    font-size: 2.5em;
  }

  .page__title-ja {
    font-size: 1.875em;
  }

  .page__content {
    max-width: 60em;
  }

  .page--member {
    width: 100%;
  }

  .page__company-head {
    padding-left: 2.5em;
    gap: 1.25em;
  }

  .page__company-search {
    max-width: 50%;
    width: 30.375em;
  }

  .page__company-search input {
    width: 100%;
  }

  .page__company-list {
    margin-left: 2.5em;
  }
}

@media (max-width: 1100px) {
  .page__company-search {
    max-width: 50%;
  }
}

@media (max-width: 1024px) {
  .page {
    width: calc(100% - 5em);
    padding-bottom: 8em;
  }

  .page__inner {
    flex-direction: column;
  }

  .page__head {
    width: 100%;
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page__content-inner {
    padding: 3.75em 2.5em;
  }

  .page__content-table dl dt {
    width: 10em;
  }

  .page__content-message {
    flex-direction: column;
    align-items: center;
  }

  .page--member {
    padding-top: 14em;
  }

  .page__company {
    width: 100%;
    flex-direction: column;
  }

  .page__company-head {
    padding: 0;
    justify-content: space-between;
    align-items: flex-end;
  }

  .page__company-head .page__head {
    flex-direction: column;
    align-items: flex-start;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .page__company-list {
    width: 100%;
    margin-inline: 0;
    margin-top: 2em;
  }

  .page__company-list ul {
    max-height: 42.5em;
  }

  .page__company-search {
    max-width: 60%;
    width: 31.25em;
  }

  .page__map {
    width: 100%;
    height: 37.5em;
    margin-top: 2.5em;
  }
}

@media (max-width: 768px) {
  .page {
    width: calc(100% - 2.5em);
    padding-top: 10em;
  }

  .page__head {
    margin-bottom: 1.25em;
  }

  .page__title {
    gap: 1em;
  }

  .page__title-en {
    font-size: 2.5em;
  }

  .page__title-ja {
    font-size: 1.875em;
  }

  .page__content-white {
    padding-block: 1em;
  }

  .page__content-inner {
    padding: 2.5em 1.25em;
    gap: 3.75em;
  }

  .page__content-item {
    gap: 2.5em;
  }

  .page__content-title {
    font-size: 1.75em;
  }

  .page__content-sub-title {
    font-size: 1.375em;
  }

  .page__content-text p {
    font-size: 1.125em;
  }

  .page__content-text--bg-gray {
    border-radius: 2em;
    padding-inline: 1em;
    margin-top: -1.1111111111em;
  }

  .page__content-border-text p {
    font-size: 1em;
  }

  .page__content-voice {
    margin-top: -0.625em;
  }

  .page__content-voice-item {
    gap: 1.25em;
  }

  .page__content-voice-item-text p {
    padding: 1em 1em;
  }

  .page__content-theme {
    gap: 1.25em;
  }

  .page__content-theme:not(:has(h4)) {
    margin-top: -0.625em;
  }

  .page__content-theme-title {
    font-size: 1.375em;
  }

  .page__content-theme ul li {
    font-size: 1.125em;
  }

  .page__content-active {
    margin-top: -0.625em;
  }

  .page__content-table dl {
    gap: 0.625em;
  }

  .page__content-table dl dt {
    width: 8.8888888889em;
  }

  .page__content-table dl dt,
  .page__content-table dl dd {
    font-size: 1.125em;
    padding: 0.5em 0.5555555556em;
  }

  .page__content-message {
    gap: 1.25em;
  }

  .page__content-message-img {
    width: 10em;
  }

  .page__content-message-position {
    font-size: 1em;
    margin-top: 1.875em;
  }

  .page__content-message-name {
    font-size: 1.75em;
    margin-top: 0.7142857143em;
  }

  .page__content-message-name span {
    font-size: 0.5714285714em;
  }

  .page__content-join-table-dl dt,
  .page__content-join-table-dl dd {
    width: 8.5714285714em;
    font-size: 0.875em;
  }

  .page__company-list {
    padding: 1.5em;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 8em;
    padding-bottom: 4em;
  }

  .page__head {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .page__content-white {
    border-radius: 1.25em;
  }

  .page__content-inner {
    padding: 1.25em;
    gap: 2.5em;
  }

  .page__content-item {
    gap: 1.25em;
  }

  .page__content-title {
    font-size: 1.5em;
    line-height: 1.5;
  }

  .page__content-sub-title {
    font-size: 1.25em;
  }

  .page__content-text p {
    font-size: 1em;
  }

  .page__content-text--bg-gray {
    margin-top: -0.625em;
  }

  .page__content-voice {
    margin-top: 0;
  }

  .page__content-voice-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625em;
  }

  .page__content-voice-item-text p {
    padding: 0.5em 1em;
    border-radius: 1.25em;
  }

  .page__content-theme-title {
    font-size: 1.25em;
  }

  .page__content-theme ul li {
    font-size: 1em;
  }

  .page__content-active {
    margin-top: 0;
  }

  .page__content-active-item span {
    font-size: 0.875em;
  }

  .page__content-table dl {
    flex-direction: column;
    padding: 0.625em 0;
    gap: 0em;
  }

  .page__content-table dl dt {
    width: 100%;
  }

  .page__content-table dl dt,
  .page__content-table dl dd {
    padding: 0;
  }

  .page__content-map::before {
    padding-top: 75%;
  }

  .page__company-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25em;
  }

  .page__company-search {
    max-width: 100%;
    width: 100%;
  }

  .page__company-search input {
    height: 2.5em;
  }

  .page__company-list {
    padding: 1em;
  }

  .page__company-list ul li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    /* width: fit-content; */
    width: 100%;
    margin-inline: auto;
  }

  .page__company-list ul li .img {
    max-width: 100%;
    width: 100%;
  }

  .page__company-list ul li .img img {
    width: 100%;
  }
}

.form form {
  display: flex;
  flex-direction: column;
  gap: 2.875em;
}

.form__item {
  display: flex;
  gap: 1em;
}

.form__item label {
  width: 8.3333333333em;
  font-size: 1.5em;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: left;
  color: #000;
  padding-top: 0.625em;
}

.form__item input,
.form__item textarea {
  flex: 1;
  border: 1px solid #a8a8a8;
  border-radius: 1.75em;
  padding: 0.625em 1.25em;
  background: #fff;
  font-size: 16px !important;
}

.form__item input {
  max-width: 31.25em;
  height: 3.375em;
}

.form__item textarea {
  max-width: 47.5em;
  height: 13.75em;
}

.form__item button {
  margin-top: 0.8333333333em;
  max-width: 11.0416666667em;
  width: 100%;
  height: 3.2916666667em;
  border-radius: 1.6458333333em;
  background: #f26803;
  font-size: 1.5em;
  letter-spacing: 0.02em;
  line-height: 3.0833333333em;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .form form {
    gap: 1.25em;
  }

  .form__item {
    flex-direction: column;
    gap: 0.625em;
  }

  .form__item label {
    width: 100%;
    font-size: 1.25em;
  }

  .form__item input,
  .form__item textarea {
    max-width: 100%;
    flex: none;
  }

  .form__item input {
    height: 2.5em;
  }

  .form__item textarea {
    height: 12.5em;
  }

  .form__item button {
    margin-top: 0;
    max-width: 15em;
    width: 100%;
    margin-inline: auto;
    height: 2.7em;
    font-size: 1.25em;
  }
}

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