@charset "UTF-8";
html {
  font-size: 62.5%;
  /*16px * 62.5% = 10px*/
}
html p {
  font-size: 1.6rem;
  /*10px * 1.6 = 16px*/
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 0;
  }
}
body a:hover {
  opacity: 0.5;
  -webkit-transition: 1s;
  transition: 1s;
}

header .logo-area {
  background-color: #fff;
  padding: 15px 2.5%;
  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;
}
header .logo-area .logo {
  width: 320px;
}
@media screen and (max-width: 1024px) {
  header .logo-area .logo {
    width: 200px;
  }
}
header .logo-area nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  font-size: 12px;
  gap: 20px;
}
header .logo-area nav ul li a {
  color: #415fa5;
}
@media screen and (max-width: 1024px) {
  header .logo-area nav {
    display: none;
  }
}

.global-nav {
  position: relative;
  background-color: #415fa5;
  padding: 0 2.5%;
}
.global-nav .menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
}
.global-nav .link-menu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .global-nav .link-menu {
    display: block;
  }
}
.global-nav .trc-gmenu-class {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .global-nav .trc-gmenu-class {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.global-nav .trc-gmenu-class .menu-item i::before {
  font-size: 12px;
  margin-right: 4px;
}
.global-nav .trc-gmenu-class li a {
  font-size: 16px;
  color: #fff;
  padding: 12px 16px;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /*--幅を指定--*/
  -webkit-transition: 1s all;
  transition: 1s all;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .global-nav .trc-gmenu-class li a {
    padding: 14px 40px 14px 30px;
    position: relative;
    border-bottom: 1px solid #415fa5;
  }
}
.global-nav .trc-gmenu-class li a:hover {
  background-color: #324980;
  opacity: 1;
}
.global-nav .trc-gmenu-class li a::before {
  position: absolute; /*--positionを追加--*/
  top: 16px;
  margin: 0 -16px;
  content: "";
  width: 1px; /*--縦線の太さ(幅)--*/
  height: 20px;
  background-color: #5b6d99; /*--縦線の色--*/
}
@media screen and (max-width: 1024px) {
  .global-nav .trc-gmenu-class li a::before {
    background-color: transparent;
  }
}
@media screen and (max-width: 1280px) {
  .global-nav .trc-gmenu-class li a {
    font-size: 14px;
  }
}
.global-nav .trc-gmenu-class li:hover > .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.global-nav .trc-gmenu-class li:nth-child(n+14) {
  display: none;
}
@media screen and (max-width: 1024px) {
  .global-nav .trc-gmenu-class li:nth-child(n+14) {
    display: block;
  }
}
.global-nav .trc-gmenu-class li:nth-child(13) a::after {
  position: absolute; /*--positionを追加--*/
  top: 16px;
  margin-left: 16px;
  content: "";
  width: 1px; /*--縦線の太さ(幅)--*/
  height: 20px;
  background-color: #5b6d99; /*--縦線の色--*/
}
@media screen and (max-width: 1024px) {
  .global-nav .trc-gmenu-class li:nth-child(13) a::after {
    background-color: transparent;
  }
}
.global-nav .trc-gmenu-class .sub-menu li a::before {
  top: 20px;
  margin: 0 -20px;
}
.global-nav .trc-gmenu-class .sub-menu li a::after {
  top: 20px;
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .global-nav.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.global-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #324980;
  width: 100%;
  padding: 10px 20px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
@media screen and (max-width: 1625px) {
  .global-nav .sub-menu {
    top: 50%;
  }
}
.global-nav .sub-menu li a {
  font-size: 14px;
  padding: 20px;
  border-bottom: none;
}
.global-nav .sub-menu li a::after {
  top: 12px;
  height: 16px;
  left: 100%;
}
.global-nav .sub-menu li:first-child a::before {
  display: none;
}
.global-nav .sub-menu .mega-column ul {
  list-style: none;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .global-nav .sub-menu {
    position: static;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: none;
  }
  .global-nav .sub-menu.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav .trc-gmenu-class {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #fff;
    position: absolute;
    left: 0;
    width: 100%;
  }
  .global-nav .trc-gmenu-class.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #415fa5;
    z-index: 2;
    padding: 20px 0;
    height: 100vh;
  }
  .global-nav .trc-gmenu-class.active li {
    position: relative;
    width: 100%;
  }
  .global-nav .menu-toggle {
    display: block;
    font-size: 24px;
    color: #415fa5;
    cursor: pointer;
    position: absolute;
    top: -50px;
    right: 2.5%;
  }
  .global-nav .menu-toggle span {
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .global-nav .menu-toggle.open {
    color: #415fa5;
  }
}
.global-nav .submenu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 49px;
  background-color: #324980;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .global-nav .submenu-toggle {
    display: none;
  }
}
@media (max-width: 1024px) {
  .global-nav .sub-menu {
    display: none !important;
  }
  .global-nav .menu-item-has-children.submenu-open > .sub-menu {
    display: block !important;
    border-bottom: 1px solid #415fa5;
  }
}

/* ハンバーガーメニューの中のサブメニュー（お問い合わせ等） */
/* 共通スタイル */
.global-nav .menu-item.icon a {
  color: #fff;
  font-size: 14px;
  display: block;
  white-space: nowrap;
}

.icon i {
  margin-right: 4px;
}

main {
  padding-top: 0;
}
main.p-topics {
  padding-bottom: 0;
}
@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: 1100px) {
  :where(.wp-block-columns.is-layout-flex) {
    gap: 1em;
  }
}
.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.5s !important;
    animation-duration: 0.5s !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.5s !important;
    transition-duration: 0.5s !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  margin-inline: auto;
}
.l-inner.l-inner--lg {
  max-width: 1636px;
  margin-inline: auto;
}

