@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 98;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    opacity: 1;
    visibility: visible;
  }
}
.site-header {
  padding: 0 20px 0 30px;
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 10px 15px;
  }
}
.site-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header__branding img {
  max-height: 70px;
}
@media screen and (max-width: 767px) {
  .site-header__branding img {
    max-height: 50px;
  }
}

.site-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* =========================
   * 直下 nav 安定化
   ========================= */
}
.site-header__nav > nav {
  display: block;
}
.site-header__nav {
  /* =========================
   * 共通リンク
   ========================= */
}
.site-header__nav a {
  position: relative;
  color: #1a1a1a;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.site-header__nav a:hover {
  color: #004f99;
}
@media screen and (max-width: 767px) {
  .site-header__nav a:hover {
    color: #b3b3b3;
  }
}
.site-header__nav {
  /* =========================
   * SP時の順番変更
   ========================= */
}
.site-header__nav.is-open > nav:first-of-type {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.site-header__nav.is-open > nav:last-of-type {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.site-header__nav {
  /* =========================
   * nav①
   ========================= */
}
.site-header__nav > nav:first-of-type ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:first-of-type ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:first-of-type ul li {
    display: block;
  }
}
.site-header__nav > nav:first-of-type ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:first-of-type ul li a {
    display: block;
    padding: 15px 40px;
    border-bottom: 1px solid #004280;
  }
}
.site-header__nav > nav:first-of-type ul li i {
  margin-right: 6px;
}
.site-header__nav {
  /* =========================
   * nav②（メインナビ）
   ========================= */
}
.site-header__nav > nav:last-of-type ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:last-of-type ul {
    display: block;
    margin-top: 0;
  }
}
.site-header__nav > nav:last-of-type ul li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:last-of-type ul li {
    display: block;
  }
}
.site-header__nav > nav:last-of-type ul li a {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:last-of-type ul li a {
    display: block;
    padding: 20px 40px;
    border-bottom: 1px solid #004280;
  }
}
.site-header__nav > nav:last-of-type ul li a {
  /* =========================
   * 下線
   * 中央から伸びる
   ========================= */
}
@media screen and (min-width: 768px) {
  .site-header__nav > nav:last-of-type ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #004f99;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .site-header__nav > nav:last-of-type ul li a:hover::after {
    /*width: 100%;*/
    width: calc(100% - 50px);
  }
}
.site-header__nav > nav:last-of-type ul li {
  /* =========================
   * カレント表示
   ========================= */
}
body:not(.home):not(.front-page):not(.page-template-template-e-top) .site-header__nav > nav:last-of-type ul li.current-menu-item a, body:not(.home):not(.front-page):not(.page-template-template-e-top) .site-header__nav > nav:last-of-type ul li.current-menu-ancestor a {
  color: #004f99;
}
@media screen and (max-width: 767px) {
  body:not(.home):not(.front-page):not(.page-template-template-e-top) .site-header__nav > nav:last-of-type ul li.current-menu-item a, body:not(.home):not(.front-page):not(.page-template-template-e-top) .site-header__nav > nav:last-of-type ul li.current-menu-ancestor a {
    color: #fff;
  }
}
body:not(.home):not(.front-page):not(.page-template-template-e-top) .site-header__nav > nav:last-of-type ul li.current-menu-item a::after, body:not(.home):not(.front-page):not(.page-template-template-e-top) .site-header__nav > nav:last-of-type ul li.current-menu-ancestor a::after {
  width: 100%;
}
.site-header__nav > nav:last-of-type ul li .js-drawer .current-menu-item a,
.site-header__nav > nav:last-of-type ul li .js-drawer .current-menu-ancestor a {
  color: #fff !important;
}
@media screen and (max-width: 767px) {
  .site-header__nav > nav:last-of-type ul li.current-menu-item {
    background-color: #003566;
  }
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-bottom: 99px;
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  main {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 0;
    padding-bottom: 40px;
  }
}

span {
  display: inline-block;
}

/* common */
:where(.wp-block-columns.is-layout-flex) {
  gap: 5em;
}

