@charset "UTF-8";
/* ***************************************************
 PC / SP共通
*************************************************** */
/* ////////////////// タグ初期値 ////////////////// */
html,
body {
  height: 100%;
  margin: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "HelveticaNowText-Regular", sans-serif
}
html.scroll-prevent {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  color: #14191E;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
  line-height: 1.25em;
}

a {
  text-decoration: none;
  color: #14191E;
}

p {
  margin-top: 0;
  margin-bottom: 1.5em;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li, dt, dd {
  margin: 0px;
  padding: 0px;
}

table,
th,
td {
  border-collapse: collapse;
  border: 1px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -moz-box-sizing: content-box;
  height: 0;
}

/* テーブル */
table {
  width: 100%;
  margin: 0 auto 1.5em;
  min-height: 0.1%;
  overflow: auto;
}

td,
th {
  padding: 0.5em;
  border: 1px solid #C7C8C9;
}

th {
  white-space: nowrap;
  background-color: #EEEEEE;
  font-weight: normal;
}

/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:959px) {
  /* SP header */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    width: 100%;
    height: 64px;
    background-color: #EEEEEE;
    border-bottom: 1px solid #C7C8C9;
  }
  #header.active {
    border-bottom: none;
  }
  #header.active #header-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    height: 100%;
    overflow-y: auto;
    background-color: #EEEEEE;
  }
  #header.active #header-nav .header-center,
  #header.active #header-nav .header-right {
    display: block;
    opacity: 1;
  }
  #header-nav {
    height: 100%;
    font-family: "HelveticaNowText-Medium", sans-serif;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header-nav span {
    position: relative;
    display: inline-block;
    line-height: 180%;
    white-space: nowrap;
  }
  #header-nav .header-logo {
    position: absolute;
    top: 12px;
    left: 5vw;
    width: 146px;
  }
  #header-nav .header-center,
  #header-nav .header-right {
    display: none;
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header-nav .header-center {
    padding-top: 80px;
  }
  #header-nav .header-center > li {
    white-space: nowrap;
    border-bottom: 1px solid #C7C8C9;
  }
  #header-nav .header-center > li a {
    display: block;
    padding: 16px 5vw;
  }
  #header-nav .header-center .parent {
    position: relative;
    padding: 16px 5vw;
  }
  #header-nav .header-center .parent::before, #header-nav .header-center .parent::after {
    content: "";
    position: absolute;
    display: block;
    width: 12px;
    height: 2px;
    background-color: #14191E;
  }
  #header-nav .header-center .parent::before {
    top: 28px;
    right: 5vw;
  }
  #header-nav .header-center .parent::after {
    top: 28px;
    right: 5vw;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #header-nav .header-center .parent.active::after {
    display: none;
  }
  #header-nav .header-center .parent > ul {
    display: none;
    list-style: none;
    padding-top: 16px;
    background-color: #EEEEEE;
  }
  #header-nav .header-center .parent > ul li a {
    display: block;
    padding: 16px 0;
  }
  #header-nav .header-right {
    list-style: none;
    padding: 40px 5vw 0;
    font-size: 14px;
  }
  #header-nav .header-right a {
    display: block;
    color: #43474B;
    padding: 8px 0;
  }
  #header-nav .header-right li {
    margin: 0 0 4px;
    line-height: 100%;
  }
  #header-nav .header-right li.lang {
    font-family: "HelveticaNowText-Regular",sans-serif;
  }
  #header-nav .header-right li.lang a {
    padding-left: 32px;
    background-image: url(../images/common/icon-language.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: left center;
  }
  #hamburger {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 64px;
    height: 64px;
  }
  #hamburger div {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #hamburger i {
    display: inline-block;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background-color: #14191E;
  }
  #hamburger i:before, #hamburger i:after {
    content: "";
    height: 2px;
    border-radius: 3px;
    display: block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #14191E;
  }
  #hamburger i:before {
    -webkit-transform: translate(0px, -7px);
            transform: translate(0px, -7px);
  }
  #hamburger i:after {
    -webkit-transform: translate(0px, 5px);
            transform: translate(0px, 5px);
  }
  #hamburger.active i {
    height: 0;
  }
  #hamburger.active i:before {
    -webkit-transform: rotate(-45deg) translate(0, 0);
            transform: rotate(-45deg) translate(0, 0);
  }
  #hamburger.active i:after {
    -webkit-transform: rotate(45deg) translate(-1px, -2px);
            transform: rotate(45deg) translate(-1px, -2px);
  }
  /* SP Breadcrumb */
  .pankz {
    list-style: none;
    position: relative;
    z-index: 999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 90vw;
    margin: 100px auto 16px;
    padding: 0;
    font-family: "HelveticaNowText-Medium", sans-serif;
    font-size: 12px;
  }
  .pankz li {
    margin: 0 8px 8px;
  }
  .pankz li::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1px solid #C7C8C9;
    border-bottom: 1px solid #C7C8C9;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .pankz li:last-child::after {
    display: none;
  }
  .pankz li a {
    border-bottom: 1px solid #14191E;
    line-height: 130%;
  }
  .pankz li > span {
    color: #808386;
  }
  /* SP footer */
  #footer {
    background-color: #14191E;
    color: #C7C8C9;
    padding: 48px 5vw 24px;
  }
  #footer a {
    position: relative;
    color: #FFFFFF;
  }
  #footer a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #C7C8C9;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  #footer .footer-logo {
    margin-bottom: 40px;
  }
  #footer .footer-logo img {
    width: 145px;
  }
  #footer .footer-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
    font-size: 14px;
  }
  #footer .footer-nav .links {
    border-bottom: 1px solid #43474B;
  }
  #footer .footer-nav .links:last-child:not(:first-child) a {
    font-family: "HelveticaNowText-Bold", sans-serif;
    color: #FFFFFF;
  }
  #footer .footer-nav .links h3,
  #footer .footer-nav .links .single {
    position: relative;
    padding: 16px 0;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
  }
  #footer .footer-nav .links h3::before, #footer .footer-nav .links h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 12px;
    height: 2px;
    background-color: #FFFFFF;
  }
  #footer .footer-nav .links h3::before {
    top: 24px;
    right: 0;
  }
  #footer .footer-nav .links h3::after {
    top: 24px;
    right: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
  }
  #footer .footer-nav .links h3.active::after {
    display: none;
  }
  #footer .footer-nav .links ul {
    list-style: none;
  }
  #footer .footer-nav .links ul:not(#footer .footer-nav .links ul.single) {
    display: none;
    padding-bottom: 16px;
  }
  #footer .footer-nav .links ul.single {
    padding: 0;
    margin: 0;
  }
  #footer .footer-nav .links ul.single li {
    border-bottom: 1px solid #43474B;
  }
  #footer .footer-nav .links ul.single li:last-child {
    border-bottom: none;
  }
  #footer .footer-nav .links ul li a {
    display: block;
    padding: 16px 0;
    color: #C7C8C9;
  }
  #footer .footer-left {
    font-family: "HelveticaNowText-Regular",sans-serif;
  }
  #footer .footer-bottom {
    list-style: none;
    margin-bottom: 88px;
    font-size: 12px;
  }
  #footer .footer-bottom li {
    margin-bottom: 1em;
  }
  #footer .footer-bottom li a {
    display: block;
    padding: 0.25em 0;
    color: #C7C8C9;
  }
  #footer .copyright {
    margin: 0;
    text-align: center;
    font-size: 12px;
  }
  /* SP 全ページ共通要素 */
  .pc {
    display: none !important;
  }
  body {
    background-color: #EEEEEE;
  }
  #container {
    max-width: 100%;
    min-height: 100%;
    padding-top: 64px;
    overflow: hidden;
  }
  #container main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .container-page {
    position: relative;
    padding-top: 64px;
  }
  .container-page .page-title {
    padding: 0 5vw;
    font-size: 14px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    color: #0A2864;
  }
  #galaxy_left_25,
  #galaxy_right_25,
  #galaxy_left_50,
  #galaxy_right_50 {
    position: absolute;
    z-index: -1;
    width: 100%;
    max-width: 2000px;
  }
  #galaxy_left_25,
  #galaxy_right_25 {
    top: -64px;
  }
  #galaxy_left_25 {
    right: 0;
  }
  #galaxy_right_25 {
    left: 0;
  }
  #galaxy_left_50 {
    right: -5vw;
  }
  #galaxy_right_50 {
    left: -5vw;
  }
  .grid {
    display: grid;
    grid-template-columns: calc(5vw - 16px) repeat(6, 1fr) calc(5vw - 16px);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .wide {
    margin: 0 auto;
    padding: 0 5vw;
  }
  .side-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  .side-wrapper .sidebar {
    grid-column: 2/8;
    grid-row: 4;
    position: relative;
    margin-top: 120px;
  }
  .side-wrapper .sidebar .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 136px;
  }
  .side-wrapper .sidebar > ul {
    border-bottom: 1px solid #C7C8C9;
  }
  .side-wrapper .sidebar > ul > li:not(.sub) {
    padding-bottom: 16px;
    border-bottom: 1px solid #C7C8C9;
  }
  .side-wrapper .sidebar ul {
    list-style: none;
    font-size: 14px;
  }
  .side-wrapper .sidebar ul li {
    margin-bottom: 24px;
    line-height: 150%;
  }
  .side-wrapper .sidebar ul li a span {
    position: relative;
  }
  .side-wrapper .sidebar ul li a span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  .side-wrapper .sidebar ul li a:hover span::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .side-wrapper .sidebar ul li.current b {
    font-family: "HelveticaNowText-Bold", sans-serif;
    color: #0A2864;
  }
  .side-wrapper .sidebar ul li.sub {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .side-wrapper .sidebar ul li.sub a {
    color: #43474B;
  }
  .side-wrapper .sidebar ul li ul {
    margin-top: 1em;
    padding-left: 16px;
  }
  .side-wrapper .sidebar ul li ul li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 16px;
  }
  .side-wrapper .sidebar ul li ul li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #C7C8C9;
    border-bottom: 1px solid #C7C8C9;
  }
  .side-wrapper .main-article {
    grid-column: 2/8;
    position: relative;
    max-width: 800px;
  }
  .side-wrapper .main-article .article-title {
    margin-bottom: 24px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 14px;
    color: #0A2864;
  }
  main {
    word-break: break-all;
  }
  main article p {
    line-height: 180%;
  }
  main article h1,
  main article h2,
  main article h3,
  main article h4,
  main article h5,
  main article strong,
  main article b {
    font-family: "HelveticaNowText-Bold", sans-serif;
  }

  .main-article h1,
  .main-article h2,
  .main-article h3,
  .main-article h4,
  .main-article h5,
  .main-article strong,
  .main-article b {
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  main article ul {
    list-style: none;
    padding: 0;
  }
  main article ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    line-height: 180%;
  }
  main article ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #808386;
  }
  main article ol {
    list-style: none;
    counter-reset: num;
  }
  main article ol li {
    position: relative;
    counter-increment: num;
    margin-bottom: 12px;
    padding-left: 24px;
  }
  main article ol li::before {
    content: counter(num);
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    text-align: center;
    font-family: "HelveticaNowText-Bold", sans-serif;
    color: #808386;
  }
  main .btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 120px;
    padding: 0.75em 1em;
    line-height: 1em;
    border: 1px solid #14191E;
    border-radius: 5px;
    background-color: #EEEEEE;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-weight: bold;
  }
  main .btn.disabled {
    opacity: 0.4;
  }
  main .link {
    position: relative;
    padding-right: 32px;
    font-family: "HelveticaNowText-Medium", sans-serif;
  }
  main .link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon-arrow_r.svg);
    background-repeat: no-repeat;
    background-position: center right;
  }
  main .link span {
    position: relative;
  }
  main .link span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  main .link-blank {
    position: relative;
    padding-right: 32px;
    font-family: "HelveticaNowText-Medium", sans-serif;
  }
  main .link-blank::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon-blank.svg);
    background-repeat: no-repeat;
    background-position: center right;
  }
  main .link-blank span {
    position: relative;
  }
  main .link-blank span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  main .link-blank span:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  main .archive-wrapper .archive-inner {
    grid-column: 2/8;
  }
  main .archive-wrapper .archive-inner .card {
    width: 100%;
  }
  main .archive-wrapper .wp-pagenavi {
    grid-column: 2/8;
    margin: 80px 0 40px;
  }
  main .card {
    max-width: 300px;
    margin: 0 auto 40px;
  }
  main .card a {
    display: block;
  }
  main .card img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 16px;
  }
  main .card .category {
    display: block;
    color: #0A2864;
    font-family: "HelveticaNowText-Medium", sans-serif;
    font-size: 12px;
    line-height: 130%;
    margin-bottom: 8px;
  }
  main .card .subtitle {
    display: block;
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 12px;
  }
  main .card .title {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    line-height: 150%;
  }
  .archive-scroll-wrapper {
    position: relative;
    overflow: hidden;
  }
  .archive-scroll-wrapper .link {
    position: absolute;
    top: 1em;
    right: 5vw;
    font-size: 14px;
  }
  .archive-scroll {
    grid-column: 2/9;
  }
  .archive-scroll .scroll-header {
    margin-bottom: 16px;
  }
  .archive-scroll .scroll-header h2 {
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 150%;
  }
  .archive-scroll .scroll-header h2 small {
    display: block;
    font-family: "HelveticaNowText-Regular", sans-serif;
    font-size: 14px;
    font-weight: 400;
  }
  .archive-scroll .scroll-nav,
  .archive-scroll .scroll-prev,
  .archive-scroll .scroll-next,
  .archive-scroll .scroll-pagination {
    display: none;
  }
  .single-header {
    padding: 0 5vw;
  }
  .single-header .post-type {
    margin-bottom: 16px;
    font-family: "HelveticaNowText-Bold",sans-serif;
    font-size: 16px;
  }
  .single-header .post-type a {
    color: #0A2864;
  }
  .single-header .mv {
    margin-bottom: 32px;
  }
  .single-header .mv img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .single-header .single-subtitle {
    margin-bottom: 16px;
  }
  .single-header .single-subtitle b {
    display: block;
    font-size: 18px;
  }
  .single-header .single-subtitle time {
    font-family: "HelveticaNowText-Medium", sans-serif;
    font-size: 12px;
  }
  .single-header .single-title {
    margin-bottom: 40px;
    font-size: 28px;
    line-height: 150%;
  }
  .single-article {
    max-width: 800px;
    margin: 0 auto;
  }
  .single-wysiwyg {
    padding: 0 5vw;
  }
  .single-wysiwyg h2,
  .single-wysiwyg h3,
  .single-wysiwyg h4,
  .single-wysiwyg h5,
  .single-wysiwyg p {
    margin-bottom: 24px;
  }
  .single-wysiwyg h2 {
    font-size: 22px;
    line-height: 150%;
  }
  .single-wysiwyg h3 {
    font-size: 18px;
    line-height: 150%;
  }
  .single-wysiwyg h4,
  .single-wysiwyg h5
  {
    font-size: 18px;
    line-height: 150%;
  }
  .single-wysiwyg em {
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-style: normal;
    color: #0A2864;
  }
  .single-wysiwyg a {
    color: #0A2864;
    text-decoration: underline;
  }
  .single-wysiwyg a.pdf {
    color: #14191E;
    text-decoration: none;
  }
  .single-wysiwyg > .wp-block-image,
  .single-wysiwyg > .wp-block-gallery {
    margin: 80px auto 60px;
  }
  .single-wysiwyg > .wp-block-gallery {
    display: block;
  }
  .single-wysiwyg > .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
    width: 100%;
    margin-bottom: 24px;
  }
  .single-wysiwyg .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: none;
    position: relative;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    color: #43474B;
    font-size: 15px;
    text-align: left;
  }
  .textpage-wysiwyg {
    max-width: 800px;
  }
  .textpage-wysiwyg section {
    margin: 48px auto;
  }
  .textpage-wysiwyg section:last-child {
    margin: 48px auto 0;
  }
  .textpage-wysiwyg h2,
  .textpage-wysiwyg h3,
  .textpage-wysiwyg p {
    margin-bottom: 16px;
  }
  .textpage-wysiwyg h2 {
    font-size: 16px;
    line-height: 150%;
  }
  .textpage-wysiwyg h3 {
    font-size: 16px;
    line-height: 150%;
  }
  .textpage-wysiwyg p,
  .textpage-wysiwyg ol,
  .textpage-wysiwyg ul {
    font-size: 14px;
    line-height: 150%;
  }
  .textpage-wysiwyg ol,
  .textpage-wysiwyg ul {
    margin: 24px auto;
  }
  .textpage-wysiwyg ol li,
  .textpage-wysiwyg ul li {
    margin-bottom: 4px;
  }
  .textpage-wysiwyg ul {
    padding-left: 20px;
  }
  .textpage-wysiwyg ul li::before {
    width: 5px;
    height: 5px;
    background-color: #14191E;
  }
  .textpage-wysiwyg ol {
    list-style: none;
    counter-reset: num;
  }
  .textpage-wysiwyg ol li {
    position: relative;
    counter-increment: num;
    padding-left: 24px;
  }
  .textpage-wysiwyg ol li::before {
    content: counter(num) ".";
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    text-align: left;
    color: #14191E;
  }
  .textpage-wysiwyg ol li ol {
    counter-reset: alp;
    margin: 0 auto;
    padding-left: 0;
  }
  .textpage-wysiwyg ol li ol li {
    counter-increment: alp;
  }
  .textpage-wysiwyg ol li ol li::before {
    content: counter(alp, lower-alpha) ".";
  }
  .textpage-wysiwyg em {
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-style: normal;
    color: #0A2864;
  }
  .textpage-wysiwyg img {
    margin: 120px auto;
  }
  .single-relation {
    margin-top: 120px;
  }
  .single-relation .border {
    display: none;
  }
  .single-relation .category {
    grid-column: 2/8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px;
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  .single-relation .category .name {
    font-size: 16px;
    color: #0A2864;
  }
  .single-relation .category .back {
    margin: 0;
    font-size: 14px;
  }
  .single-relation .category .back a {
    text-decoration: underline;
  }
  .single-relation-posts {
    grid-column: 2/8;
  }
  .single-relation-posts .card {
    width: 480px;
    max-width: 100%;
  }
  /* ////////////////// ページネーション(wp-pagenaviプラグイン用) ////////////////// */
  .wp-pagenavi {
    clear: both;
    text-align: center;
    margin: 40px 0px 1.5em;
  }
  .wp-pagenavi a.page,
  .wp-pagenavi .current {
    text-decoration: none;
    padding: 0.2em 0.25em;
    margin: 0 3px;
    color: #14191E;
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  .wp-pagenavi .current {
    color: #0A2864;
  }
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    display: inline-block;
    margin: 0 3px;
    vertical-align: top;
    font-size: 0;
  }
  .wp-pagenavi .nextpostslink span,
  .wp-pagenavi .previouspostslink span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
  }
  .wp-pagenavi .nextpostslink span {
    background-image: url(../images/common/icon-arrow_r.svg);
  }
  .wp-pagenavi .previouspostslink span {
    background-image: url(../images/common/icon-arrow_l.svg);
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:960px) {
  /* PC header */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    width: 100%;
    height: 96px;
    background-color: #EEEEEE;
    border-bottom: 1px solid #C7C8C9;
  }
  #header-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 0 5vw;
    font-family: "HelveticaNowText-Medium", sans-serif;
  }
  #header-nav span {
    position: relative;
    display: inline-block;
    line-height: 180%;
    white-space: nowrap;
  }
  #header-nav span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  #header-nav span:hover::after,
  #header-nav span .current::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  #header-nav .header-logo {
    width: clamp(10vw, 20vw, 195px);
    margin-right: 0.5vw;
  }
  #header-nav .header-center {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: clamp(14px, 1rem, 16px);
  }
  #header-nav .header-center > li {
    margin: 0 clamp(0.25em, 0.75vw, 16px);
    white-space: nowrap;
  }
  #header-nav .header-center .parent {
    cursor: pointer;
  }
  #header-nav .header-center .parent::after {
    content: "";
    position: relative;
    top: -3px;
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    margin-left: 4px;
    border-right: 2px solid #14191E;
    border-bottom: 2px solid #14191E;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #header-nav .header-center .parent > ul {
    list-style: none;
    display: none;
    position: absolute;
    top: 96px;
    background-color: #EEEEEE;
    border-left: 1px solid #C7C8C9;
    border-right: 1px solid #C7C8C9;
    border-bottom: 1px solid #C7C8C9;
  }
  #header-nav .header-center .parent > ul li {
    border-bottom: 1px solid #C7C8C9;
  }
  #header-nav .header-center .parent > ul li:last-child {
    border-bottom: none;
  }
  #header-nav .header-center .parent > ul li a {
    display: block;
    min-width: 240px;
    padding: 16px 24px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  #header-nav .header-center .parent > ul li a:hover {
    color: #FFFFFF;
    background-color: #0A2864;
  }
  #header-nav .header-center .parent.active::after {
    top: 0;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  #header-nav .header-right {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0.5vw;
    font-size: 14px;
  }
  #header-nav .header-right a {
    color: #43474B;
  }
  #header-nav .header-right li {
    margin: 0 clamp(0.25em, 0.5vw, 8px);
    font-family: "HelveticaNowText-Medium", sans-serif;
  }
  #header-nav .header-right li.lang {
    padding-left: 16px;
    border-left: 1px solid #C7C8C9;
    font-family: "HelveticaNowText-Regular",sans-serif;
  }
  #header-nav .header-right li.lang a {
    padding-left: 32px;
    background-image: url(../images/common/icon-language.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  #hamburger {
    display: none;
  }
  /* PC Breadcrumb */
  .pankz {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 90vw;
    margin: 144px auto 16px;
    font-family: "HelveticaNowText-Medium", sans-serif;
    font-size: 14px;
  }
  .pankz li {
    margin-right: 8px;
  }
  .pankz li::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    border-right: 1px solid #C7C8C9;
    border-bottom: 1px solid #C7C8C9;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .pankz li:last-child::after {
    display: none;
  }
  .pankz li a {
    border-bottom: 1px solid #14191E;
    line-height: 130%;
  }
  .pankz li a:hover {
    color: #43474B;
  }
  .pankz li > span {
    color: #808386;
  }
  /* PC footer */
  #footer {
    position: relative;
    z-index: 999;
    background-color: #14191E;
    color: #C7C8C9;
    padding: 64px 5vw 24px;
  }
  #footer a {
    position: relative;
    color: #FFFFFF;
  }
  #footer a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #C7C8C9;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  #footer a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  #footer .footer-logo {
    margin-bottom: 40px;
  }
  #footer .footer-logo a::after {
    display: none;
  }
  #footer .footer-logo img {
    width: 171px;
  }
  #footer .footer-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 32px;
    font-size: 14px;
  }
  #footer .footer-nav .links:last-child:not(:first-child) a {
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-weight: bold;
    color: #FFFFFF;
  }
  #footer .footer-nav .links h3,
  #footer .footer-nav .links .single {
    margin-bottom: 16px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 14px;
    color: #FFFFFF;
  }
  #footer .footer-nav .links ul {
    list-style: none;
  }
  #footer .footer-nav .links ul li {
    margin-bottom: 16px;
  }
  #footer .footer-nav .links ul li a {
    color: #C7C8C9;
  }
  #footer .footer-left {
    font-family: "HelveticaNowText-Regular", sans-serif;
  }
  #footer .footer-right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  #footer .footer-right .links {
    margin-left: 48px;
  }
  #footer .footer-nav .links h3:not(:first-child) {
    margin-top: 4em;
  }
  #footer .footer-bottom {
    list-style: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 96px;
    font-size: 14px;
  }
  #footer .footer-bottom li {
    margin-left: 24px;
  }
  #footer .footer-bottom li a {
    color: #C7C8C9;
  }
  #footer .copyright {
    margin: 0;
    text-align: center;
    font-size: 12px;
  }
  /* PC 全ページ共通要素 */
  .sp {
    display: none !important;
  }
  body {
    background-color: #EEEEEE;
  }
  #container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
    min-height: 100%;
    overflow: clip;
    padding-top: 96px;
  }
  #container main {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .container-page {
    max-width: 100%;
    z-index: 0;
    padding-top: 120px;
  }
  .container-page .page-title {
    max-width: 2000px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 5vw;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 16px;
    color: #0A2864;
  }
  .container-page .page-title a {
    color: #0A2864;
  }
  .container-page .page-title strong {
    color: #14191E;
  }
  #galaxy_left_25,
  #galaxy_right_25,
  #galaxy_left_50,
  #galaxy_right_50 {
    position: absolute;
    z-index: -1;
    width: 100%;
    max-width: 2000px;
  }
  #galaxy_left_25,
  #galaxy_right_25 {
    top: -95px;
  }
  #galaxy_left_25 {
    right: 0;
  }
  #galaxy_right_25 {
    left: 0;
  }
  #galaxy_left_50 {
    right: -5vw;
  }
  #galaxy_right_50 {
    left: -5vw;
  }
  .grid {
    display: grid;
    grid-template-columns: calc(5vw - 16px) 1fr 1fr 2fr 3fr 5fr 8fr calc(5vw - 16px);
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }
  .wide {
    margin: 0 auto;
    padding: 0 5vw;
  }
  .side-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .side-wrapper .sidebar {
    grid-column: 2/5;
    position: relative;
    padding-right: 16px;
  }
  .side-wrapper .sidebar .sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 136px;
  }
  .side-wrapper .sidebar ul {
    list-style: none;
  }
  .side-wrapper .sidebar ul li {
    margin-bottom: 24px;
    line-height: 150%;
  }
  .side-wrapper .sidebar ul li a span {
    position: relative;
  }
  .side-wrapper .sidebar ul li a span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  .side-wrapper .sidebar ul li a:hover span::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .side-wrapper .sidebar ul li.current b {
    font-family: "HelveticaNowText-Bold", sans-serif;
    color: #0A2864;
  }
  .side-wrapper .sidebar ul li.sub {
    margin-bottom: 16px;
    font-size: 14px;
  }
  .side-wrapper .sidebar ul li.sub a {
    color: #43474B;
  }
  .side-wrapper .sidebar ul li ul {
    margin-top: 1em;
    padding-left: 16px;
  }
  .side-wrapper .sidebar ul li ul li {
    position: relative;
    margin-bottom: 1em;
    padding-left: 16px;
  }
  .side-wrapper .sidebar ul li ul li::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 1px solid #C7C8C9;
    border-bottom: 1px solid #C7C8C9;
  }
  .side-wrapper .main-article {
    grid-column: 5/8;
    position: relative;
    max-width: 800px;
  }
  .side-wrapper .main-article .article-title {
    margin-bottom: 64px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 16px;
    color: #0A2864;
  }
  main article p {
    line-height: 180%;
  }
  main article h1,
  main article h2,
  main article h3,
  main article h4,
  main article h5,
  main article strong,
  main article b {
    font-family: "HelveticaNowText-Bold", sans-serif;
  }

    .main-article h1,
  .main-article h2,
  .main-article h3,
  .main-article h4,
  .main-article h5,
  .main-article strong,
  .main-article b {
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  main article ul {
    list-style: none;
    padding: 0;
  }
  main article ul li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
    line-height: 180%;
  }
  main article ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 4px;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #808386;
  }
  main article ol {
    list-style: none;
    counter-reset: num;
  }
  main article ol li {
    position: relative;
    counter-increment: num;
    margin-bottom: 12px;
    padding-left: 24px;
  }
  main article ol li::before {
    content: counter(num);
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    text-align: center;
    font-family: "HelveticaNowText-Bold", sans-serif;
    color: #808386;
  }
  main .btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 120px;
    padding: 0.85em 1em 0.75em;
    line-height: 1em;
    border: 1px solid #14191E;
    border-radius: 5px;
    background-color: #EEEEEE;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  main .btn:hover {
    background-color: #0A2864;
    color: #FFFFFF;
  }
  main .btn.disabled {
    opacity: 0.4;
  }
  main .link {
    position: relative;
    padding-right: 32px;
    font-family: "HelveticaNowText-Medium", sans-serif;
  }
  main .link::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon-arrow_r.svg);
    background-repeat: no-repeat;
    background-position: center right;
  }
  main .link span {
    position: relative;
  }
  main .link span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  main .link:hover span::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  main .link-blank {
    position: relative;
    padding-right: 32px;
    font-family: "HelveticaNowText-Medium", sans-serif;
  }
  main .link-blank::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../images/common/icon-blank.svg);
    background-repeat: no-repeat;
    background-position: center right;
  }
  main .link-blank span {
    position: relative;
  }
  main .link-blank span::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  main .link-blank span:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  main .archive-wrapper .archive-inner {
    grid-column: 5/8;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 16px;
  }
  main .archive-wrapper .wp-pagenavi {
    grid-column: 5/8;
    margin: 80px 0;
  }
  main .card {
    width: 100%;
  }
  main .card a {
    display: block;
  }
  main .card a:hover .title {
    background-size: 100% 1px;
  }
  main .card img {
    width: 100%;
    aspect-ratio: 16/9;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 16px;
  }
  main .card .date {
    display: block;
    font-size: 12px;
    color: #0A2864;
    font-family: "HelveticaNowText-Medium", sans-serif;
    line-height: 130%;
    margin-bottom: 8px;
  }
  main .card .category {
    display: block;
    font-size: 12px;
    color: #0A2864;
    font-family: "HelveticaNowText-Medium", sans-serif;
    line-height: 130%;
    margin-bottom: 8px;
  }
  main .card .subtitle {
    display: block;
    font-size: 14px;
    line-height: 130%;
    margin-bottom: 12px;
  }
  main .card .title {
    display: inline;
    font-size: 18px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    line-height: 150%;
    background: -webkit-gradient(linear, left top, left bottom, from(#14191E), to(#14191E)) 0 100%/0 1px no-repeat;
    background: -webkit-linear-gradient(#14191E, #14191E) 0 100%/0 1px no-repeat;
    background: linear-gradient(#14191E, #14191E) 0 100%/0 1px no-repeat;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  main .card .name {
    display: block;
    font-size: 14px;
    line-height: 130%;
    margin: 12px 0;
  }
  main .card .affiliation {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #0A2864;
    font-family: "HelveticaNowText-Medium", sans-serif;
    line-height: 150%;
  }
  main .card .since {
    display: block;
    margin: 0;
    font-size: 12px;
    color: #0A2864;
    font-family: "HelveticaNowText-Medium", sans-serif;
    line-height: 130%;
  }
  .archive-scroll-wrapper {
    position: relative;
    overflow: hidden;
  }
  .archive-scroll-wrapper .link {
    position: absolute;
    top: 0;
    right: 5vw;
  }
  .archive-scroll {
    width: 21vw;
    max-width: 480px;
    grid-column: 4/8;
  }
  .archive-scroll .scroll-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    min-width: 600px;
    margin-bottom: 32px;
    white-space: nowrap;
  }
  .archive-scroll .scroll-header h2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 22px;
    font-weight: bold;
  }
  .archive-scroll .scroll-header h2 small {
    font-family: "HelveticaNowText-Regular", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  }
  .archive-scroll .scroll-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 48px;
    font-family: "HelveticaNowText-Regular", sans-serif;
  }
  .archive-scroll .scroll-prev,
  .archive-scroll .scroll-next {
    display: inline-block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    margin: 0 5px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .archive-scroll .scroll-prev.swiper-button-disabled,
  .archive-scroll .scroll-next.swiper-button-disabled {
    opacity: 0.3;
  }
  .archive-scroll .scroll-prev:hover,
  .archive-scroll .scroll-next:hover {
    cursor: pointer;
  }
  .archive-scroll .scroll-prev {
    background-image: url(../images/common/icon-arrow_l.svg);
  }
  .archive-scroll .scroll-next {
    background-image: url(../images/common/icon-arrow_r.svg);
  }
  .archive-scroll .scroll-pagination {
    text-align: center;
  }
  .archive-scroll .scroll-pagination .swiper-pagination-bullet-active {
    background-color: #0A2864;
  }
  .single-header .post-type {
    margin-bottom: 16px;
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-size: 16px;
  }
  .single-header .post-type a {
    color: #0A2864;
  }
  .single-header .mv {
    margin-bottom: 40px;
  }
  .single-header .mv img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .single-header .single-subtitle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 16px;
  }
  .single-header .single-subtitle b {
    font-size: 18px;
  }
  .single-header .single-subtitle time {
    font-family: "HelveticaNowText-Medium", sans-serif;
    font-size: 12px;
  }
  .single-header .single-title {
    margin-bottom: 112px;
    font-size: clamp(32px, 0.1rem + 3.1vw, 42px);
    line-height: 130%;
  }
  .single-article {
    max-width: 800px;
    margin: 0 auto;
  }
  .single-wysiwyg h2,
  .single-wysiwyg h3,
  .single-wysiwyg h4,
  .single-wysiwyg h5,
  .single-wysiwyg p {
    margin-bottom: 24px;
  }
  .single-wysiwyg h2 {
    font-size: clamp(22px, 0.1rem + 2.3vw, 32px);
    line-height: 150%;
  }
  .single-wysiwyg h3 {
    font-size: 22px;
    line-height: 150%;
  }
  .single-wysiwyg h4 {
    font-size: 20px;
    line-height: 150%;
  }
  .single-wysiwyg h5 {
    font-size: 18px;
    line-height: 150%;
  }
  .single-wysiwyg em {
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-style: normal;
    color: #0A2864;
  }
  .single-wysiwyg a {
    color: #0A2864;
    text-decoration: underline;
  }
  .single-wysiwyg a.pdf {
    color: #14191E;
    text-decoration: none;
  }
  .single-wysiwyg > .wp-block-image,
  .single-wysiwyg > .wp-block-gallery {
    margin: 120px auto;
  }
  .single-wysiwyg .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
    background: none;
    position: relative;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    color: #43474B;
    font-size: 15px;
    text-align: left;
  }
  .textpage-wysiwyg {
    max-width: 800px;
  }
  .textpage-wysiwyg section {
    margin: 48px auto;
  }
  .textpage-wysiwyg section:last-child {
    margin: 48px auto 0;
  }
  .textpage-wysiwyg h2,
  .textpage-wysiwyg h3,
  .textpage-wysiwyg p {
    margin-bottom: 16px;
  }
  .textpage-wysiwyg h2 {
    font-size: 16px;
    line-height: 150%;
  }
  .textpage-wysiwyg h3 {
    font-size: 16px;
    line-height: 150%;
  }
  .textpage-wysiwyg p,
  .textpage-wysiwyg ol,
  .textpage-wysiwyg ul {
    font-size: 14px;
    line-height: 150%;
  }
  .textpage-wysiwyg ol,
  .textpage-wysiwyg ul {
    margin: 24px auto;
    padding-left: 40px;
  }
  .textpage-wysiwyg ol li,
  .textpage-wysiwyg ul li {
    margin-bottom: 4px;
  }
  .textpage-wysiwyg ul li {
    padding-left: 16px;
  }
  .textpage-wysiwyg ul li::before {
    width: 5px;
    height: 5px;
    background-color: #14191E;
  }
  .textpage-wysiwyg ol {
    list-style: none;
    counter-reset: num;
  }
  .textpage-wysiwyg ol li {
    position: relative;
    counter-increment: num;
    padding-left: 24px;
  }
  .textpage-wysiwyg ol li::before {
    content: counter(num) ".";
    position: absolute;
    top: 3px;
    left: 0;
    display: inline-block;
    text-align: left;
    color: #14191E;
  }
  .textpage-wysiwyg ol li ol {
    counter-reset: alp;
    margin: 0 auto;
    padding-left: 0;
  }
  .textpage-wysiwyg ol li ol li {
    counter-increment: alp;
  }
  .textpage-wysiwyg ol li ol li::before {
    content: counter(alp, lower-alpha) ".";
  }
  .textpage-wysiwyg em {
    font-family: "HelveticaNowText-Bold", sans-serif;
    font-style: normal;
    color: #0A2864;
  }
  .textpage-wysiwyg img {
    margin: 120px auto;
  }
  .single-relation .border {
    grid-column: 2/8;
    height: 1px;
    margin-bottom: 120px;
    background-color: #C7C8C9;
  }
  .single-relation .category {
    grid-column: 3/8;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 24px;
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  .single-relation .category .name {
    font-size: 16px;
    color: #0A2864;
  }
  .single-relation .category .back {
    margin: 0;
    font-size: 14px;
  }
  .single-relation .category .back a {
    text-decoration: underline;
  }
  .single-relation-posts {
    grid-column: 3/8;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 16px;
  }
  /* ////////////////// ページネーション(wp-pagenaviプラグイン用) ////////////////// */
  .wp-pagenavi {
    clear: both;
    text-align: center;
    margin: 40px 0px 1.5em;
  }
  .wp-pagenavi a.page,
  .wp-pagenavi .current {
    text-decoration: none;
    padding: 0.2em 0.25em;
    margin: 0 3px;
    color: #14191E;
    font-family: "HelveticaNowText-Bold", sans-serif;
  }
  .wp-pagenavi .current {
    color: #0A2864;
  }
  .wp-pagenavi a.page {
    position: relative;
  }
  .wp-pagenavi a.page::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #14191E;
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
    transition: transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s, -webkit-transform cubic-bezier(0.16, 0.75, 0.5, 1) 0.3s;
  }
  .wp-pagenavi a.page:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .wp-pagenavi .nextpostslink,
  .wp-pagenavi .previouspostslink {
    display: inline-block;
    margin: 0 3px;
    vertical-align: top;
    font-size: 0;
  }
  .wp-pagenavi .nextpostslink span,
  .wp-pagenavi .previouspostslink span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
  }
  .wp-pagenavi .nextpostslink span {
    background-image: url(../images/common/icon-arrow_r.svg);
  }
  .wp-pagenavi .previouspostslink span {
    background-image: url(../images/common/icon-arrow_l.svg);
  }
}