.l-inner.l-inner--xlg {
  margin-inline: auto;
}

.top-contents .wp-block-group__inner-container {
  margin: 0 auto 60px;
  padding: 0 5%;
  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: 767px) {
  .top-contents .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;
  }
}
.top-contents .wp-block-group__inner-container > section {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .top-contents .wp-block-group__inner-container > section {
    width: 100%;
  }
}

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

.c-btn01 {
  color: #415fa5;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  padding: 14px;
  width: 200px;
  background-color: #fff;
  border: 1px solid #415fa5;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.c-btn01:hover {
  color: #fff;
  background-color: #415fa5;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .c-btn01 {
    font-size: 14px;
    min-width: 200px;
  }
}
.c-btn01 span {
  position: relative;
  z-index: 2;
}

@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: #333;
  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: #415fa5;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .c-title01 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-title01 {
    font-size: 24px;
  }
}
.c-title01 span {
  color: #999;
  font-weight: 700;
  font-size: 16px;
  display: block;
}

.c-title02 {
  color: #415fa5;
  font-size: 36px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .c-title02 {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 24px;
  }
}

.c-title03 {
  color: #333;
  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: #333;
  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__list {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-archive__list {
    margin-top: 40px;
  }
}

.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;
}
.p-archive__item-link:hover {
  opacity: 1;
}
.p-archive__item-link:hover .p-archive__item-date {
  color: #00b0ed;
}
.p-archive__item-link:hover .p-archive__item-title {
  color: #00b0ed;
}

.p-archive__img {
  border: 1px solid #ccc;
  width: 20%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  min-width: 180px;
}
@media screen and (max-width: 1024px) {
  .p-archive__img {
    min-width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-archive__img {
    min-width: 120px;
  }
}

.p-archive__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.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: #999;
  font-size: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-archive__item-date {
    font-size: 12px;
  }
}

.p-archive__item-title {
  color: #333;
  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;
  }
}
.p-article__time {
  font-size: 16px;
}

.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 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .p-article__body {
    margin-top: 40px;
  }
}
/*==========================================
 見出し
===========================================*/
.p-article__body h2 {
  color: #415fa5;
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-article__body h2 {
    font-size: 24px;
  }
}

.p-article__body h3 {
  color: #415fa5;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  padding: 10px 16px;
  margin-bottom: 30px;
  border-top: 1px solid #415fa5;
  border-bottom: 1px solid #415fa5;
}