@media screen and (max-width: 767px) {
  :where(.wp-block-columns.is-layout-flex) {
    gap: 0;
  }
}
.mt-0 {
  margin-top: 0 !important;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  max-width: 1300px;
  margin-inline: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.l-inner.l-inner--lg {
  max-width: 1636px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .l-inner.l-inner--lg {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.l-inner.l-inner--xlg {
  max-width: 1820px;
  margin-inline: auto;
}

.home .l-inner.l-inner--xlg.group-column-2 {
  position: relative;
}

.l-inner.group-column-2 .wp-block-group__inner-container {
  max-width: 1538px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .l-inner.group-column-2 .wp-block-group__inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}
.l-inner.group-column-2 .wp-block-group__inner-container > section {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .l-inner.group-column-2 .wp-block-group__inner-container > section {
    width: 100%;
  }
}

.l-top-movies,
.l-top-news {
  margin-top: 42px;
}

.c-btn01,
.p-article__body .wp-block-button {
  color: #004f99;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 220px;
  padding: 15px;
  border: 1px solid #004f99;
  border-radius: 14px;
  background: #fff;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  -webkit-transition: background 0.3s, color 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, color 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  transition: background 0.3s, color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn01,
  .p-article__body .wp-block-button {
    font-size: 14px;
    min-width: 200px;
  }
}
.c-btn01 span,
.p-article__body .wp-block-button span {
  display: inline-block;
  font-size: 16px;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
@media screen and (max-width: 767px) {
  .c-btn01 span,
  .p-article__body .wp-block-button span {
    font-size: 14px;
  }
}
.c-btn01:hover,
.p-article__body .wp-block-button:hover {
  background: #004f99;
  color: #fff;
  -webkit-transform: skewX(-10deg) translateY(-2px);
          transform: skewX(-10deg) translateY(-2px);
}

.p-article__body .wp-block-button {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-article__body .wp-block-button {
    min-width: auto;
  }
}

.p-article__body .wp-block-buttons.is-layout-flex {
  gap: 20px;
}

.p-article__body .wp-block-columns.align-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

@media screen and (max-width: 767px) {
  .p-article__body .wp-block-columns {
    gap: 0;
    margin-bottom: 40px;
  }
}

.p-article__body .wp-block-button .wp-block-button__link {
  color: #004f99;
  background-color: transparent;
  padding: 15px;
  min-width: auto;
  display: inline-block;
  font-size: 16px;
  -webkit-transform: skewX(10deg);
          transform: skewX(10deg);
}
@media screen and (max-width: 767px) {
  .p-article__body .wp-block-button .wp-block-button__link {
    font-size: 14px;
  }
}

.p-article__body .wp-block-button .wp-block-button__link:hover,
.p-article__body .wp-block-button a[target=_blank]:hover::after {
  color: #fff;
  background-color: transparent;
}

@media (hover: hover) {
  .c-btn01:hover::after {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.c-btn01.c-btn01--en span {
  font-family: "Lato", sans-serif;
}

.c-btn02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #1a1a1a;
  font-size: 18px;
  padding: 20px 10px 20px 10px;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 767px) {
  .c-btn02 {
    font-size: 16px;
    padding: 16px 10px 16px 10px;
  }
}
.c-btn02 i {
  color: #ccc;
}

.c-title01 {
  color: #8ab9e6;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 40px;
}
.c-title01::first-letter {
  color: #004f99;
}
.c-title01 span {
  display: block;
  font-size: 18px;
  color: #1a1a1a;
  font-weight: 400;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  .c-title01 {
    font-size: 40px;
  }
  .c-title01 span {
    font-size: 14px;
  }
}

.c-title02 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-title02::before {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    margin-top: 8px;
  }
}
.c-title03 {
  color: #1a1a1a;
  font-size: 30px;
  font-weight: 500;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(90deg, #0078c2, #090b62) 1;
  border-image: -webkit-gradient(linear, left top, right top, from(#0078c2), to(#090b62)) 1;
  border-image: linear-gradient(90deg, #0078c2, #090b62) 1;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .c-title03 {
    font-size: 18px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.c-title04 {
  color: #1a1a1a;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-title04 {
    font-size: 16px;
    padding-left: 16px;
  }
}

.c-title04::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#0078c2), color-stop(0%, #090b62));
  background-image: linear-gradient(#0078c2 0% 50%, #090b62 0% 50%);
}

.p-archive__item:nth-child(n+2) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-archive__item:nth-child(n+2) {
    margin-top: 19px;
  }
}
.p-archive__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0.5s ease;
  transition: transform 0.5s ease, color 0.5s ease, -webkit-transform 0.5s ease;
}

.p-archive__img {
  border: 1px solid #ccc;
  width: 16%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 150px;
}

@media screen and (max-width: 767px) {
  .p-archive__img {
    width: 100px;
    min-width: 100px;
  }
}
.p-archive__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-archive__img img {
    aspect-ratio: 240/160;
  }
}
.p-archive__body {
  margin-left: 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .p-archive__body {
    width: 77.7611940299%;
    margin-left: 14px;
  }
}
.p-archive__item-date {
  color: #000;
  font-size: 14px;
  width: 137px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .p-archive__item-date {
    font-size: 12px;
    width: 78px;
  }
}
.p-archive__item-title {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-archive__item-title {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
  }
}
.p-article__time {
  font-size: 16px;
}

.p-page__title,
.page .p-article__title,
.archive .p-archive__title {
  color: #fff;
  display: block;
  text-align: center;
  padding: 60px;
}

.p-article__title--bg {
  background-image: url("../images/bg-title.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-page__title,
  .page .p-article__title,
  .archive .p-archive__title {
    padding: 40px 15px;
  }
}
.p-article__thumbnail {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-article__thumbnail {
    margin-top: 30px;
  }
}
.p-article__thumbnail img {
  width: 100%;
  height: auto;
}

.p-article__body > h2:first-child {
  margin-top: 0;
}

.single .p-article__body {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .single .p-article__body {
    margin-top: 40px;
  }
}
.p-article__body h2 {
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 40px;
  padding-left: 36px;
  position: relative;
}
.p-article__body h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #004f99;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-article__body h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-article__body h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.p-article__body h3 {
  color: #1a1a1a;
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: 2px solid #004f99;
  font-size: 24px;
  line-height: 1.5;
  padding-left: 18px;
  margin-top: 50px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .p-article__body h3 {
    font-size: 20px;
    padding-left: 8px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
.p-article__body h4 {
  color: #1a1a1a;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 18px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.p-article__body h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #004f99;
  border-radius: 2px;
}
.p-article__body h4 {
  /*&::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #004f99;
    transform: translateY(-50%);
  }
  &::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
  }*/
}

@media screen and (max-width: 767px) {
  .p-article__body h4 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.p-article__body h5 {
  color: #1a1a1a;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 30px;
}
.p-article__body h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 2px;
  background: #004f99;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .p-article__body h5 {
    font-size: 16px;
    padding-left: 30px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.p-article__body p {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .p-article__body p {
    font-size: 14px;
  }
}
.p-article__body p + p {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-article__body p + p {
    margin-top: 20px;
  }
}
.p-article__body p + .wp-block-image,
.p-article__body .wp-block-image + p {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p-article__body figure {
    margin-top: 40px;
  }
}
.p-article__body figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.p-article__body figcaption {
  color: #1a1a1a;
  font-size: 12px;
  margin-top: 10px;
}

.p-article__body .wp-block-list {
  margin-bottom: 30px;
}
.p-article__body .wp-block-list:last-child {
  margin-bottom: 0;
}

.p-article__body .wp-block-list li {
  font-size: 16px;
  margin-bottom: 12px;
}
.p-article__body .wp-block-list li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-article__body .wp-block-list li {
    font-size: 14px;
  }
}

.p-article__body ul.wp-block-list li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-article__body ul.wp-block-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 100%;
  background: #004f99;
  position: relative;
  top: -3px;
  left: 0;
}

.p-article__body ol.wp-block-list {
  counter-reset: number;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  list-style: none;
}

.p-article__body ol.wp-block-list li {
  position: relative;
  padding-left: 30px;
  min-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.7;
}

.p-article__body ol.wp-block-list li::before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 3px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #004f99;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-article__btn {
  text-align: center;
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-article__btn {
    margin-top: 40px;
  }
}
.pーarticle__personnel {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .pーarticle__personnel {
    margin-top: 40px;
  }
}
.p-breadcrumb {
  background-color: #f5f5f5;
  padding: 10px 0;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding: 8px 0 7px 0;
  }
}
.p-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #999999;
  font-size: 14px;
}
.p-breadcrumb__list span {
  padding-right: 5px;
}
.p-breadcrumb__list span span {
  padding-left: 10px;
}
.p-breadcrumb__item {
  white-space: nowrap;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: "〉";
  margin: 0 0 0 10px;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__item:not(:last-child)::after {
    margin: 0 0 0 8px;
  }
}
.p-breadcrumb__item span,
.p-breadcrumb__item a {
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__item span,
  .p-breadcrumb__item a {
    font-size: 12px;
  }
}

.p-footer {
  background-color: #004f99;
  position: relative;
}
.p-footer::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 240px;
  background: url("../images/bg-wave03.svg") no-repeat center top/cover;
  background-color: #e6f7ff;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: block;
  }
}
.p-footer__content01 {
  min-width: 350px;
  padding: 50px;
  background-color: #004f99;
}

@media screen and (max-width: 767px) {
  .p-footer__content01 {
    min-width: 0;
    min-width: initial;
    padding: 40px;
  }
}
.p-footer__logo {
  width: 360px;
  margin: auto;
}

@media screen and (max-width: 1024px) {
  .p-footer__logo {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: 100%;
    max-width: 240px;
    margin-inline: auto;
  }
}
.p-footer__logo img {
  width: 100%;
  height: auto;
}

.p-footer__address {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-footer__address {
    text-align: center;
    font-size: 12px;
  }
}
.p-footer__cta {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-footer__cta {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-footer__cta-tel a {
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-tel a {
    font-size: 12px;
  }
}

.p-footer__content02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 50px;
  background-color: #003566;
}
@media screen and (max-width: 767px) {
  .p-footer__content02 {
    display: block;
  }
}

.p-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .p-footer__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-footer__link a {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-footer__link a {
    font-size: 12px;
  }
}

.p-footer__copy {
  color: #fff;
  font-size: 12px;
  margin-top: 30px;
  line-height: 1.6363636364;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .p-footer__copy {
    text-align: center;
    font-size: 11px;
  }
}
.p-footer__cta-mail {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-mail {
    font-size: 12px;
  }
}

.p-footer__cta-mail img {
  width: 100%;
  height: auto;
}

.p-footer__cta-mail a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  padding-top: 3px;
}

.p-footer__pagetop {
  text-align: center;
  background-color: #004280;
}

.p-footer__pagetop a {
  display: block;
  padding: 20px 50px;
}

.p-footer__pagetop-text {
  color: #fff;
  font-size: 14px;
}

.p-header {
  height: 72px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  -webkit-box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
  .p-header {
    height: 66px;
  }
}
.p-header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 72px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-header__main {
    height: 66px;
  }
}
.p-header__logo a {
  display: inline-block;
  width: 100%;
  vertical-align: bottom;
  line-height: 1;
}
.p-header__logo img {
  display: inline-block;
  width: auto;
  height: 62px;
}
@media screen and (max-width: 1024px) {
  .p-header__logo img {
    height: 46px;
  }
}

