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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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-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: #1da1f2;
}

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

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

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

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

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

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

.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: #1da1f2;
}

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

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

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

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

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

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

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

.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-PhotoCaption {
  margin-bottom: 10px;
  font-size: 14px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contactSec .txt2 {
  width: 700px;
}

.contactSec .txt2 > dl {
  width: 100%;
  margin: 0 0 15px 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;
}

.contactSec .txt2 > dl > dt {
  width: 15em;
}

.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 {
  height: 100px;
}

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

.contactSec .confirmAction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

/* 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;
}