.p-article__body h4 {
  color: #415fa5;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 500;
}

/*==========================================
 段落
===========================================*/
.p-article__body p {
  color: #333;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
}
@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 .wp-block-image figure {
  margin-bottom: 40px;
}

.p-article__body figure img {
  width: 100%;
  height: auto;
}

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

.p-article__body .wp-block-columns {
  margin-bottom: 40px;
}

.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-article__body ul {
  margin-bottom: 20px;
}
.p-article__body ul li {
  font-size: 16px;
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .p-article__body ul li {
    font-size: 14px;
  }
}
.p-article__body ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 100%;
  background: #415fa5;
  position: relative;
  top: -3px;
  left: 0;
}

.p-article__body ol {
  counter-reset: li;
  margin-bottom: 20px;
}
.p-article__body ol li {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  .p-article__body ol li {
    font-size: 14px;
  }
}
.p-article__body ol li::before {
  display: inline-block;
  min-width: 1.7em;
  margin-right: 8px;
  border-radius: 50%;
  background-color: #415fa5;
  color: #fff;
  font-weight: normal;
  font-size: 0.75em;
  line-height: 1.7em;
  text-align: center;
  content: counter(li);
  counter-increment: li;
}

/*==========================================
 表組み
===========================================*/
.p-article__body .wp-block-flexible-table-block-table {
  margin-bottom: 40px;
}
.p-article__body .wp-block-flexible-table-block-table th, .p-article__body .wp-block-flexible-table-block-table td {
  font-size: 14px !important;
  padding: 16px;
}
.p-article__body .wp-block-flexible-table-block-table th {
  font-weight: normal;
  background-color: #415fa5 !important;
}

/*==========================================
 ギャラリーブロック
===========================================*/
.p-article__body .wp-block-gallery {
  margin-bottom: 40px;
}

/*==========================================
 YouTube
===========================================*/
.p-article__body .wp-block-embed {
  margin-bottom: 40px;
}
.p-article__body .wp-block-embed-youtube {
  text-align: center;
}
.p-article__body .wp-block-embed-youtube iframe {
  width: 100%;
  max-width: 768px;
  aspect-ratio: 16/9;
  height: auto;
}

/*==========================================
 ボタン
===========================================*/
.p-article__body .wp-block-buttons.is-layout-flex {
  gap: 20px;
}
.p-article__body .wp-block-buttons .wp-block-button a {
  color: #415fa5;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  padding: 12px 18px;
  background-color: #fff;
  border: 1px solid #415fa5;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-article__body .wp-block-buttons .wp-block-button a:hover {
  color: #fff;
  background-color: #415fa5;
  opacity: 1;
}
.p-article__body .wp-block-buttons .wp-block-button a:hover::after {
  color: #fff;
}
.p-article__body a.btn {
  color: #415fa5;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  padding: 12px 18px;
  background-color: #fff;
  border: 1px solid #415fa5;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-article__body a.btn:hover {
  color: #fff;
  background-color: #415fa5;
  opacity: 1;
}
.p-article__body a.btn:hover::before {
  color: #fff;
}
.p-article__body a.btn[target=_blank] {
  color: #415fa5;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  padding: 12px 18px;
  background-color: #fff;
  border: 1px solid #415fa5;
  border-radius: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.p-article__body a.btn[target=_blank]::before {
  content: "\f08e";
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  line-height: 1;
  margin-right: 4px;
  color: #415fa5;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
  z-index: 0;
}
.p-article__body a.btn[target=_blank]::after {
  display: none !important;
}
.p-article__body a.btn[target=_blank]:hover {
  color: #fff;
  background-color: #415fa5;
  opacity: 1;
}
.p-article__body a.btn[target=_blank]:hover::before {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-article__body a.btn[target=_blank] {
    font-size: 14px;
  }
}

/*==========================================
 パンくず
===========================================*/
.p-breadcrumb {
  background-color: #f5f5f5;
  padding: 10px 2.5%;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb {
    padding: 8px 2.5%;
  }
}
.p-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb__item {
  white-space: nowrap;
}
.p-breadcrumb__item:not(:last-child)::after {
  content: "〉";
  margin: 0 5px 0 10px;
}
@media screen and (max-width: 767px) {
  .p-breadcrumb__item:not(:last-child)::after {
    margin: 0 3px 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 {
  padding: 60px 5%;
  background: #415fa5;
}

@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: block;
  }
}
.p-footer__content01 {
  min-width: 350px;
}
@media screen and (max-width: 980px) {
  .p-footer__content01 {
    width: 100%;
  }
}

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

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

.p-footer__address {
  color: #fff;
  font-size: 14px;
  margin-top: 20px;
}
@media screen and (max-width: 980px) {
  .p-footer__address {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-footer__address {
    text-align: center;
  }
}
.p-footer__cta {
  margin-top: 10px;
}

@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;
  }
}
@media screen and (max-width: 980px) {
  .p-footer__cta-tel {
    text-align: center;
  }
}