.p-header__subnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-header__subnav {
    display: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 40px;
    max-width: 500px;
    margin-inline: auto;
  }
}
.p-header__subnav.p-header__subnav--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-header__subnav.p-header__subnav--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__subnav-item {
  height: inherit;
}

.p-header__subnav-item a {
  display: inline-block;
  height: inherit;
  color: #1a1a1a;
  font-size: 12px;
  padding: 13px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-header__subnav-item a {
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
  }
}
.p-header__subnav-item a i {
  display: inline-block;
  margin-right: 5px;
}

.p-header__subnav-item:last-child a {
  padding-right: 0;
}

.p-header__drawer {
  background: -webkit-gradient(linear, left top, right top, from(#0078c2), to(#090b62));
  background: linear-gradient(90deg, #0078c2, #090b62);
}

@media screen and (max-width: 767px) {
  .p-header__drawer {
    display: none;
    position: fixed;
    width: 100%;
    height: 100svh;
    top: 0;
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(#0078c2), to(#090b62));
    background: linear-gradient(90deg, #0078c2, #090b62);
    padding-top: 160px;
    padding-bottom: 100px;
  }
}
.p-header__nav {
  height: 56px;
}

@media screen and (max-width: 767px) {
  .p-header__nav {
    height: auto;
    height: initial;
  }
}
.p-header__nav-list {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 925px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .p-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: inherit;
  }
}
.p-header__nav-item {
  height: inherit;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-header__nav-item {
    height: auto;
    height: initial;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .p-header__nav-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.p-header__nav-item a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .p-header__nav-item a {
    height: auto;
    height: initial;
    padding: 20px;
    width: 100%;
  }
}
.p-header__nav-item.current a {
  background-color: rgba(255, 255, 255, 0.35);
}

@media screen and (max-width: 767px) {
  .p-header__nav-item.current a {
    background-color: transparent;
  }
}
@media (hover: hover) {
  .p-header__nav-item > a:hover {
    background-color: rgba(255, 255, 255, 0.35);
  }
}
.hamburger-trigger {
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger-trigger {
    display: block;
    height: inherit;
    width: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    z-index: 100;
  }
}
.hamburger-trigger span {
  display: none;
}

@media screen and (max-width: 767px) {
  .hamburger-trigger span {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: #0078c2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.hamburger-trigger.open span {
  background-color: #fff;
}

.hamburger-trigger.open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-trigger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-trigger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(8px, -7px);
  transform: rotate(-45deg) translate(8px, -7px);
}

@media screen and (max-width: 767px) {
  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    height: 100vh;
    background: #004f99;
    padding: 80px 0 40px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
    z-index: 99;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-header__nav a {
    color: #fff;
  }
  .site-header__nav.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-message-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-message-top__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-message-top__content {
  width: 54.7%;
}

@media screen and (max-width: 1024px) {
  .p-message-top__content {
    width: 100%;
    margin-inline: auto;
  }
}
.p-message-top__img {
  width: 35%;
  margin-top: 50px;
}

@media screen and (max-width: 1024px) {
  .p-message-top__img {
    width: 60%;
    margin-inline: auto;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-message-top__img {
    width: 80%;
  }
}
.p-message-top__img figcaption {
  font-size: 12px;
  margin-top: 16px;
}

.p-message-top__img img {
  width: 100%;
  height: auto;
}

.p-message-top__text01 {
  font-size: 16px;
  line-height: 2;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-message-top__text01 {
    font-size: 14px;
    margin-top: 20px;
    padding-top: 0;
  }
}
.p-message-top__text01 span {
  display: block;
}

.p-message-top__text01 span + span {
  margin-top: 20px;
}

.p-message-top__name {
  text-align: right;
  display: block;
  margin-top: 20px;
}

.p-message-top__text02 {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
  padding-top: 16px;
}

@media screen and (max-width: 767px) {
  .p-message-top__text02 {
    font-size: 14px;
    margin-top: 30px;
    padding-top: 0;
  }
}
.p-message__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-message__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.p-message__body {
  width: 45.5%;
  min-width: 346px;
}

@media screen and (max-width: 1024px) {
  .p-message__body {
    width: 100%;
    min-width: 0;
    margin-top: 30px;
  }
}
.p-message__img {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .p-message__img {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__img {
    width: 100%;
  }
}
.p-message__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.p-message__text {
  color: #1a1a1a;
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .p-message__text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__text {
    font-size: 14px;
    margin-top: 24px;
  }
}
.p-message-top__btn {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-message-top__btn {
    margin-top: 30px;
  }
}
.p-message-top__btn .c-btn02:nth-child(n+2) {
  border-top: none;
}

.p-mv .l-inner.l-inner--xlg {
  max-width: 100%;
  padding: 0;
}

.p-mv__slider {
  position: relative;
  padding-bottom: 30px;
  /* ページネーションの余白 */
  /* ページネーションのサイズと色 */
}
.p-mv__slider::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 12vw;
  z-index: 1;
  background: url("../images/bg-wave01.svg") no-repeat center top/cover;
}
@media screen and (max-width: 1440px) {
  .p-mv__slider::after {
    bottom: -40px;
  }
}
@media screen and (max-width: 1024px) {
  .p-mv__slider::after {
    bottom: -30px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider::after {
    background: url("../images/bg-wave01.svg") no-repeat 10% top/cover;
    bottom: -5vw;
    height: 22vw;
  }
}

@media screen and (max-width: 767px) {
  .p-mv__slider {
    padding-bottom: 30px;
  }
}
.p-mv__slider .p-mv__slider-slide img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
  min-height: 300px;
  aspect-ratio: 3/1;
}

@media screen and (max-width: 767px) {
  .p-mv__slider .p-mv__slider-slide img {
    min-height: 0;
    aspect-ratio: 1/1;
  }
}
.p-mv__slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 2vw;
}

.p-mv__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.p-mv__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 12px;
}

@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .p-mv__slider .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
  }
}
.p-mv__slider .swiper-pagination-bullet {
  background-color: #cccccc;
  height: 14px;
  width: 14px;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}
.p-mv__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #004f99;
}

.p-mv__slider .swiper-button-prev,
.p-mv__slider .swiper-button-next {
  width: 40px;
  height: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .p-mv__slider .swiper-button-prev,
  .p-mv__slider .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 42%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-prev,
  .p-mv__slider .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
.p-mv__slider .swiper-button-next {
  top: 45%;
  right: 20px;
}

@media screen and (max-width: 1024px) {
  .p-mv__slider .swiper-button-next {
    top: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-next {
    top: 45%;
  }
}
.p-mv__slider .swiper-button-prev {
  top: 45%;
  left: 20px;
}

@media screen and (max-width: 1024px) {
  .p-mv__slider .swiper-button-prev {
    top: 40%;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-prev {
    top: 45%;
  }
}
.p-mv__slider .swiper-button-prev:after,
.p-mv__slider .swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}

.p-mv__slider .swiper-button-prev::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/icon-arrow.png) no-repeat center center/contain;
}

@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-prev::before {
    width: 30px;
    height: 30px;
  }
}
.p-mv__slider .swiper-button-next::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(../images/icon-arrow.png) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-next::before {
    width: 30px;
    height: 30px;
  }
}
.p-mv__slider.slider-off {
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .p-mv__slider.slider-off {
    padding-bottom: 10px;
  }
}
.p-mv__slider.slider-off .swiper-button-prev,
.p-mv__slider.slider-off .swiper-button-next {
  display: none;
}

