@charset "UTF-8";
@-webkit-keyframes globalNavSubmenuSlideDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes globalNavSubmenuSlideDown {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@-webkit-keyframes globalNavSearchShow {
  0% {
    background-color: rgba(243, 243, 243, 0);
  }
  100% {
    background-color: #f3f3f3;
  }
}

@keyframes globalNavSearchShow {
  0% {
    background-color: rgba(243, 243, 243, 0);
  }
  100% {
    background-color: #f3f3f3;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  padding-top: 16px;
}

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

.st-Container {
  width: 982px;
  margin-left: auto;
  margin-right: auto;
}

.st-Container-aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.st-Container-aside .st-Container_Main {
  width: 660px;
}

.st-Container_Main {
  width: 100%;
  padding-bottom: 80px;
}

.st-Container_Main > *:last-child {
  margin-bottom: 0;
}

.st-Container_Aside {
  width: 300px;
}

.st-Block {
  margin-bottom: 30px;
}

.st-Block_Inner {
  margin-bottom: 20px;
}

.st-Block_Inner > *:last-child {
  margin-bottom: 0;
}

.st-Block > *:last-child {
  margin-bottom: 0;
}

.st-SideBlock {
  margin-bottom: 20px;
}

.st-SideBlock > *:last-child {
  margin-bottom: 0;
}

.st-Grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.st-Grid-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.st-Grid-col-2 .st-Grid_Item {
  width: 320px;
}

.st-Grid-col-2 .st-Grid_Item:not(:nth-of-type(2n - 1)) {
  margin-left: 20px;
}

.st-Grid_Item > *:last-child {
  margin-bottom: 0;
}

.st-GlobalNav {
  width: 982px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.st-GlobalNav_Logo {
  width: 240px;
  padding-top: 20px;
}

.st-GlobalNav_Logo img {
  display: block;
  width: 100%;
  height: auto;
}

.st-GlobalNav_Ad {
  width: 728px;
  height: 90px;
}

.st-GlobalNav_MenuBar {
  width: 100%;
  -webkit-box-shadow: 0 9px 9px -6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 9px 9px -6px rgba(0, 0, 0, 0.08);
  position: relative;
}

.st-GlobalNav_Menu {
  margin-left: -8px;
}

.st-GlobalNav_MenuInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.st-GlobalNav_MenuItem {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.st-GlobalNav_MenuItem > .st-GlobalNav_MenuItemInner {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 8px;
  padding-right: 8px;
}

.st-GlobalNav_MenuItem > .st-GlobalNav_MenuItemInner a {
  padding: 7px 12px 5px;
  border-radius: 14px;
  font-weight: bold;
  text-decoration: none;
}

.st-GlobalNav_MenuItem:hover > .st-GlobalNav_MenuItemInner a,
.st-GlobalNav_MenuItem-active > .st-GlobalNav_MenuItemInner a {
  color: #fff;
  background-color: #d90000;
}

.st-GlobalNav_MenuItem.menu-item-has-children > .st-GlobalNav_MenuItemInner a {
  padding-right: 24px;
  position: relative;
}

.st-GlobalNav_MenuItem.menu-item-has-children > .st-GlobalNav_MenuItemInner a::after {
  position: absolute;
  right: 6px;
  top: calc(50% - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s_gray.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-GlobalNav_MenuItem.menu-item-has-children:hover > .st-GlobalNav_MenuItemInner a::after,
.st-GlobalNav_MenuItem-active.menu-item-has-children > .st-GlobalNav_MenuItemInner a::after {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s_white.svg");
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.st-GlobalNav_MenuItem:hover .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: globalNavSubmenuSlideDown;
          animation-name: globalNavSubmenuSlideDown;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-transform-origin: top;
          transform-origin: top;
}

.st-GlobalNav .sub-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 26px;
  z-index: 200;
  width: 930px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 16px 20px 16px;
  overflow: hidden;
}

.st-GlobalNav .sub-menu::after {
  content: '';
  border-top: 1px solid #fff;
  height: 1px;
  width: 100%;
  margin-top: -1px;
  z-index: 100;
}

.st-GlobalNav_SubmenuItem {
  width: 33.33%;
}

.st-GlobalNav_SubmenuItem .st-GlobalNav_MenuItemInner {
  padding-left: 10px;
  padding-right: 10px;
}

.st-GlobalNav_SubmenuItem a {
  display: block;
  padding: 16px 24px;
  position: relative;
  font-weight: bold;
  text-decoration: none;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.st-GlobalNav_SubmenuItem a:hover {
  color: #d90000;
  background-color: #f3f3f3;
}

.st-GlobalNav_SubmenuItem a::after {
  position: absolute;
  right: 6px;
  top: calc(50% - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-GlobalNav_Search {
  position: absolute;
  bottom: 7px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.st-GlobalNav_Search-opened .st-GlobalNav_SearchToggleBtn {
  display: none;
}

.st-GlobalNav_Search-opened .st-GlobalNav_SearchForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: globalNavSearchShow;
          animation-name: globalNavSearchShow;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
}

.st-GlobalNav_SearchToggleBtn {
  background-color: white;
  padding: 6px 10px;
  cursor: pointer;
}

.st-GlobalNav_SearchToggleBtn::after {
  display: block;
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_search.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-GlobalNav_SearchForm {
  border-radius: 4px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px;
}

.st-GlobalNav_SearchInputWrapper {
  margin-right: 6px;
}

.st-GlobalNav_SearchInput {
  font-size: 14px;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  width: 212px;
}

.st-GlobalNav_SearchInput::-webkit-input-placeholder {
  color: #666;
}

.st-GlobalNav_SearchInput::-moz-placeholder {
  color: #666;
}

.st-GlobalNav_SearchInput:-ms-input-placeholder {
  color: #666;
}

.st-GlobalNav_SearchInput::-ms-input-placeholder {
  color: #666;
}

.st-GlobalNav_SearchInput::placeholder {
  color: #666;
}

.st-GlobalNav_SearchBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_search.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-Breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.st-Breadcrumbs_Item {
  color: #666;
  font-size: 12px;
  line-height: 1.2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.st-Breadcrumbs_Item:not(:last-of-type) {
  padding-right: 16px;
  position: relative;
}

.st-Breadcrumbs_Item:not(:last-of-type)::after {
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s_gray.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.st-Breadcrumbs_Item + .st-Breadcrumbs_Item {
  margin-left: 5px;
}

.st-Breadcrumbs_Item:last-of-type {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.st-Breadcrumbs_Item-flexible {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.st-Breadcrumbs_Link {
  color: #000;
}

.st-Breadcrumbs_Link:hover {
  text-decoration: underline;
}

.st-AreaTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
  border-top: 3px solid #f3f3f3;
  padding-top: 15px;
  position: relative;
}

.st-AreaTitle::before {
  position: absolute;
  top: -3px;
  left: 0;
  content: '';
  height: 3px;
  width: 110px;
  background-color: #d90000;
}

.st-AreaTitle-col-2 {
  margin-bottom: 15px;
}

.st-AreaTitle_Text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 20px;
  font-weight: bold;
  word-break: break-word;
}

.st-AreaTitle_Img {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.st-AreaTitle_ImgInner {
  display: block;
  height: 18px;
}

.st-AreaTitle_ImgInner img {
  height: 100%;
  width: auto;
  display: block;
}

.st-SecondaryTitle {
  margin-bottom: 15px;
}

.st-SecondaryTitle_Text {
  padding-left: 14px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

.st-SecondaryTitle_Text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 4px;
  background-color: #d90000;
}

.st-ArticleTitle {
  margin-bottom: 15px;
}

.st-ArticleTitle_Subheader {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.st-ArticleTitle_Subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #d90000;
  word-break: break-word;
}

.st-ArticleTitle_Metadata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  word-break: break-word;
}

.st-ArticleTitle_MetaItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #666;
}

.st-ArticleTitle_MetaItem + .st-ArticleTitle_MetaItem {
  position: relative;
  padding-left: 2em;
}

.st-ArticleTitle_MetaItem + .st-ArticleTitle_MetaItem::before {
  content: '';
  height: 75%;
  position: absolute;
  top: 12.5%;
  left: 1em;
  border-left: 1px solid #e0e0e0;
}

.st-ArticleTitle_MetaItem > *:last-child {
  margin-bottom: 0;
}

.st-ArticleTitle_Text {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 8px;
  word-break: break-word;
}

.st-ArticleTitle_Info {
  font-size: 15px;
  line-height: 1.4;
  word-break: break-word;
}

.st-ArticleTitle__link {
  text-decoration: underline;
}

.st-ArticleTitle_Summary {
  font-size: 16px;
  margin-top: 15px;
  line-height: 1.4;
}

.st-ArticleTitle_Summary p {
  margin-bottom: 1em;
}

.st-ArticleTitle_Summary > :last-child {
  margin-bottom: 0;
}

.st-PageTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}

.st-PageTitle_Text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 23px;
  position: relative;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

.st-PageTitle_Text::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 8px;
  background-color: #d90000;
}

.st-PageTitle_Meta {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #666;
  word-break: break-word;
}

.st-PageDescription {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 15px;
  word-break: break-word;
}

.st-NextPage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
  border-radius: 4px;
  padding: 24px 20px;
  background-color: #f3f3f3;
}

.st-NextPage_Label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #d90000;
  padding-left: 16px;
  position: relative;
}

.st-NextPage_Label::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
}

.st-NextPage_Text {
  line-height: 1.4;
  margin-left: 32px;
  border-left: 1px solid #e0e0e0;
  padding-left: 20px;
  word-break: break-word;
}

.st-Pagination {
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.st-Pagination_Link {
  width: 40px;
  height: 40px;
  color: #666;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.st-Pagination_Link:not(:first-child) {
  margin-left: 5px;
}

.st-Pagination_Link-active {
  color: #fff;
  background-color: #d90000;
  pointer-events: none;
}

.st-Pagination_Link-ellipsis {
  pointer-events: none;
}

.st-Pagination_Link:hover {
  color: #d90000;
  background-color: #f3f3f3;
}

.st-Pagination_Link-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.st-Pagination_Link-arrow::after {
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_pagination_gray60.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-Pagination_Link-arrow:hover::after {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_pagination.svg");
}

.st-Pagination_Link-disabledArrow {
  pointer-events: none;
}

.st-Pagination_Link-disabledArrow::after {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_pagination_gray10.svg");
}

.st-Pagination_Link-prev::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.st-Pagination-fontSize-s .st-Pagination_Link {
  font-size: 14px;
}

.st-RelatedTags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  gap: 6px;
}

.st-RelatedTags_Label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 26px;
}

.st-RelatedTags_LabelText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 26px;
  padding-left: 28px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  word-break: break-word;
}

.st-RelatedTags_LabelText::before {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_tag.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
}

.st-RelatedTags_Tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -3px;
  overflow: hidden;
}

.st-RelatedTags_Item {
  padding: 3px;
}

.st-RelatedTags_Text {
  display: block;
  font-size: 15px;
  border-radius: 2px;
  border: 1px solid #ababab;
  padding: 5px 8px;
  word-break: break-word;
}

.st-PageTop {
  display: block;
  height: 54px;
  background-color: #f3f3f3;
  color: #d90000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  text-decoration: none;
}

.st-PageTop:hover {
  text-decoration: none;
  color: #d90000;
}

.st-PageTop_Arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.st-PageTop_Arrow::after {
  content: '';
  height: 24px;
  width: 24px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-PageTop_Text {
  font-size: 12px;
  text-align: center;
  word-break: break-word;
}

.st-Footer_Inner {
  padding-top: 54px;
  background-color: #000;
}

.st-Footer_Wrapper {
  width: 970px;
  margin-left: auto;
  margin-right: auto;
}

.st-Footer_Logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}

.st-Footer_LogoImage {
  width: 268px;
}

.st-Footer_Logo img {
  display: block;
  width: 100%;
  height: auto;
}

.st-Footer_Sns {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.st-Footer_Sns.js-hideWebpush .st-Footer_SnsItem-push {
  display: none;
}

.st-Footer_SnsInner {
  width: 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.st-Footer_SnsItem {
  display: block;
  width: 30px;
}

.st-Footer_SnsItem-push {
  cursor: pointer;
}

.st-Footer_SnsItem-push:hover img {
  opacity: 0.7;
}

.st-Footer_SnsItem img {
  display: block;
  width: 100%;
  height: auto;
}

.st-Footer_Menu {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  padding-top: 18px;
  padding-bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  word-break: break-word;
}

.st-Footer_MenuInner {
  width: 728px;
  margin-left: -24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.st-Footer_Menu .menu-item {
  margin-left: 24px;
  padding-left: 16px;
  position: relative;
}

.st-Footer_Menu .menu-item a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.st-Footer_Menu .menu-item a:hover {
  text-decoration: underline;
}

.st-Footer_Menu .menu-item::after {
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-ContactForm,
.wp-editor .st-ContactForm {
  margin-bottom: 15px;
}

.st-ContactForm > *:last-child,
.wp-editor .st-ContactForm > *:last-child {
  margin-bottom: 0;
}

.st-ContactForm_Inner,
.wp-editor .st-ContactForm_Inner {
  margin-bottom: 30px;
}

.st-ContactForm_Field,
.wp-editor .st-ContactForm_Field {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.st-ContactForm_Field label,
.wp-editor .st-ContactForm_Field label {
  font-weight: bold;
  word-break: break-word;
}

.st-ContactForm_Field input,
.wp-editor .st-ContactForm_Field input {
  width: 400px;
  height: 30px;
}

.st-ContactForm_Field textarea,
.wp-editor .st-ContactForm_Field textarea {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: block;
  width: 100%;
  min-height: 100px;
  line-height: 1.5;
}

.st-ContactForm_Field label ~ textarea,
.wp-editor .st-ContactForm_Field label ~ textarea {
  margin-top: 15px;
}

.st-ContactForm_Field span,
.wp-editor .st-ContactForm_Field span {
  color: #d90000;
  margin-left: 30px;
}

.st-ContactForm_Dropzone label,
.wp-editor .st-ContactForm_Dropzone label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  word-break: break-word;
}

.st-ContactForm_DropzoneWrapper,
.wp-editor .st-ContactForm_DropzoneWrapper {
  margin-bottom: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f3f3f3;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.st-ContactForm_DropzoneWrapper *,
.wp-editor .st-ContactForm_DropzoneWrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.st-ContactForm_DropzoneWrapper.dz-clickable,
.wp-editor .st-ContactForm_DropzoneWrapper.dz-clickable {
  cursor: pointer;
}

.st-ContactForm_DropzoneWrapper.dz-clickable *,
.wp-editor .st-ContactForm_DropzoneWrapper.dz-clickable * {
  cursor: default;
}

.st-ContactForm_DropzoneWrapper.dz-clickable .dz-message, .st-ContactForm_DropzoneWrapper.dz-clickable .dz-message *,
.wp-editor .st-ContactForm_DropzoneWrapper.dz-clickable .dz-message,
.wp-editor .st-ContactForm_DropzoneWrapper.dz-clickable .dz-message * {
  cursor: pointer;
}

.st-ContactForm_DropzoneWrapper.dz-drag-hover .dz-message,
.wp-editor .st-ContactForm_DropzoneWrapper.dz-drag-hover .dz-message {
  background-color: #d90000;
  opacity: 0.5;
}

.st-ContactForm_DropzoneWrapper .dz-message,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-message {
  color: #d90000;
  line-height: 1.6;
  border: 1px dashed #d90000;
  min-height: 200px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.st-ContactForm_DropzoneWrapper .dz-preview,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview {
  position: relative;
  width: calc( ( 100% - (20px * 3) ) / 4);
  min-height: 120px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.st-ContactForm_DropzoneWrapper .dz-preview:hover,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview:hover {
  opacity: 0.8;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-image,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-image {
  margin-bottom: 8px;
  padding-top: 100%;
  position: relative;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-image img,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-image img {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

.st-ContactForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image {
  background-color: #666;
}

.st-ContactForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image::after,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: 'FILE';
  font-size: 14px;
  color: #fff;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-details,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-details {
  margin-bottom: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-size,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-size {
  margin-bottom: 8px;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-filename,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-filename {
  margin-bottom: 8px;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-error-mark, .st-ContactForm_DropzoneWrapper .dz-preview .dz-success-mark,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-error-mark,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-success-mark {
  display: none;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-error-message,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-error-message {
  display: block;
  margin-bottom: 8px;
  color: #d90000;
  line-height: 1.2;
}

.st-ContactForm_DropzoneWrapper .dz-preview .dz-remove,
.wp-editor .st-ContactForm_DropzoneWrapper .dz-preview .dz-remove {
  cursor: pointer;
}

.st-ContactForm_Annotation,
.wp-editor .st-ContactForm_Annotation {
  word-break: break-word;
}

.st-ContactForm_Annotation p,
.wp-editor .st-ContactForm_Annotation p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.st-ContactForm_Annotation-caution p,
.wp-editor .st-ContactForm_Annotation-caution p {
  color: #d90000;
}

.st-ContactForm_FileList,
.wp-editor .st-ContactForm_FileList {
  margin-bottom: 28px;
}

.st-ContactForm_FileList li,
.wp-editor .st-ContactForm_FileList li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.st-ContactForm_ConfirmTitle,
.wp-editor .st-ContactForm_ConfirmTitle {
  font-weight: bold;
  margin-bottom: 15px;
}

.st-ContactForm_ConfirmTitle span,
.wp-editor .st-ContactForm_ConfirmTitle span {
  color: #d90000;
  margin-left: 30px;
}

.st-ContactForm_InputTitle,
.wp-editor .st-ContactForm_InputTitle {
  font-weight: bold;
  margin-bottom: 15px;
}

.st-ContactForm_Precaution,
.wp-editor .st-ContactForm_Precaution {
  list-style: disc;
  line-height: 1.6;
}

.st-ContactForm_PrecautionTitle,
.wp-editor .st-ContactForm_PrecautionTitle {
  font-weight: bold;
  margin-bottom: 10px;
  list-style: none;
  word-break: break-word;
}

.st-ContactForm_PrecautionInner li,
.wp-editor .st-ContactForm_PrecautionInner li {
  margin-left: 16px;
  margin-bottom: 10px;
  word-break: break-word;
}

.st-ContactForm_List,
.wp-editor .st-ContactForm_List {
  list-style: disc;
  padding-left: 18px;
}

.st-ContactForm_ListItem,
.wp-editor .st-ContactForm_ListItem {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 8px;
  word-break: break-word;
}

.st-PressForm,
.wp-editor .st-PressForm {
  margin-bottom: 15px;
}

.st-PressForm > *:last-child,
.wp-editor .st-PressForm > *:last-child {
  margin-bottom: 0;
}

.st-PressForm_Inner,
.wp-editor .st-PressForm_Inner {
  margin-bottom: 30px;
}

.st-PressForm_Field label,
.wp-editor .st-PressForm_Field label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  word-break: break-word;
}

.st-PressForm_Field input[type=text],
.st-PressForm_Field input[type=email],
.st-PressForm_Field input[type=tel],
.wp-editor .st-PressForm_Field input[type=text],
.wp-editor .st-PressForm_Field input[type=email],
.wp-editor .st-PressForm_Field input[type=tel] {
  width: 100%;
  height: 30px;
}

.st-PressForm_Field textarea,
.wp-editor .st-PressForm_Field textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  line-height: 1.5;
}

.st-PressForm_Field label ~ textarea,
.wp-editor .st-PressForm_Field label ~ textarea {
  margin-top: 15px;
}

.st-PressForm_Field span,
.wp-editor .st-PressForm_Field span {
  color: #d90000;
  margin-left: 15px;
}

.st-PressForm_Dropzone label,
.wp-editor .st-PressForm_Dropzone label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  word-break: break-word;
}

.st-PressForm_DropzoneWrapper,
.wp-editor .st-PressForm_DropzoneWrapper {
  margin-bottom: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f3f3f3;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.st-PressForm_DropzoneWrapper *,
.wp-editor .st-PressForm_DropzoneWrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.st-PressForm_DropzoneWrapper.dz-clickable,
.wp-editor .st-PressForm_DropzoneWrapper.dz-clickable {
  cursor: pointer;
}

.st-PressForm_DropzoneWrapper.dz-clickable *,
.wp-editor .st-PressForm_DropzoneWrapper.dz-clickable * {
  cursor: default;
}

.st-PressForm_DropzoneWrapper.dz-clickable .dz-message, .st-PressForm_DropzoneWrapper.dz-clickable .dz-message *,
.wp-editor .st-PressForm_DropzoneWrapper.dz-clickable .dz-message,
.wp-editor .st-PressForm_DropzoneWrapper.dz-clickable .dz-message * {
  cursor: pointer;
}

.st-PressForm_DropzoneWrapper.dz-drag-hover .dz-message,
.wp-editor .st-PressForm_DropzoneWrapper.dz-drag-hover .dz-message {
  background-color: #d90000;
  opacity: 0.5;
}

.st-PressForm_DropzoneWrapper .dz-message,
.wp-editor .st-PressForm_DropzoneWrapper .dz-message {
  color: #d90000;
  line-height: 1.6;
  border: 1px dashed #d90000;
  min-height: 200px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.st-PressForm_DropzoneWrapper .dz-preview,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview {
  position: relative;
  width: calc( ( 100% - (20px * 3) ) / 4);
  min-height: 120px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.st-PressForm_DropzoneWrapper .dz-preview:hover,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview:hover {
  opacity: 0.8;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-image,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-image {
  margin-bottom: 8px;
  padding-top: 100%;
  position: relative;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-image img,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-image img {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

.st-PressForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image {
  background-color: #666;
}

.st-PressForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image::after,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview.dz-file-preview .dz-image::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: 'FILE';
  font-size: 14px;
  color: #fff;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-details,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-details {
  margin-bottom: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-size,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-size {
  margin-bottom: 8px;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-filename,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-filename {
  margin-bottom: 8px;
  overflow-wrap: break-word;
  line-height: 1.2;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-error-mark, .st-PressForm_DropzoneWrapper .dz-preview .dz-success-mark,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-error-mark,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-success-mark {
  display: none;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-error-message,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-error-message {
  display: block;
  margin-bottom: 8px;
  color: #d90000;
  line-height: 1.2;
}

.st-PressForm_DropzoneWrapper .dz-preview .dz-remove,
.wp-editor .st-PressForm_DropzoneWrapper .dz-preview .dz-remove {
  cursor: pointer;
}

.st-PressForm_Annotation,
.wp-editor .st-PressForm_Annotation {
  word-break: break-word;
}

.st-PressForm_Annotation p,
.wp-editor .st-PressForm_Annotation p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.st-PressForm_Annotation-caution p,
.wp-editor .st-PressForm_Annotation-caution p {
  color: #d90000;
}

.st-PressForm_FileList,
.wp-editor .st-PressForm_FileList {
  margin-bottom: 28px;
}

.st-PressForm_FileList li,
.wp-editor .st-PressForm_FileList li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.st-PressForm_ConfirmTitle,
.wp-editor .st-PressForm_ConfirmTitle {
  font-weight: bold;
  margin-bottom: 15px;
}

.st-PressForm_ConfirmTitle span,
.wp-editor .st-PressForm_ConfirmTitle span {
  color: #d90000;
  margin-left: 15px;
}

.st-PressForm_InputTitle,
.wp-editor .st-PressForm_InputTitle {
  font-weight: bold;
  margin-bottom: 15px;
}

.st-PressForm_Precaution,
.wp-editor .st-PressForm_Precaution {
  list-style: disc;
  line-height: 1.6;
}

.st-PressForm_PrecautionTitle,
.wp-editor .st-PressForm_PrecautionTitle {
  font-weight: bold;
  margin-bottom: 10px;
  list-style: none;
  word-break: break-word;
}

.st-PressForm_PrecautionInner li,
.wp-editor .st-PressForm_PrecautionInner li {
  margin-left: 16px;
  margin-bottom: 10px;
  word-break: break-word;
}

.st-PressForm_List,
.wp-editor .st-PressForm_List {
  list-style: disc;
  padding-left: 18px;
}

.st-PressForm_ListItem,
.wp-editor .st-PressForm_ListItem {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 8px;
  word-break: break-word;
}

.st-CommentTerms_list {
  text-indent: -30px;
  margin-left: 30px;
}

.st-CommentTerms_list-indent {
  margin-left: 60px;
  text-indent: -40px;
}

.st-CommentTerms_list-doubleIndent {
  margin-left: 103px;
  text-indent: -38px;
}

.st-CommentTerms_dates {
  text-align: right;
}

.sw-Link {
  color: #d90000;
  text-decoration: underline;
  -webkit-text-decoration-color: #d90000;
          text-decoration-color: #d90000;
}

.sw-Link:hover {
  text-decoration: none;
  cursor: pointer;
}

.sw-LinkList {
  margin-bottom: 15px;
}

.sw-LinkList_Item {
  margin-bottom: 15px;
  padding-left: 16px;
  position: relative;
  font-size: 14px;
  line-height: 1.4;
}

.sw-LinkList_Item::before {
  position: absolute;
  left: 0;
  top: calc(0.7em - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sw-LinkList_Item:last-child {
  margin-bottom: 0;
}

.sw-LinkList-aside {
  margin-bottom: 8px;
}

.sw-LinkList-aside .sw-LinkList_Item {
  margin-bottom: 12px;
}

.sw-LinkList-aside .sw-LinkList_Item:last-child {
  margin-bottom: 0;
}

.sw-LinkList_Link {
  word-break: break-word;
}

.sw-LinkList_Link:visited {
  color: #666;
}

.sw-LinkList_Link:hover {
  color: #d90000;
  text-decoration: underline;
}

.sw-LinkList_Link-fixedLines-2 {
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sw-LinkList-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sw-LinkList-col-2 .sw-LinkList_Item {
  width: calc( (100% - 20px) / 2);
}

.sw-LinkList-col-2 .sw-LinkList_Item:not(:nth-of-type(2n - 1)) {
  margin-left: 20px;
}

.sw-LinkList-col-2 .sw-LinkList_Item:last-of-type, .sw-LinkList-col-2 .sw-LinkList_Item:nth-last-of-type(2) {
  margin-bottom: 0;
}

.sw-MoreLink {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-MoreLink_Link {
  padding-right: 16px;
  position: relative;
  color: #d90000;
  font-size: 14px;
}

.sw-MoreLink_Link::after {
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sw-DeEmphasize {
  background-color: #f3f3f3;
  padding: 30px 20px 30px;
}

.sw-DeEmphasize-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-DeEmphasize > *:last-child {
  margin-bottom: 0;
}

.sw-BasicButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.sw-BasicButton input[type="submit"],
.sw-BasicButton input[type="reset"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.sw-BasicButton_Button {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 170px;
  height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #d90000;
  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;
  position: relative;
  cursor: pointer;
}

.sw-BasicButton_Label {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  word-break: break-word;
}

.sw-BasicButton-size-m .sw-BasicButton_Button {
  height: 40px;
}

.sw-BasicButton-size-m .sw-BasicButton_Label {
  font-size: 14px;
}

.sw-BasicButton-size-s .sw-BasicButton_Button {
  height: 34px;
}

.sw-BasicButton-size-s .sw-BasicButton_Label {
  font-size: 14px;
}

.sw-BasicButton-stretched {
  width: 100%;
}

.sw-BasicButton-stretched .sw-BasicButton_Button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}

.sw-BasicButton-flexible .sw-BasicButton_Button {
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.sw-BasicButton-secondary .sw-BasicButton_Button {
  background-color: #666;
}

.sw-BasicButton-disabled .sw-BasicButton_Button {
  background-color: #e0e0e0;
  cursor: default;
  pointer-events: none;
}

.sw-BasicButton-disabled .sw-BasicButton_Label {
  color: #ababab;
}

.sw-LinkButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.sw-LinkButton_Button {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 320px;
  height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #d90000;
  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;
  position: relative;
  cursor: pointer;
}

.sw-LinkButton_Label {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.sw-LinkButton_Label::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s_white.svg");
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
}

.sw-LinkButton-size-m .sw-LinkButton_Button {
  height: 40px;
}

.sw-LinkButton-size-m .sw-LinkButton_Label {
  font-size: 14px;
}

.sw-LinkButton-size-s .sw-LinkButton_Button {
  height: 34px;
}

.sw-LinkButton-size-s .sw-LinkButton_Label {
  font-size: 14px;
}

.sw-LinkButton-stretched {
  width: 100%;
}

.sw-LinkButton-stretched .sw-LinkButton_Button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}

.sw-LinkButton-flexible .sw-LinkButton_Button {
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  height: initial;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sw-LinkButton-secondary .sw-LinkButton_Button {
  background-color: #666;
}

.sw-LinkButton-disabled .sw-LinkButton_Button {
  background-color: #e0e0e0;
  cursor: default;
  pointer-events: none;
}

.sw-LinkButton-disabled .sw-LinkButton_Label {
  color: #ababab;
}

.sw-LinkButton-disabled .sw-LinkButton_Label::after {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s_dark_gray.svg");
}

.sw-LinkButton-more .sw-LinkButton_Button {
  background-color: #fff;
  border: 2px solid #d90000;
}

.sw-LinkButton-more .sw-LinkButton_Label {
  color: #d90000;
  font-size: 14px;
}

.sw-LinkButton-more .sw-LinkButton_Label::after {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
}

.sw-OptionButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.sw-OptionButton .sw-OptionButton_Button {
  color: #000;
  text-decoration: none;
}

.sw-OptionButton_Button {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  word-break: break-word;
}

.sw-OptionButton_Icon {
  height: 24px;
  min-width: 24px;
  padding-left: 5px;
  padding-right: 5px;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background-color: #d90000;
}

.sw-IconButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.sw-IconButton_Button {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 170px;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #d90000;
  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;
  position: relative;
  cursor: pointer;
}

.sw-IconButton_Icon {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  height: 24px;
  width: 24px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sw-IconButton_Label {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 4px;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-IconButton-stretched {
  width: 100%;
}

.sw-IconButton-stretched .sw-IconButton_Button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}

.sw-IconButton-flexible .sw-IconButton_Button {
  min-width: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.sw-IconButton-centered .sw-IconButton_Button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-IconButton-centered .sw-IconButton_Label {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 12px;
}

.sw-IconButton-small.sw-IconButton-comment {
  margin-bottom: 0;
}

.sw-IconButton-small .sw-IconButton_Button {
  height: 27px;
  min-width: 0;
}

.sw-IconButton-small .sw-IconButton_Icon {
  height: 21px;
  width: 21px;
}

.sw-IconButton-secondary .sw-IconButton_Button {
  background-color: #666;
}

.sw-IconButton-push .sw-IconButton_Button {
  background-color: #666;
}

.sw-IconButton-push .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_push.svg");
}

.sw-IconButton-message .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_message.svg");
}

.sw-IconButton-line .sw-IconButton_Button {
  background-color: #00b900;
}

.sw-IconButton-line .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_line.svg");
}

.sw-IconButton-facebook .sw-IconButton_Button {
  background-color: #1877f2;
}

.sw-IconButton-facebook .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_fb.svg");
}

.sw-IconButton-twitter .sw-IconButton_Button {
  background-color: #000;
}

.sw-IconButton-twitter .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_tw.svg");
}

.sw-IconButton-photo .sw-IconButton_Button {
  background-color: #f3f3f3;
}

.sw-IconButton-photo .sw-IconButton_Label {
  font-weight: normal;
  color: #000;
}

.sw-IconButton-photo .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_photo.svg");
}

.sw-IconButton-comment .sw-IconButton_Button {
  background-color: #f3f3f3;
}

.sw-IconButton-comment .sw-IconButton_Label {
  font-weight: normal;
  color: #000;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 14px;
}

.sw-IconButton-comment .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_message_red.svg");
}

.sw-IconButton-comment .sw-IconButton_Number {
  height: 100%;
  position: relative;
  margin-left: 8px;
  padding-left: 10px;
  color: #000;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 14px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-IconButton-comment .sw-IconButton_Number::before {
  content: '';
  display: block;
  height: 55%;
  width: 1px;
  position: absolute;
  left: 0;
  background-color: #000;
}

.sw-IconButton-divided .sw-IconButton_Label {
  position: relative;
  margin-left: 10px;
  padding-left: 10px;
  font-size: 12px;
}

.sw-IconButton-divided .sw-IconButton_Label::before {
  content: '';
  display: block;
  height: 70%;
  width: 1px;
  position: absolute;
  left: 0;
  top: 15%;
  background-color: #fff;
  opacity: 0.3;
}

.sw-IconButton-disabled .sw-IconButton_Button {
  background-color: #e0e0e0;
  cursor: default;
  pointer-events: none;
}

.sw-IconButton-disabled .sw-IconButton_Label {
  color: #ababab;
}

.sw-ButtonGroup {
  margin-bottom: 15px;
}

.sw-ButtonGroup_Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  overflow: hidden;
}

.sw-ButtonGroup_Item {
  padding: 5px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sw-ButtonGroup_Item > *:last-child {
  margin-bottom: 0;
}

.sw-ButtonGroup-centered .sw-ButtonGroup_Inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sw-ButtonGroup-right .sw-ButtonGroup_Inner {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-RadioButtons {
  margin-bottom: 15px;
}

.sw-RadioButtons_Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.sw-RadioButtons-space-between .sw-RadioButtons_Inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sw-RadioButtons-column .sw-RadioButtons_Inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sw-RadioButtons-column .sw-RadioButtons_Item {
  width: 67%;
}

.sw-RadioButtons_Item {
  width: calc( (100% - (15px * 3)) / 4);
  position: relative;
  margin-bottom: 15px;
}

.sw-RadioButtons_Item:nth-last-of-type(1), .sw-RadioButtons_Item:nth-last-of-type(2), .sw-RadioButtons_Item:nth-last-of-type(3), .sw-RadioButtons_Item:nth-last-of-type(4) {
  margin-bottom: 0;
}

.sw-RadioButtons_Item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-left: 20px;
  line-height: 1.2;
  height: 100%;
}

.sw-RadioButtons_Item label::before {
  display: block;
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: calc( 50% - 8px);
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #ababab;
}

.sw-RadioButtons_Item label::after {
  opacity: 0;
  display: block;
  content: '';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: calc( 50% - 3px);
  left: 5px;
  height: 6px;
  width: 6px;
  background-color: #fff;
  border-radius: 50%;
  background-color: #d90000;
}

.sw-RadioButtons_Item input {
  display: none;
}

.sw-RadioButtons_Item input:checked ~ label::before {
  border: 3px solid #d90000;
}

.sw-RadioButtons_Item input:checked ~ label::after {
  opacity: 1;
}

.sw-CheckBoxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 600px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sw-CheckBoxes_Inner {
  width: 256px;
}

.sw-CheckBoxes_Item {
  position: relative;
}

.sw-CheckBoxes_Item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  margin-left: 40px;
  line-height: 1.2;
  height: 100%;
}

.sw-CheckBoxes_Item input {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  margin: 0;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #ababab;
  position: absolute;
  top: calc( 50% - 11px);
}

.sw-CheckBoxes_Item input:checked {
  background-color: #d90000;
  border: none;
}

.sw-CheckBoxes_Item input:checked::after {
  width: 24px;
  height: 24px;
  content: '';
  display: block;
  background: center/contain no-repeat url(../images/icn_check.svg);
}

.sw-Search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin-bottom: 15px;
}

.sw-Search_Form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px;
  background-color: #f3f3f3;
}

.sw-Search_InputWrapper {
  margin-right: 6px;
}

.sw-Search_Input {
  font-size: 14px;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  width: 256px;
}

.sw-Search_Input::-webkit-input-placeholder {
  color: #666;
}

.sw-Search_Input::-moz-placeholder {
  color: #666;
}

.sw-Search_Input:-ms-input-placeholder {
  color: #666;
}

.sw-Search_Input::-ms-input-placeholder {
  color: #666;
}

.sw-Search_Input::placeholder {
  color: #666;
}

.sw-Search_Btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_search.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.sw-Banner {
  display: block;
  margin-bottom: 10px;
}

.sw-Banner_Inner {
  display: block;
}

.sw-Banner img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-Banner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.sw-Banner-left .sw-Banner_Inner {
  max-width: 320px;
}

.sw-Banner-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-Banner-right .sw-Banner_Inner {
  max-width: 320px;
}

.sw-TabGroup {
  margin-bottom: 15px;
}

.sw-TabGroup_TabOuter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.sw-TabGroup_Tab {
  cursor: pointer;
  color: #ababab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: bold;
  border-bottom: 4px solid transparent;
  padding: 15px 10px 10px;
  word-break: break-word;
}

.sw-TabGroup_Tab-active {
  color: #d90000;
  border-bottom-color: #d90000;
}

.sw-TabGroup_Content {
  display: none;
}

.sw-TabGroup_Content-active {
  display: block;
}

.sw-TabGroup-aside .sw-TabGroup_TabOuter {
  margin-bottom: 15px;
}

.sw-TabGroup-aside .sw-TabGroup_Tab {
  padding: 15px 5px 10px;
}

.sw-ThumbList {
  margin-bottom: 15px;
}

.sw-ThumbList_Img {
  overflow: hidden;
  position: relative;
}

.sw-ThumbList_ImgInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.sw-ThumbList_ImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-ThumbList_Label {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
}

.sw-ThumbList_Label-active {
  background-color: #d90000;
}

.sw-ThumbList_Info {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.sw-ThumbList_Title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  word-break: break-word;
}

.sw-ThumbList_Title-fontSize-2l {
  font-size: 18px;
}

.sw-ThumbList_Title-fontSize-4s {
  font-size: 10px;
}

.sw-ThumbList_Title-fixedLines-1 {
  height: 19px;
}

.sw-ThumbList_Title-fixedLines-2 {
  height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sw-ThumbList_Title-fixedLines-2.sw-ThumbList_Title-fontSize-2l {
  height: 50px;
}

.sw-ThumbList_Title-fixedLines-3 {
  height: 57px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sw-ThumbList_Title-fixedLines-3.sw-ThumbList_Title-fontSize-4s {
  height: 42px;
}

.sw-ThumbList :visited .sw-ThumbList_Title {
  color: #666;
}

.sw-ThumbList :hover .sw-ThumbList_Title {
  color: #d90000;
  text-decoration: underline;
}

.sw-ThumbList_Description {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 12px;
  word-break: break-word;
}

.sw-ThumbList_Description-fixedLines-2 {
  height: 38px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sw-ThumbList_Description-fixedLines-3 {
  height: 57px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sw-ThumbList_Meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #666;
  word-break: break-word;
}

.sw-ThumbList_Meta-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.sw-ThumbList_Meta-fontSize-4s {
  font-size: 10px;
}

.sw-ThumbList_MetaItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-ThumbList_MetaItem + .sw-ThumbList_MetaItem {
  position: relative;
  padding-left: 2em;
}

.sw-ThumbList_MetaItem + .sw-ThumbList_MetaItem::before {
  content: '';
  height: 75%;
  position: absolute;
  top: 12.5%;
  left: 1em;
  border-left: 1px solid #e0e0e0;
}

.sw-ThumbList-aside .sw-ThumbList_Label {
  width: 20px;
  height: 20px;
  font-size: 14px;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Item {
  margin-bottom: 10px;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Item:last-of-type {
  margin-bottom: 0;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Item:last-of-type .sw-ThumbList_Info {
  border-bottom: none;
  padding-bottom: 0;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Info {
  margin-left: 10px;
  padding-bottom: 4px;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Title {
  font-weight: normal;
  margin-bottom: 4px;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Title-fixedLines-3 {
  max-height: 50px;
  line-height: 1.2;
}

.sw-ThumbList-aside.sw-ThumbList-col-1 .sw-ThumbList_Meta {
  font-size: 10px;
}

.sw-ThumbList-col-1 .sw-ThumbList_Item {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-ThumbList-col-1 .sw-ThumbList_Item:last-of-type {
  margin-bottom: 0;
}

.sw-ThumbList-col-1 .sw-ThumbList_Item:last-of-type .sw-ThumbList_Info {
  border-bottom: none;
  padding-bottom: 0;
}

.sw-ThumbList-col-1 .sw-ThumbList_Img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sw-ThumbList-col-1 .sw-ThumbList_Img-ratio-3-2 {
  width: 210px;
  height: 140px;
}

.sw-ThumbList-col-1 .sw-ThumbList_Img-ratio-3-2-small {
  width: 90px;
  height: 60px;
}

.sw-ThumbList-col-1 .sw-ThumbList_Info {
  margin-left: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.sw-ThumbList-col-1 .sw-ThumbList_Title {
  margin-bottom: 10px;
}

.sw-ThumbList-col-1 .sw-ThumbList_Description-fixedLines-2 {
  margin-bottom: 0;
}

.sw-ThumbList-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sw-ThumbList-col-2 .sw-ThumbList_Item {
  margin-bottom: 10px;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-ThumbList-col-2 .sw-ThumbList_Item:not(:nth-of-type(2n - 1)) {
  margin-left: 20px;
}

.sw-ThumbList-col-2 .sw-ThumbList_Item:nth-last-of-type(1), .sw-ThumbList-col-2 .sw-ThumbList_Item:nth-last-of-type(2) {
  margin-bottom: 0;
}

.sw-ThumbList-col-2 .sw-ThumbList_Item:nth-last-of-type(1) .sw-ThumbList_Info, .sw-ThumbList-col-2 .sw-ThumbList_Item:nth-last-of-type(2) .sw-ThumbList_Info {
  border-bottom: none;
  padding-bottom: 0;
}

.sw-ThumbList-col-2 .sw-ThumbList_Img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.sw-ThumbList-col-2 .sw-ThumbList_Img-ratio-3-2 {
  width: 90px;
  height: 60px;
}

.sw-ThumbList-col-2 .sw-ThumbList_Info {
  margin-left: 10px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sw-ThumbList-col-2 .sw-ThumbList_Title {
  margin-bottom: 2px;
}

.sw-ThumbList-col-2 .sw-ThumbList_Title-fixedLines-3 {
  height: 50px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.sw-ThumbList-col-2 .sw-ThumbList_Meta {
  font-size: 10px;
}

.sw-ThumbList-col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sw-ThumbList-col-3 .sw-ThumbList_Item {
  margin-bottom: 15px;
  width: 210px;
}

.sw-ThumbList-col-3 .sw-ThumbList_Item:not(:nth-of-type(3n - 2)) {
  margin-left: 15px;
}

.sw-ThumbList-col-3 .sw-ThumbList_Item:nth-last-of-type(1), .sw-ThumbList-col-3 .sw-ThumbList_Item:nth-last-of-type(2), .sw-ThumbList-col-3 .sw-ThumbList_Item:nth-last-of-type(3) {
  margin-bottom: 0;
}

.sw-ThumbList-col-3 .sw-ThumbList_Img {
  margin-bottom: 10px;
}

.sw-ThumbList-col-3 .sw-ThumbList_Img-ratio-2-1 {
  width: 100%;
  height: 105px;
}

.sw-ThumbList-col-3 .sw-ThumbList_Img-ratio-3-2 {
  width: 100%;
  height: 140px;
}

.sw-ThumbList-col-3 .sw-ThumbList_Title {
  margin-bottom: 8px;
}

.sw-ThumbList-col-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sw-ThumbList-col-4 .sw-ThumbList_Item {
  margin-bottom: 15px;
  width: 156px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sw-ThumbList-col-4 .sw-ThumbList_Item:not(:nth-of-type(4n - 3)) {
  margin-left: 12px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Item:nth-last-of-type(1), .sw-ThumbList-col-4 .sw-ThumbList_Item:nth-last-of-type(2), .sw-ThumbList-col-4 .sw-ThumbList_Item:nth-last-of-type(3), .sw-ThumbList-col-4 .sw-ThumbList_Item:nth-last-of-type(4) {
  margin-bottom: 0;
}

.sw-ThumbList-col-4 .sw-ThumbList_Img {
  margin-bottom: 10px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Img-narrow {
  margin-bottom: 5px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Img-ratio-3-2 {
  width: 100%;
  height: 104px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Img-ratio-2-1 {
  width: 100%;
  height: 78px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Img-ratio-1-1 {
  width: 100%;
  height: 156px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sw-ThumbList-col-4 .sw-ThumbList_Title {
  margin-bottom: 8px;
}

.sw-ThumbList-col-4 .sw-ThumbList_Title-narrow {
  margin-bottom: 3px;
}

.sw-ThumbList_BottomInfo {
  margin-top: 15px;
  width: 100%;
}

.sw-ThumbList_BottomInfo-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 16px;
}

.sw-ThumbList_BottomInfo-image img {
  width: auto;
  height: 100%;
}

.sw-PickupList {
  margin-bottom: 15px;
}

.sw-PickupList_Pickup {
  display: block;
  margin-bottom: 15px;
}

.sw-PickupList_PickupInner {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-PickupList_PickupImg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
  height: 60px;
  overflow: hidden;
  position: relative;
}

.sw-PickupList_PickupImgInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.sw-PickupList_PickupImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-PickupList_PickupTitle {
  margin-left: 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

.sw-PickupList_PickupTitle-fixedLines-3 {
  height: 63px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.sw-PickupList_PickupDescription {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.sw-PickupList_PickupDescription-fixedLines-2 {
  height: 38px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sw-PickupList_List {
  margin-bottom: 15px;
}

.sw-PickupList_ListItem {
  margin-bottom: 10px;
  padding-left: 16px;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  position: relative;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
}

.sw-PickupList_ListItem::before {
  position: absolute;
  left: 0;
  top: calc(10px + 0.7em - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sw-PickupList_ListItem:last-child {
  margin-bottom: 0;
}

.sw-PickupList_Link {
  display: block;
  word-break: break-word;
}

.sw-PickupList_Link:visited {
  color: #666;
}

.sw-PickupList_Link:hover {
  color: #d90000;
  text-decoration: underline;
}

.sw-PickupList_Link-fixedLines-2 {
  height: 37px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sw-BannerList {
  margin-bottom: 15px;
}

.sw-BannerList_Item {
  margin-bottom: 30px;
}

.sw-BannerList_Item:last-child {
  margin-bottom: 0;
}

.sw-BannerList_ItemInner {
  display: block;
  width: 348px;
}

.sw-BannerList_Img {
  margin-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
}

.sw-BannerList_Img img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}

.sw-BannerList_Title {
  font-size: 12px;
  color: #666;
  word-break: break-word;
}

.sw-FixedButton {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  z-index: 300;
  background-color: #fff;
  -webkit-box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.sw-FixedButton-shown {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sw-FixedButton > *:last-child {
  margin-bottom: 0;
}

#share-sns {
  position: absolute;
  z-index: 100;
  -webkit-animation-name: open-share-modal;
          animation-name: open-share-modal;
  -webkit-animation-duration: .5s;
          animation-duration: .5s;
}

#share-sns a {
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-right: 14px;
  border-radius: 10%;
  background-repeat: no-repeat;
  background-position: center;
}

#share-sns a:last-of-type {
  margin-right: 0;
}

#share-sns .twitter {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_tw.svg");
  background-color: #000;
}

#share-sns .facebook {
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_fb.svg");
  background-color: #1877f2;
}

.share-sns--hidden {
  display: none;
  -webkit-transition: opacity;
  transition: opacity;
}

@-webkit-keyframes open-share-modal {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes open-share-modal {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sw-Profile_Inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.sw-Profile_Img {
  width: 40%;
  min-width: 220px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.sw-Profile_ImgInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  max-height: 360px;
}

.sw-Profile_ImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-Profile_Info {
  overflow: hidden;
  margin-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.sw-Profile_Text {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  overflow-wrap: break-word;
}

.sw-Profile_Text:last-child {
  margin-bottom: 0;
}

.sw-OfficialLink {
  margin-bottom: 15px;
}

.sw-OfficialLink_Website {
  margin-bottom: 15px;
  word-break: break-word;
}

.sw-OfficialLink_Website > *:last-child {
  margin-bottom: 0;
}

.sw-OfficialLink_SnsWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-OfficialLink_Sns {
  margin-right: 16px;
}

.sw-OfficialLink_SnsLink {
  display: block;
}

.sw-OfficialLink_Image {
  display: block;
  height: 32px;
  width: auto;
}

.sw-AnnotatedContent {
  margin-bottom: 15px;
}

.sw-AnnotatedContent_Content {
  margin-bottom: 10px;
}

.sw-AnnotatedContent_Content > *:last-child {
  margin-bottom: 0;
}

.sw-AnnotatedContent_Annotation {
  font-size: 12px;
  color: #666;
  word-break: break-word;
}

.sw-AnnotatedContent_Annotation-right {
  text-align: right;
}

.sw-TopView {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sw-TopView_EyeCatch {
  overflow: hidden;
  width: 610px;
  height: 406px;
}

.sw-TopView_EyeCatchItem {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.sw-TopView_Image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-TopView_Image img {
  display: block;
  width: 100%;
  height: auto;
}

.sw-TopView_Meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding-left: 25px;
  padding-right: 30px;
  padding-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sw-TopView_Label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 8px;
}

.sw-TopView_LabelText {
  display: inline;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 5px;
  background-color: #d90000;
}

.sw-TopView_Title {
  max-height: 99px;
  overflow-y: hidden;
}

.sw-TopView_TitleText {
  display: inline;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 5px;
  padding-right: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  word-break: break-word;
}

.sw-TopView_Thumbnails {
  width: 357px;
  margin-left: 15px;
}

.sw-TopView_ThumbItem {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 125px;
  margin-bottom: 15px;
  position: relative;
}

.sw-TopView_ThumbItem:last-of-type {
  margin-bottom: 0;
}

.sw-TopView_ThumbImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
}

.sw-TopView_ThumbImg img {
  display: block;
  width: auto;
  height: 100%;
}

.sw-TopView_ThumbTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-left: 10px;
  border-bottom: 1px solid #e0e0e0;
  word-break: break-word;
}

.sw-TopView_ThumbTitle:last-of-type {
  border-bottom: none;
}

.sw-TopView_ThumbTitleInner {
  max-height: 118px;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.sw-Accordion {
  border: 4px solid #f3f3f3;
  padding-top: 20px;
  padding-bottom: 10px;
  padding-right: 15px;
  padding-left: 15px;
  text-align: justify;
  cursor: pointer;
}

.sw-Accordion_Title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 35px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-Accordion_Title-isActive .sw-Accordion_Arrow {
  border: solid #d90000 1px;
  background-color: #fff;
}

.sw-Accordion_Title-isActive .sw-Accordion_Arrow::before {
  background-color: #d90000;
}

.sw-Accordion_Title-isActive .sw-Accordion_Arrow::after {
  background-color: #d90000;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.sw-Accordion_TitleText {
  font-size: 16px;
  line-height: 1.5;
}

.sw-Accordion_TitleText a {
  -webkit-transition: 0.3;
  transition: 0.3;
  font-weight: bold;
}

.sw-Accordion_TitleText a:hover {
  opacity: 0.7;
}

.sw-Accordion_TitleIcon {
  white-space: nowrap;
}

.sw-Accordion_Inner {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sw-Accordion_Inner-isOpen {
  max-height: 1000px;
}

.sw-Accordion_InnerText {
  border-top: 1px dashed #ababab;
  padding-top: 20px;
  padding-bottom: 10px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.sw-Accordion_InnerText a {
  -webkit-transition: 0.3;
  transition: 0.3;
  font-weight: bold;
  word-break: break-all;
  overflow-wrap: break-word;
  text-decoration: underline;
}

.sw-Accordion_InnerText a:hover {
  opacity: 0.7;
}

.sw-Accordion_InnerIcon {
  white-space: nowrap;
}

.sw-Accordion_Arrow {
  position: absolute;
  top: calc(50% - 17px);
  right: 0px;
  width: 24px;
  height: 24px;
  background-color: #d90000;
  border-radius: 50%;
}

.sw-Accordion_Arrow::before, .sw-Accordion_Arrow::after {
  content: '';
  width: 10px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 5px);
}

.sw-Accordion_Arrow::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.sw-Press .sw-Press_LinkButtonLabel {
  text-decoration: none;
}

.sw-Press_LinkButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}

.sw-Press_LinkButtonInner {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 320px;
  height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #d90000;
  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;
  position: relative;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #d90000;
}

.sw-Press_LinkButtonLabel {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #d90000;
  font-size: 14px;
}

.sw-Press_LinkButtonLabel::after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg");
  position: absolute;
  right: 10px;
  top: calc(50% - 6px);
}

.sw-Press_Grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sw-Press_GridItem {
  width: 481px;
}

.sw-Press_GridItem:not(:nth-of-type(2n - 1)) {
  margin-left: 20px;
}

.sw-Press_Precaution {
  line-height: 1.6;
}

.sw-Press_PrecautionTitle {
  font-weight: bold;
  margin-bottom: 10px;
  word-break: break-word;
}

.sw-Press_PrecautionInner li {
  margin-left: 16px;
  margin-bottom: 10px;
  word-break: break-word;
  list-style: disc;
}

.sw-Press_Banner {
  display: block;
}

.sw-Press_Banner img {
  width: 200px;
  height: 100px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.sw-Press_Textarea {
  display: block;
  width: 400px;
  min-height: 100px;
  line-height: 1.5;
}

.sw-PressThumbList {
  margin-bottom: 15px;
}

.sw-PressThumbList_Img {
  overflow: hidden;
  position: relative;
}

.sw-PressThumbList_ImgInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.sw-PressThumbList_ImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.sw-PressThumbList_Info {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.sw-PressThumbList_Title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  word-break: break-word;
}

.sw-PressThumbList :visited .sw-PressThumbList_Title {
  color: #666;
}

.sw-PressThumbList :hover .sw-PressThumbList_Title {
  color: #d90000;
  text-decoration: underline;
}

.sw-PressThumbList-col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sw-PressThumbList-col-3 .sw-PressThumbList_Item {
  margin-bottom: 15px;
  width: 31.8%;
  color: inherit;
  text-decoration: none;
}

.sw-PressThumbList-col-3 .sw-PressThumbList_Item:not(:nth-of-type(3n - 2)) {
  margin-left: 2.3%;
}

.sw-PressThumbList-col-3 .sw-PressThumbList_Item:nth-last-of-type(1), .sw-PressThumbList-col-3 .sw-PressThumbList_Item:nth-last-of-type(2), .sw-PressThumbList-col-3 .sw-PressThumbList_Item:nth-last-of-type(3) {
  margin-bottom: 0;
}

.sw-PressThumbList-col-3 .sw-PressThumbList_Img {
  margin-bottom: 10px;
}

.sw-PressThumbList-col-3 .sw-PressThumbList_Img-ratio-3-2 {
  width: 100%;
  height: 202px;
}

.sw-PressThumbList-col-3 .sw-PressThumbList_Title {
  margin-bottom: 8px;
}

.wp-editor {
  margin-bottom: 40px;
}

.wp-editor > *:last-child {
  margin-bottom: 0;
}

.wp-editor h2 {
  margin-bottom: 20px;
  padding-left: 23px;
  position: relative;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

.wp-editor h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  height: 100%;
  width: 8px;
  background-color: #d90000;
}

.wp-editor h3 {
  margin-bottom: 10px;
  font-weight: bold;
  word-break: break-word;
}

.wp-editor p {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1.4em;
  word-break: break-word;
}

.wp-editor a {
  color: #d90000;
  text-decoration: underline;
}

.wp-editor a:hover {
  text-decoration: none;
}

.c-Figure {
  margin-bottom: 30px;
}

.c-Figure img {
  display: block;
  width: 100%;
  height: auto;
}

.c-Figure a {
  text-decoration: none;
}

.c-Figure_Img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  margin-bottom: 10px;
}

.c-Figure_ImgInner {
  display: block;
}

.c-Figure_Caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.c-Figure .aligncenter .c-Figure_Img,
.c-Figure .aligncenter .c-Figure_Caption {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-Figure .alignright .c-Figure_Img,
.c-Figure .alignright .c-Figure_Caption {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-Figure .c-Figure_CaptionText {
  width: 100%;
  color: #666;
  line-height: 1.4;
  font-size: 12px;
  word-wrap: break-word;
  margin-bottom: 0;
}

.wp-editor p img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-editor p .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.wp-editor p .alignright {
  margin-left: auto;
  margin-right: 0;
}

.c-GalleryContent {
  margin-bottom: 40px;
}

.c-GalleryContent > *::last-child {
  margin-bottom: 0;
}

.c-PhotoNumber {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  word-break: break-word;
}

.c-PhotoNumber_Outer {
  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;
}

.c-PhotoNumber_ButtonGroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.c-PhotoCaption {
  margin-bottom: 10px;
  font-size: 14px;
  word-break: break-word;
}

.c-PhotoImage {
  margin-bottom: 20px;
}

.c-PhotoImage .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.c-PhotoImage .alignright {
  margin-left: auto;
  margin-right: 0;
}

.c-PhotoImage img {
  display: block;
  max-width: 100%;
  height: auto;
}

.c-GalleryZero_Content {
  position: relative;
}

.c-PhotoImage-Gradient {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin-bottom: 0;
}

.c-PhotoImage-Gradient::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent 0 15%, #fff 220px 100%);
}

.c-GalleryZero_Button {
  margin-right: auto;
  margin-left: auto;
  width: 350px;
}

.wp-editor .youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-editor .youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-TableOfContents, .wp-editor .c-TableOfContents {
  border: 3px solid #f3f3f3;
  padding: 20px;
  margin-bottom: 20px;
}

.c-TableOfContents_Title, .wp-editor .c-TableOfContents_Title {
  cursor: pointer;
  color: #d90000;
  margin-bottom: 15px;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  padding-left: 0;
  word-break: break-word;
}

.c-TableOfContents_Title::before, .wp-editor .c-TableOfContents_Title::before {
  width: 0;
  height: 0;
}

.c-TableOfContents_Title::after, .wp-editor .c-TableOfContents_Title::after {
  position: absolute;
  right: 0;
  top: calc(0.7em - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("../images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.c-TableOfContents_List, .wp-editor .c-TableOfContents_List {
  max-height: none;
  overflow: hidden;
  word-break: break-word;
  padding-left: 0;
  list-style: none;
  font-size: inherit;
  margin-bottom: 0;
}

.c-TableOfContents_List > *:last-child, .wp-editor .c-TableOfContents_List > *:last-child {
  margin-bottom: 0;
}

.c-TableOfContents_Item, .wp-editor .c-TableOfContents_Item {
  margin-bottom: 15px;
  padding-left: 16px;
  position: relative;
  font-size: 15px;
  line-height: 1.4;
}

.c-TableOfContents_Item::before, .wp-editor .c-TableOfContents_Item::before {
  position: absolute;
  left: 0;
  top: calc(0.7em - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("../images/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.c-TableOfContents_Item > a, .wp-editor .c-TableOfContents_Item > a {
  display: block;
  color: #000;
  text-decoration: none;
}

.c-TableOfContents_Item > a:hover, .wp-editor .c-TableOfContents_Item > a:hover {
  color: #d90000;
  text-decoration: underline;
}

.c-TableOfContents_Item > a + ul, .wp-editor .c-TableOfContents_Item > a + ul {
  margin-top: 8px;
}

.c-TableOfContents-closed .c-TableOfContents_Title, .wp-editor .c-TableOfContents-closed .c-TableOfContents_Title {
  margin-bottom: 0;
}

.c-TableOfContents-closed .c-TableOfContents_Title::after, .wp-editor .c-TableOfContents-closed .c-TableOfContents_Title::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-TableOfContents-closed .c-TableOfContents_List, .wp-editor .c-TableOfContents-closed .c-TableOfContents_List {
  max-height: 0;
  -webkit-animation-name: tableOfContentsClose;
          animation-name: tableOfContentsClose;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transform-origin: top;
          transform-origin: top;
}

.c-TableOfContents-opened .c-TableOfContents_List, .wp-editor .c-TableOfContents-opened .c-TableOfContents_List {
  max-height: none;
  -webkit-animation-name: tableOfContentsOpen;
          animation-name: tableOfContentsOpen;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-transform-origin: top;
          transform-origin: top;
}

.wp-editor .c-AmazonProduct {
  max-width: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding: 20px;
  border: 3px solid #f3f3f3;
  text-decoration: none;
}

.wp-editor .c-AmazonProduct:hover .wp-editor .c-AmazonProduct_Title {
  text-decoration: none;
}

.wp-editor .c-AmazonProduct_Img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 120px;
  height: auto;
}

.wp-editor .c-AmazonProduct_Img img {
  display: block;
  width: 100%;
  height: auto;
}

.wp-editor .c-AmazonProduct_Info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 25px;
  line-height: 1.4;
}

.wp-editor .c-AmazonProduct_Title {
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  word-break: break-word;
  font-size: 16px;
  font-weight: bold;
  color: #000;
}

.wp-editor .c-AmazonProduct_Meta {
  max-height: 112px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  word-break: break-word;
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 14px;
  color: #000;
}

.wp-editor .c-AmazonProduct_Meta p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  word-break: break-word;
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 14px;
  color: #000;
}

.wp-editor .c-AmazonProduct_Button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: auto;
}

.wp-editor .c-AmazonProduct_ButtonInner {
  padding: 10px 20px;
  background-color: #f90;
  border-radius: 4px;
}

.wp-editor .c-AmazonProduct_ButtonLabel {
  height: 100%;
  text-align: center;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.ad-SkyscraperAd {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 16px;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.ad-SkyscraperAd_Inner {
  position: relative;
}

.ad-SkyscraperAd_Banner {
  pointer-events: auto;
  width: 160px;
  position: absolute;
  top: 0;
}

.ad-SkyscraperAd_Banner-left {
  left: -180px;
}

.ad-SkyscraperAd_Banner-right {
  right: -180px;
}

.ad-SkyscraperAd_Banner img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-GlobalNavAd img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-SidebarAd {
  margin-bottom: 10px;
}

.ad-SidebarAd img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-BlockAd {
  margin-bottom: 20px;
}

.ad-BlockAd img {
  width: 100%;
  height: auto;
  display: block;
}

.ad-BlockAd-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ad-BlockAd-centered .ad-BlockAd_Item {
  width: 300px;
}

.ad-BlockAd-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ad-BlockAd-col-2 .ad-BlockAd_Item {
  width: 300px;
}

.ad-BlockAd-col-2 .ad-BlockAd_Item:nth-last-of-type(2n - 1) {
  margin-left: 60px;
}

.w-Share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.w-Share .js-hideWebpush {
  display: none;
}

.w-Share_Item {
  -webkit-box-flex: initial;
      -ms-flex: initial;
          flex: initial;
  width: calc(50% - 4px);
  margin-bottom: 4px;
  margin-left: 0;
}

.w-Share_Item > *:last-child {
  margin-bottom: 0;
}

.w-Share_Item:nth-last-of-type(2n - 1) {
  margin-left: 4px;
}

.w-Share_Item:last-child, .w-Share_Item:nth-last-child(2) {
  margin-bottom: 0;
}

.w-SnsCount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 15px;
}

.w-SnsCount_Item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.w-SnsCount_Item > *:last-child {
  margin-bottom: 0px;
}

.w-SnsCount_Item:not(:first-child) {
  margin-left: 4px;
}

.w-Manga {
  margin-bottom: 15px;
}

.w-Manga_Pickup {
  display: block;
  margin-bottom: 15px;
}

.w-Manga_PickupThumb {
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  padding-top: 53.658%;
}

.w-Manga_PickupThumb img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.w-Manga_PickupTitle {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 6px;
  word-break: break-word;
}

.w-Manga_PickupDate {
  color: #666;
  font-size: 11px;
  word-break: break-word;
}

.w-Manga_Banners {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.w-Manga_BannerItem {
  width: calc(50% - 5px);
  margin-bottom: 10px;
}

.w-Manga_BannerItem:nth-of-type(2n) {
  margin-left: 10px;
}

.w-Manga_BannerItem:nth-last-of-type(2), .w-Manga_BannerItem:nth-last-of-type(1) {
  margin-bottom: 0;
}

.w-Manga_BannerThumb {
  display: block;
  padding-top: 53.658%;
  position: relative;
  overflow: hidden;
}

.w-Manga_BannerThumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
}

.w-MangaUnderContents {
  margin-bottom: 15px;
}

.w-MangaUnderContents .sw-ThumbList_Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.w-MangaUnderContents .sw-ThumbList_Img {
  padding-top: 53.658%;
}

.w-MangaUnderContents .sw-ThumbList_Info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.w-MangaUnderContents .sw-ThumbList_Title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.manga-Header {
  margin-bottom: 15px;
}

.manga-Header_Img {
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
  padding-top: 66%;
}

.manga-Header_ImgInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.manga-Header_ImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.manga-Header_Info {
  margin-bottom: 15px;
}

.manga-Header_Title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
  word-break: break-word;
}

.manga-Header_Description {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.4;
  word-break: break-word;
}

.manga-Header_Meta {
  font-size: 12px;
  word-break: break-word;
}

.manga-ThumbList {
  margin-bottom: 15px;
}

.manga-ThumbList_Img {
  width: 100%;
  margin-bottom: 15px;
  overflow: hidden;
  position: relative;
}

.manga-ThumbList_Img-ratio-episodeBanner {
  padding-top: 66%;
}

.manga-ThumbList_ImgInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.manga-ThumbList_ImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.manga-ThumbList_Title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

.manga-ThumbList_Meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  color: #666;
  word-break: break-word;
}

.manga-ThumbList-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.manga-ThumbList-col-2 .manga-ThumbList_Item {
  margin-bottom: 20px;
  width: 320px;
}

.manga-ThumbList-col-2 .manga-ThumbList_Item:nth-child(2n) {
  margin-left: 20px;
}

.manga-ThumbList-col-2 .manga-ThumbList_Item:nth-last-child(1), .manga-ThumbList-col-2 .manga-ThumbList_Item:nth-last-child(2) {
  margin-bottom: 0;
}

.manga-ThumbList-col-2 .manga-ThumbList_Title {
  margin-bottom: 8px;
}

.manga-EpisodeList {
  margin-bottom: 15px;
}

.manga-EpisodeList_Item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #e0e0e0;
}

.manga-EpisodeList_Item:not(:first-child) {
  padding-top: 10px;
}

.manga-EpisodeList_Item:not(:last-child) {
  padding-bottom: 10px;
}

.manga-EpisodeList_Item:last-child {
  border-bottom: none;
}

.manga-EpisodeList_ImgWrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 148px;
}

.manga-EpisodeList_Img {
  overflow: hidden;
  position: relative;
}

.manga-EpisodeList_Img-ratio-mangaPage {
  padding-top: 141.891%;
}

.manga-EpisodeList_ImgInner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.manga-EpisodeList_ImgInner img {
  width: 100%;
  height: auto;
  display: block;
}

.manga-EpisodeList_Info {
  margin-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.manga-EpisodeList_Title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

.manga-EpisodeList_Summary {
  font-size: 14px;
  margin-top: 15px;
  line-height: 1.4;
}

.manga-EpisodeList_Summary p {
  margin-bottom: 1em;
}

.manga-EpisodeList_Summary > :last-child {
  margin-bottom: 0;
}

.manga-EpisodeList_OriginalLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  word-break: break-word;
}

.manga-Main img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

/* サイトマップ */
/* -------------------------------------------------------- */
.ttl03 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px 0;
  padding: 5px 10px;
  background-color: #e4e4e4;
  word-break: break-word;
}

/* aboutusSec */
/* -------------------------------------------------------- */
.aboutusSec a {
  text-decoration: none;
  color: #00f;
}

.aboutusSec a:hover {
  text-decoration: underline;
}

.aboutusSec .sec {
  margin-bottom: 30px;
  word-break: break-word;
}

.aboutusSec .sec1 {
  margin: 0 15px;
}

.aboutusSec .txt1 {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 10px 0;
}

.aboutusSec .txt2 > p,
.aboutusSec .txt2 > ul {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.aboutusSec .txt3 {
  margin: 0 0 15px 0;
}

.aboutusSec .txt3 dl {
  font-size: 15px;
  margin: 0 0 5px 0;
  position: relative;
}

.aboutusSec .txt3 dt {
  position: absolute;
  top: 0;
  left: 0;
}

.aboutusSec .txt3 dd {
  margin: 0 0 0 8em;
}

.aboutusSec ul.disc {
  list-style-type: disc;
  margin-left: 1.5em;
}

/* sitemaoSec */
/* -------------------------------------------------------- */
.sitemapSec .disc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sitemapSec .disc li {
  width: 33%;
  line-height: 1.4;
  margin-bottom: 8px;
  word-break: break-word;
}

.sitemapSec .sec {
  margin-bottom: 30px;
}

/* contactSec */
/* -------------------------------------------------------- */
.contactSec {
  margin-bottom: 30px;
}

.contactSec a {
  text-decoration: none;
  color: #00f;
}

.contactSec a:hover {
  text-decoration: underline;
}

.contactSec .txt1 {
  margin: 0 0 30px 0;
  line-height: 1.8;
  word-break: break-word;
}

.contactSec .txt1 > p {
  font-size: 14px;
  margin: 0 0 15px 0;
}

.contactSec .txt2 {
  width: 700px;
  word-break: break-word;
}

.contactSec .txt2 > dl {
  width: 100%;
  margin: 0 0 30px 0;
  display: table;
  table-layout: fixed;
  border-spacing: 0;
}

.contactSec .txt2 > dl > dt,
.contactSec .txt2 > dl > dd {
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: table-cell;
  line-height: 1.8;
}

.contactSec .txt2 > dl > dt {
  width: 15em;
  font-weight: bold;
}

.contactSec .txt2 > dl > dt span {
  font-size: 90%;
  color: #f00;
  margin: 0 0 0 10px;
  display: inline-block;
}

.contactSec .txt2 > dl > dd input,
.contactSec .txt2 > dl > dd textarea {
  width: 100%;
  padding: 5px;
  background-color: #fff;
  border: solid 1px #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.contactSec .txt2 > dl > dd textarea {
  min-height: 100px;
  resize: vertical;
}

.contactSec .formWrap {
  margin: 0 0 15px 0;
}

.contactSec .formAction {
  padding-left: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contactSec .confirmAction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px 0;
}

.contactSec .confirmAction .sw-BasicButton + .sw-BasicButton {
  margin-left: 15px;
}

.contactSec .st-ContactForm_InputTitle {
  line-height: 1.8;
}

/* ABJフッター */
#__sgk-footer-sub {
  overflow: auto;
  background-color: #e3e2de;
  font-family: 'ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ','Meiryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 10px;
  line-height: 1.2;
}

#__sgk-footer-sub .__sgk-footer-sub-wrap {
  text-align: center;
  margin: 0 auto;
  padding-top: 21px;
  padding-bottom: 21px;
}

#__sgk-footer-sub .__sgk-footer-sub-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

#__sgk-footer-sub ul li {
  padding: 0 5px 0 0;
}

#__sgk-footer-sub ul li:before {
  content: "|";
  color: #333;
  margin-right: 5px;
}

#__sgk-footer-sub ul li:nth-of-type(1) {
  padding-left: 0;
}

#__sgk-footer-sub ul li:nth-of-type(1):before {
  display: none;
}

#__sgk-footer-sub ul a {
  color: #333;
  text-decoration: none;
}

#__sgk-footer-sub .__sgk-footer-sub-copyright {
  margin: 0;
}

#__sgk-footer-sub .__sgk-footer-sub-copyright small {
  font-weight: 400;
  color: #333;
}

#__sgk-footer-sub .__sgk-footer-sub-prohibited {
  font-weight: 400;
  color: #333;
  margin: 0;
}

#__sgk-footer-sub .__sgk-footer-sub-abj-mark {
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 11px;
  text-align: center;
}

#__sgk-footer-sub .__sgk-footer-sub-abj-img {
  width: 100%;
  height: auto;
  display: block;
}

#__sgk-footer-sub .__sgk-footer-sub-abj-text {
  font-weight: 400;
  color: #333;
  text-align: center;
  margin: 10px 50px;
}

/* iframe内のbodyにpaddingがつくと，AIコメント側jsの高さ取得でpaddingを含まずずれが発生するため */
body:has(#__ul_comment-widget) {
  padding: unset;
  visibility: hidden;
}

#ulCommentWidget {
  display: none;
  border: #e0e0e0 solid 1px;
  padding: 15px;
}

#ulModalContent {
  border-radius: 4px !important;
  padding: 10px 30px 20px !important;
}

#ulModalContent .sns-buttons {
  text-align: center;
}

#ulModalContent .tweet-button {
  padding: 6px 9px 6px 0px !important;
  background-color: #d90000 !important;
  border-radius: 4px !important;
  font-weight: bold !important;
}

#ulModalContent #ulModalClose {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  display: block !important;
  margin: 0 auto !important;
}

#ulModalContent #ulModalClose:hover {
  color: #000 !important;
  text-decoration: unset;
}

#__ul_comment-widget * {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic Medium", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

#__ul_comment-widget #__ul_comments .comment-layout {
  margin: 20px 0 0;
}

#__ul_comment-widget #__ul_comments .comment-layout:first-child {
  margin: unset;
}

#__ul_comment-widget #__ul_comments .comment-layout .name {
  color: #000;
  font-size: 15px !important;
  font-weight: bold !important;
  margin-right: 10px;
  line-height: 1.2;
}

#__ul_comment-widget #__ul_comments .comment-layout .id {
  color: #666 !important;
  font-size: 12px !important;
  margin: unset !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .reply-time,
#__ul_comment-widget #__ul_comments .comment-layout .time {
  color: #666 !important;
  font-size: 12px !important;
  margin: 0 0 0 15px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .share {
  color: #666 !important;
  font-size: 14px !important;
  margin: 0 0 0 15px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .comment {
  color: #000 !important;
  font-size: 14px !important;
  margin: 5px 0 !important;
  line-height: 1.4;
}

#__ul_comment-widget #__ul_comments .comment-layout .comment .long-comment {
  font-size: 12px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent {
  font-size: 14px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent .like {
  color: #ababab;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent svg {
  width: 13px !important;
  height: auto !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent svg .background {
  fill: #ababab;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent:hover .like {
  color: #d90000;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent:hover svg .background {
  fill: #d90000;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent {
  font-size: 14px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent .dislike {
  color: #ababab;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent svg {
  width: 13px !important;
  height: auto !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent svg .background {
  fill: #ababab;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent:hover .dislike {
  color: #000;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent:hover svg .background {
  fill: #000;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent.send .like {
  color: #d90000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent.send .dislike {
  color: #000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .like-parent.send svg .background {
  fill: #d90000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent.send .dislike {
  color: #000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .dislike-parent.send svg .background {
  fill: #000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .disable:hover .like, #__ul_comment-widget #__ul_comments .comment-layout .disable:hover .dislike {
  color: #ababab !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .disable:hover svg .background {
  fill: #ababab !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .reply {
  font-size: 14px !important;
  margin: 0 0 0 15px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .reply-box {
  border-left: 2px solid #e0e0e0 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .report {
  color: #666 !important;
  font-size: 14px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .report:hover {
  color: #000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .report-box {
  border-radius: 4px !important;
  border: 1px solid #e0e0e0 !important;
  padding: 20px 20px 15px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout input[type=email], #__ul_comment-widget #__ul_comments .comment-layout input[type=text] {
  margin: 5px 0 !important;
  border-radius: 4px !important;
  border: #e0e0e0 solid 1px;
}

#__ul_comment-widget #__ul_comments .comment-layout input.require, #__ul_comment-widget #__ul_comments .comment-layout textarea.require {
  border: 1px solid #d90000 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .report-box textarea {
  margin: 5px 0 !important;
}

#__ul_comment-widget #__ul_comments .comment-layout .report-box input[type=button] {
  display: block !important;
  margin: 10px auto 0 !important;
  padding: unset !important;
  background: #d90000 !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: bold !important;
  width: 84px !important;
  height: 34px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout input[type=email]:-moz-placeholder-shown, #__ul_comment-widget #__ul_comments .comment-layout input[type=text]:-moz-placeholder-shown, #__ul_comment-widget #__ul_comments .comment-layout textarea:-moz-placeholder-shown {
  color: #ababab !important;
  font-size: 14px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout input[type=email]:-ms-input-placeholder, #__ul_comment-widget #__ul_comments .comment-layout input[type=text]:-ms-input-placeholder, #__ul_comment-widget #__ul_comments .comment-layout textarea:-ms-input-placeholder {
  color: #ababab !important;
  font-size: 14px !important;
}

#__ul_comment-widget #__ul_comments .comment-layout input[type=email]:placeholder-shown, #__ul_comment-widget #__ul_comments .comment-layout input[type=text]:placeholder-shown, #__ul_comment-widget #__ul_comments .comment-layout textarea:placeholder-shown {
  color: #ababab !important;
  font-size: 14px !important;
}

#__ul_comment-widget #__ul_comments .next-comment {
  margin: 10px 0 10px !important;
}

#__ul_comment-widget #__ul_comments .next-comment span {
  color: #d90000 !important;
  font-size: 14px !important;
  border-bottom: unset !important;
  position: relative;
  padding: 0 16px 0 0 !important;
}

#__ul_comment-widget #__ul_comments .next-comment span::after {
  position: absolute;
  right: 0;
  top: calc(50% - 6px);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url(/wp-content/themes/nps2020_2_pc/images/icn_arrow_s.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#__ul_comment-widget #__ul_comments .pagination-comment {
  color: #666;
  display: block !important;
  height: 10px !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin: 10px auto 0px !important;
}

#__ul_comment-widget #__ul_comments .pagination-comment span {
  padding: 0 15px 4px !important;
}

#__ul_comment-widget #__ul_comments .pagination-comment .text-pagination-comment {
  color: #666;
  font-size: 16px;
  font-weight: bold;
  margin: unset !important;
  padding: unset !important;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

#__ul_comment-widget #__ul_comments .pagination-comment .prev-pagination-comment {
  position: relative;
  padding: unset !important;
  margin: unset !important;
  border-bottom: unset !important;
}

#__ul_comment-widget #__ul_comments .pagination-comment .prev-pagination-comment::after {
  position: absolute;
  top: 1px;
  right: 5px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  content: '';
  height: 12px;
  width: 12px;
  background-image: url(/wp-content/themes/nps2020_2_pc/images/icn_arrow_pagination_gray60.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#__ul_comment-widget #__ul_comments .pagination-comment .next-pagination-comment {
  position: relative;
  padding: unset !important;
  margin: unset !important;
  border-bottom: unset !important;
}

#__ul_comment-widget #__ul_comments .pagination-comment .next-pagination-comment::after {
  position: absolute;
  top: 1px;
  left: 5px;
  content: '';
  height: 12px;
  width: 12px;
  background-image: url(/wp-content/themes/nps2020_2_pc/images/icn_arrow_pagination_gray60.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#__ul_comment-widget #__ul_comments .pagination-comment .first-pagination-comment {
  display: none;
}

#__ul_comment-widget textarea {
  border-radius: 4px !important;
  border: #e0e0e0 solid 1px;
}

#__ul_comment-widget textarea::-webkit-input-placeholder, #__ul_comment-widget input::-webkit-input-placeholder {
  color: #ababab !important;
  font-size: 14px;
}

#__ul_comment-widget textarea::-moz-placeholder, #__ul_comment-widget input::-moz-placeholder {
  color: #ababab !important;
  font-size: 14px;
}

#__ul_comment-widget textarea:-ms-input-placeholder, #__ul_comment-widget input:-ms-input-placeholder {
  color: #ababab !important;
  font-size: 14px;
}

#__ul_comment-widget textarea::-ms-input-placeholder, #__ul_comment-widget input::-ms-input-placeholder {
  color: #ababab !important;
  font-size: 14px;
}

#__ul_comment-widget textarea::placeholder,
#__ul_comment-widget input::placeholder {
  color: #ababab !important;
  font-size: 14px;
}

#__ul_comment-widget .submit-area input[type=text] {
  border-radius: 4px;
  border: #e0e0e0 solid 1px;
  padding: 4px 8px 4px;
}

#__ul_comment-widget .submit-area button,
#__ul_comment-widget .submit-area input[type=submit] {
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 32px;
}

#__ul_comment-widget .submit-area .body-count {
  margin: 0 15px 0 0 !important;
}

#__ul_comment-widget #__ul_categories .active {
  color: #000;
  font-size: 16px;
  margin-right: 8px;
  margin-left: unset;
}

#__ul_comment-widget #__ul_form .agreement {
  color: #666;
  font-size: 14px;
  margin: 5px 0 !important;
  line-height: 1.4;
}

#__ul_comment-widget #__ul_form .agreement a {
  color: #d90000;
  text-decoration: underline;
}

#__ul_comment-widget #__ul_form .agreement a:hover {
  text-decoration: unset;
}

#__ul_comment-widget .select-wrap {
  margin: 20px 0 0 0 !important;
}

#__ul_comment-widget .select-wrap select {
  color: #000;
  font-size: 14px !important;
}