.p-footer__cta-tel a {
  color: #fff;
  font-size: 14px;
}

.p-footer__content02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 980px) {
  .p-footer__content02 {
    margin: 0 auto;
  }
}

.p-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-footer__link .icon {
  padding-left: 4px;
}
.p-footer__link li i {
  font-size: 12px;
  color: #fff;
}
.p-footer__link nav:nth-child(1) {
  text-align: right;
  margin-bottom: 30px;
}
@media screen and (max-width: 980px) {
  .p-footer__link nav:nth-child(1) {
    text-align: center;
  }
}
.p-footer__link nav:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 20px;
}
@media screen and (max-width: 980px) {
  .p-footer__link nav:nth-child(2) {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-footer__link nav:nth-child(2) ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-footer__link {
    margin-top: 36px;
    -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: 600px) {
  .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;
  }
}
.p-footer__cta-mail {
  width: 160px;
  margin-top: 10px;
}
@media screen and (max-width: 980px) {
  .p-footer__cta-mail {
    margin: 10px auto 0;
  }
}

.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-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;
}

.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: #333;
  font-size: 12px;
  padding: 13px;
  -webkit-transition: 1s;
  transition: 1s;
  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: 1s;
  transition: 1s;
}

@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);
  }
}
.p-header__hamburger {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-header__hamburger {
    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;
  }
}
.p-header__hamburger span {
  display: none;
}

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

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

.p-header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

.p-message-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-message-top__img {
  width: 35%;
  margin-top: 50px;
}

@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: 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: #333333;
  font-size: 16px;
  line-height: 2;
  margin-top: 50px;
}

@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__slider {
  position: relative;
  padding-bottom: 45px;
  /* ページネーションの余白 */
  /* ページネーションのサイズと色 */
}

.p-mv__slider-img:hover {
  opacity: 1;
}

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

@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: 0;
  z-index: 0;
}

.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;
}

@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: 12px;
  width: 12px;
  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: #415fa5;
}

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

@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: 0px;
}

@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-next {
    top: 46%;
  }
}
.p-mv__slider .swiper-button-prev {
  top: 43%;
  left: 0px;
}

@media screen and (max-width: 767px) {
  .p-mv__slider .swiper-button-prev {
    top: 46%;
  }
}
.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: 61px;
  height: 61px;
  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: 61px;
  height: 61px;
  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 {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 30px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-page-top {
    width: 40px;
    height: 40px;
  }
}