.p-page-top {
  opacity: 0;
  visibility: hidden;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 30px;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .p-page-top {
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.p-page-top a img {
  width: 100%;
  height: auto;
}

.p-page {
  padding: 100px 100px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-page {
    padding: 80px 40px 80px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-page {
    padding: 50px 0px 60px 0px;
  }
}
.p-page__title {
  display: block;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.05em;
  padding: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-page__title {
    font-size: 20px;
    padding: 40px 15px;
  }
}
.p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  width: 30%;
  background-color: #f5f5f5;
}

.p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  font-size: 16px;
  font-weight: 400;
  padding: 12px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
  .p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    font-size: 14px;
  }
}
.p-page p a,
.p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td a {
  display: inline-block;
  -webkit-transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0.5s ease;
  transition: transform 0.5s ease, color 0.5s ease, -webkit-transform 0.5s ease;
}

.p-page p a:hover,
.p-page .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #004f99;
}

/*.p-news__list-item a[href$='.pdf']::after,
.p-page a[href$='.pdf']::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 16px;
  margin-left: 15px;
  background-image: url('../images/ico-pdf.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-news__list-item a[target='_blank']::after,
.p-page a[target='_blank']::after {
  content: '\f08e';
  display: inline-block;
  font-weight: 900;
  font-family: 'Font Awesome 6 Free';
  line-height: 1;
  margin-left: 15px;
  color: #004f99;
  font-size: 12px;
}

.p-news__list-item a[href$='.pdf'][target='_blank']::after,
.p-page a[href$='.pdf'][target='_blank']::after {
  content: '';
  background-image: url('../images/ico-pdf.svg');
  font-family: initial; 
  color: transparent; 
}*/
/* =========================
   タイトル
========================= */
.p-news__list-title span,
.p-archive__item-title span {
  display: inline;
}

/* =========================
   アイコン共通
========================= */
.p-news__list-title span::after,
.p-archive__item-title span::after {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: baseline;
}

/* =========================
   PDFアイコン
========================= */
.p-news__list-item a[href$=".pdf"] .p-news__list-title span::after,
.p-archive__item a[href$=".pdf"] .p-archive__item-title span::after {
  content: "";
  width: 12px;
  height: 16px;
  background: url("../images/ico-pdf.svg") center/contain no-repeat;
}

/* =========================
   外部リンクアイコン
========================= */
.p-news__list-item a[target=_blank]:not([href$=".pdf"]) .p-news__list-title span::after,
.p-archive__item a[target=_blank]:not([href$=".pdf"]) .p-archive__item-title span::after {
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.8em;
  color: #004f99;
  line-height: 1;
}

/* =========================
   PDF優先
========================= */
.p-news__list-item a[href$=".pdf"][target=_blank] .p-news__list-title span::after,
.p-archive__item a[href$=".pdf"][target=_blank] .p-archive__item-title span::after {
  content: "";
  width: 12px;
  height: 16px;
  background: url("../images/ico-pdf.svg") center/contain no-repeat;
}

/* aタグ側のafterを無効化 */
.p-archive__item-link::after,
.p-news__list-link::after {
  content: none !important;
  display: none !important;
}