@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 {
  margin: 60px auto;
  max-width: 960px;
}
@media screen and (max-width: 1024px) {
  .p-page {
    margin: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-page {
    margin: 40px 20px;
  }
}

.p-page__title {
  display: inline-block;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.1em;
  background-color: #333;
  padding: 4px 36px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: -webkit-gradient(linear, left top, right top, from(#0078C2), to(#090B62));
  background: linear-gradient(90deg, #0078C2, #090B62);
  /*
  position: absolute;
  top: 0;
  left: 0;
  left: 100px;
  */
}

@media screen and (max-width: 767px) {
  .p-page__title {
    font-size: 18px;
    padding: 6px 20px;
  }
}
.p-page a[target=_blank]::after {
  content: "\f08e";
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  line-height: 1;
  margin-left: 5px;
  color: #415fa5;
}

.archive .p-page a[target=_blank]::after {
  margin-left: 15px;
}

.p-page .img a[target=_blank]::after {
  display: none;
}

.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: #333;
  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: 1100px) {
  .p-personnel__content.col2 {
    display: block;
  }
}
.p-personnel__content.col2 .p-personnel__content-box {
  width: 45%;
}

.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: 1100px) {
  .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: 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: 1s;
  transition: 1s;
}

.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;
}
.p-news__list-link:hover {
  opacity: 1;
}
.p-news__list-link:hover .p-news__list-time {
  color: #00b0ed;
}
.p-news__list-link:hover .p-news__list-title {
  color: #00b0ed;
}

.p-news__list-img {
  border: 1px solid #ccc;
  width: 180px;
}

.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: 180/120;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-news__list-img img {
    aspect-ratio: 180/120;
  }
}

.p-news__list-time {
  color: #999;
  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: #333;
  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;
  -webkit-transition: 1s all;
  transition: 1s all;
}
@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: 1100px) {
  .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: 1100px) {
  .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;
}

.p-top-outline__title {
  text-align: center;
}

.p-top-outline__lead {
  color: #333;
  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: #333;
  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: 767px) {
  .p-top-outline__link {
    max-width: 450px;
    gap: 15px;
  }
}
.p-top-outline__link-item a {
  color: #333;
  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: 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: #F5F5F5;
}
.p-department__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 60px 50px;
}
.p-department__inner dl {
  width: 49%;
}
.p-department__inner dl dt {
  font-size: 24px;
}
.p-department__inner dl dt::before {
  width: 24px;
  height: 24px;
  margin-top: 7px;
  margin-right: 15px;
}
.p-department__inner dl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
}
.p-department__inner dl ul li {
  min-width: 240px;
  margin-right: 25px;
  margin-bottom: 20px;
}

.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%;
  display: none;
}
.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;
  margin: 0 8px !important;
}
.p-movies__box .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #415fa5;
}

.p-movies__list {
  position: relative;
  max-width: 640px;
  padding: 0 0 10px 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;
  row-gap: 20px;
}
.p-movies__list.mod--archive ul li {
  width: 32%;
  margin-right: 2%;
  padding-left: 0;
}
@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: 767px) {
  .p-movies__list.mod--archive ul li:nth-child(3n) {
    margin-right: 0;
  }
}
.p-movies__list.mod--archive ul li::before {
  display: none;
}
.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;
}

/*==========================================
 ページタイトル
===========================================*/
.archive .title-area, .single .title-area, .page .title-area {
  color: #415fa5;
  text-align: center;
  text-shadow: none;
  padding: 30px 20px;
  background-image: url(../../../uploads/bg_title.jpg);
  background-position: center;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  background-size: cover;
}
.archive .title-area h1, .archive .title-area p, .single .title-area h1, .single .title-area p, .page .title-area h1, .page .title-area p {
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .archive .title-area h1, .archive .title-area p, .single .title-area h1, .single .title-area p, .page .title-area h1, .page .title-area p {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .archive .title-area h1, .archive .title-area p, .single .title-area h1, .single .title-area p, .page .title-area h1, .page .title-area p {
    font-size: 24px;
  }
}

.home .title-area {
  display: none;
}

/*==========================================
 お知らせ一覧ページネーション
===========================================*/
.p-topics-archive__btn {
  text-align: center;
  margin-top: 40px;
}
.p-topics-archive__btn .wp-pagenavi span, .p-topics-archive__btn .wp-pagenavi a {
  font-size: 14px;
  padding: 3px 6px;
  margin: 6px;
}
.p-topics-archive__btn .wp-pagenavi span.current {
  color: #fff;
  background-color: #415fa5;
  border: 1px solid #415fa5;
}
.p-topics-archive__btn .wp-pagenavi a:hover {
  border: 1px solid #415fa5;
}/*# sourceMappingURL=styles.css.map */