.p-personnel-list__items {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p-personnel-list__items {
    margin-top: 20px;
  }
}
.p-personnel-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .p-personnel-list__item a {
    font-size: 12px;
  }
}
.p-personnel-list__item a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #1a1a1a;
  border-radius: 50%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  margin-top: 9px;
}

@media screen and (max-width: 767px) {
  .p-personnel-list__item a::before {
    width: 6px;
    height: 6px;
    margin-top: 8px;
  }
}
.p-personnel-list__item a i {
  margin-top: 5px;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .p-personnel-list__item a i {
    margin-left: 10px;
  }
}
.p-personnel__content {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .p-personnel__content {
    margin-top: 40px;
  }
}
.p-personnel__content-table table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .p-personnel__content-table table {
    margin-top: 30px;
  }
}
.p-personnel__content-table table th {
  width: 300px;
  background-color: #f5f5f5;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  padding: 24px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .p-personnel__content-table table th {
    width: 50%;
    font-size: 14px;
    padding: 12px;
  }
}
.p-personnel__content-table table td {
  font-size: 16px;
  border: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .p-personnel__content-table table td {
    font-size: 14px;
    width: 50%;
    font-size: 12px;
  }
}
.p-personnel__content-table table td a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0px;
}

.p-personnel__content-table table td a i {
  margin-left: 15px;
}

.p-personnel__content02 {
  margin-top: 70px;
}

.p-personnel__content-body {
  margin-top: 45px;
}

@media screen and (max-width: 767px) {
  .p-personnel__content-body {
    margin-top: 25px;
  }
}
.p-personnel__content-body.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-personnel__content-body.col2 .p-personnel__content-wrapper {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .p-personnel__content-body.col2 .p-personnel__content-wrapper {
    width: 100%;
  }
}
.p-personnel__content.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-personnel__content.col2 {
    display: block;
  }
}
.p-personnel__content.col2 .p-personnel__content-box {
  width: 45%;
}

@media screen and (max-width: 1024px) {
  .p-personnel__content.col2 .p-personnel__content-box {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .p-personnel__content-box + .p-personnel__content-box {
    margin-top: 40px;
  }
}
.p-message {
  position: relative;
  z-index: 3;
  margin: 40px auto 80px;
}
@media screen and (max-width: 767px) {
  .p-message {
    margin: 40px auto 40px;
  }
}

.p-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .p-message__inner {
    display: block;
  }
}

.p-message__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  max-width: 30%;
}
@media screen and (max-width: 1024px) {
  .p-message__img {
    max-width: 100%;
  }
}
.p-message__img img {
  aspect-ratio: 15/9;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center -30px;
     object-position: center -30px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.p-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.p-message__btn {
  text-align: center;
}

.p-image {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .p-image {
    width: 100%;
    margin-top: 40px;
  }
}

.p-image__img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.p-top-movies,
.p-top-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .p-top-movies,
  .p-top-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-movies__body,
.p-news__body {
  /*
  width: 43.9167208848%;
  @media screen and (max-width: 1024px) {
    width: 100%;
  }
  */
  width: 100%;
}

.p-top-movies__title,
.p-top-news__title {
  text-align: center;
  margin-top: -10px;
}
.p-top-movies__title.c-title01 .title_sub,
.p-top-news__title.c-title01 .title_sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
}

.p-news__list {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    margin-top: 27px;
  }
}

.p-news__list-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-news__list-item:nth-child(n+2) {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-news__list-item:nth-child(n+2) {
    margin-top: 19px;
  }
}

.p-news__list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: color 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, color 0.5s ease;
  transition: transform 0.5s ease, color 0.5s ease, -webkit-transform 0.5s ease;
}

.p-news__list-link:hover,
.p-archive__item-link:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-news__list-link:hover .p-news__list-time,
.p-news__list-link:hover .p-news__list-title,
.p-archive__item-link:hover .p-archive__item-date,
.p-archive__item-link:hover .p-archive__item-title {
  color: #004f99;
}

.p-news__list-img {
  border: 1px solid #ccc;
  width: 120px;
  min-width: 120px;
}
@media screen and (max-width: 767px) {
  .p-news__list-img {
    width: 100px;
    min-width: 100px;
  }
}

.p-news__list-body {
  width: 77.7611940299%;
  margin-left: 28px;
}
@media screen and (max-width: 767px) {
  .p-news__list-body {
    margin-left: 14px;
  }
}

.p-news__list-img img {
  aspect-ratio: 120/80;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-news__list-img img {
    aspect-ratio: 240/160;
  }
}

.p-news__list-time {
  color: #999999;
  width: 20.2962962963%;
  font-size: 14px;
  min-width: 120px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-news__list-time {
    font-size: 12px;
    min-width: 86px;
  }
}

.p-news__list-title {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-news__list-title {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 7px;
  }
}

.p-top-news__img {
  width: 49.9674690956%;
}
@media screen and (max-width: 1024px) {
  .p-top-news__img {
    width: 100%;
    margin-top: 40px;
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__img {
    height: 315px;
  }
}
.p-top-news__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-top-news__img img {
    -o-object-position: top;
    object-position: top;
  }
}

.p-top-news__movie {
  width: 49.9674690956%;
}
/****


****/
.p-top-movies__btn,
.p-top-news__btn {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-movies__btn,
  .p-top-news__btn {
    margin-top: 40px;
  }
}

.p-top-outline {
  padding-top: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .p-top-outline {
    display: block;
  }
}
.p-top-outline__body {
  width: 73.910214704%;
}

@media screen and (max-width: 1024px) {
  .p-top-outline__body {
    width: 100%;
  }
}
.p-top-outline__title {
  text-align: center;
}

.p-top-outline__lead {
  color: #000;
  font-size: 30px;
  margin-top: 52px;
}

@media screen and (max-width: 767px) {
  .p-top-outline__lead {
    font-size: 18px;
    margin-top: 30px;
  }
}
.p-top-outline__text {
  color: #000;
  font-size: 16px;
  line-height: 2;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .p-top-outline__text {
    margin-top: 35px;
    font-size: 14px;
  }
}
.p-top-outline__text span {
  display: block;
}

.p-top-outline__text span:not(:first-child) {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-top-outline__text span:not(:first-child) {
    margin-top: 16px;
  }
}
.p-top-outline__link {
  width: 19.5185426155%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px;
  margin-top: 16px;
}

@media screen and (max-width: 1024px) {
  .p-top-outline__link {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 27px;
    margin-top: 50px;
    max-width: 800px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-outline__link {
    max-width: 450px;
    gap: 15px;
  }
}
.p-top-outline__link-item a {
  color: #000;
  display: block;
  font-size: 16px;
  text-align: center;
  height: 100%;
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #ccc;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .p-top-outline__link-item a {
    font-size: 9px;
    height: 50px;
    padding: 4px;
  }
}
.p-top-outline__link-img {
  width: 62px;
}

@media screen and (max-width: 767px) {
  .p-top-outline__link-img {
    width: 35px;
  }
}
.p-top-outline__link-img img {
  width: 100%;
  height: auto;
}

.p-top-outline__link-banner {
  width: 100%;
  height: 100%;
}

.p-top-outline__link-item.p-top-outline__link-item--banner a {
  padding: 0;
}

.p-top-outline__link-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* banner */
.p-top-outline__link-item a,
.p-top-outline__link-img {
  width: 100%;
  height: auto;
  padding: 0;
}

.p-top {
  background-color: #fff;
  padding: 245px 90px 0 90px;
}
@media screen and (max-width: 1024px) {
  .p-top {
    padding: 180px 40px 100px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top {
    padding: 120px 15px 40px 15px;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}
.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.p-department {
  width: 100%;
  background: #e6f7ff;
  position: relative;
}
.p-department::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: -1;
  background: url("../images/bg-wave02.svg") no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .p-department::before {
    top: -70px;
    height: 70px;
  }
}
.p-department__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  padding: 40px 50px;
  background-color: #fff;
  position: relative;
  border-radius: 20px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .p-department__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
  }
}
.p-department__content dl {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .p-department__content dl {
    width: 100%;
  }
  .p-department__content dl:first-child {
    margin-bottom: 30px;
  }
}
.p-department__content dl dt {
  color: #004f99;
  font-size: 24px;
  text-align: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-department__content dl dt {
    font-size: 18px;
  }
}
.p-department__content dl ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 1440px) {
  .p-department__content dl ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1024px) {
  .p-department__content dl ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-department__content dl ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.p-department__content dl a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  border: 1px solid #d8d8d8;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-department__content dl a img {
  display: inline;
}
.p-department__content dl a:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-movies__box {
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-movies__box {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-movies__box .mswiper-button-prev,
.p-movies__box .mswiper-button-next {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 1;
  cursor: pointer;
}
.p-movies__box .mswiper-button-prev span,
.p-movies__box .mswiper-button-next span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #0076c2;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.p-movies__box .mswiper-button-prev span::before,
.p-movies__box .mswiper-button-next span::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  top: calc(50% - 10px);
  left: 50%;
}
.p-movies__box .mswiper-button-prev {
  left: 0;
}
.p-movies__box .mswiper-button-prev span::before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 15px solid #0076c2;
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}
.p-movies__box .mswiper-button-next {
  right: 0;
}
.p-movies__box .mswiper-button-next span::before {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #0076c2;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}
.p-movies__box .mswiper-pagenation {
  z-index: 2;
}
.p-movies__box .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}
.p-movies__box .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #004f99;
}

.p-movies__list {
  position: relative;
  max-width: 640px;
  padding: 0;
  margin: 0 auto;
  z-index: 0;
  overflow: hidden;
}
.p-movies__list .swiper-wrapper {
  width: 100%;
  margin: 0 auto;
}
.p-movies__list.mod--archive {
  max-width: 100%;
}
.p-movies__list.mod--archive ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-movies__list.mod--archive ul li {
  width: 32%;
  margin-right: 2%;
}
@media screen and (max-width: 767px) {
  .p-movies__list.mod--archive ul li {
    width: 48%;
    margin-right: 4%;
  }
}
@media screen and (max-width: 767px) {
  .p-movies__list.mod--archive ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 767.02px) {
  .p-movies__list.mod--archive ul li:nth-child(3n) {
    margin-right: 0;
  }
}
.p-movies__list--item {
  max-width: 100%;
  padding: 0;
  margin: 0;
}
.p-movies__list--item figure {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.p-movies__list--item figure iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100%;
}

.wp-block-buttons,
.wp-block-button {
  margin-top: 1.6rem;
}

.p-topics-archive__btn .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-topics-archive__btn .wp-pagenavi {
    font-size: 12px;
  }
}
.p-topics-archive__btn .wp-pagenavi a {
  padding: 4px 8px;
  margin: 0 5px;
  border-radius: 4px;
}
.p-topics-archive__btn .wp-pagenavi a:hover {
  border-color: #004f99;
  color: #004f99;
}
.p-topics-archive__btn .wp-pagenavi span {
  margin: 0 5px;
  border-radius: 4px;
  padding: 4px 8px;
}
.p-topics-archive__btn .wp-pagenavi span.current {
  background-color: #004f99;
  color: #fff;
  border-radius: 4px;
}/*# sourceMappingURL=styles.css.map */