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

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

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

table {
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 20px;
}

td, th {
  padding: 5px 10px;
}

th {
  background-color: #f9f9f9;
  font-weight: 600;
  color: #000;
}

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

.st-Container-aside {
  display: flex;
  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_Inner {
  margin-bottom: 10px;
}

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

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

.st-Grid {
  display: flex;
}

.st-Grid-col-2 {
  display: flex;
  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: flex;
  justify-content: space-between;
  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%;
  box-shadow: 0 9px 9px -6px rgba(0, 0, 0, 0.08);
  position: relative;
}

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

.st-GlobalNav_MenuInner {
  display: flex;
  justify-content: space-between;
}

.st-GlobalNav_MenuItems {
  display: flex;
  flex-wrap: wrap;
}

.st-GlobalNav_MenuTools {
  position: absolute;
  right: 0px;
}

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

.st-GlobalNav_MenuItem > .st-GlobalNav_MenuItemInner {
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 2px;
  padding-right: 2px;
}

.st-GlobalNav_MenuItem > .st-GlobalNav_MenuItemInner a {
  padding: 7px 9px 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: #f09705;
}

.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/mp2022_pc/image/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/mp2022_pc/image/icn_arrow_s_white.svg");
  transform: rotate(90deg);
}

.st-GlobalNav_MenuItem:hover .sub-menu {
  display: flex;
  animation-name: globalNavSubmenuSlideDown;
  animation-fill-mode: forwards;
  animation-duration: 0.1s;
  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;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.08);
  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: #f09705;
  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/mp2022_pc/image/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-GlobalNav_ShogakukanId-Nonlogin {
  height: 50px;
  width: 97px;
  display: flex;
  align-items: center;
  padding-left: 8px;
  padding-right: 8px;
  position: absolute;
  right: 40px;
}

.st-GlobalNav_ShogakukanId-Nonlogin:hover > .st-GlobalNav_ShogakukanId-NonloginText {
  color: #16376d;
  background-color: #f3f3f3;
}

.st-GlobalNav_ShogakukanId-NonloginText {
  padding: 7px 12px 5px;
  border-radius: 14px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background-color: #16376d;
}

.st-GlobalNav_Search {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 50px;
}

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

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

.st-GlobalNav_SearchInner {
  position: relative;
}

.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/mp2022_pc/image/icn_search.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-GlobalNav_SearchForm {
  border-radius: 4px;
  display: none;
  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::-moz-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/mp2022_pc/image/icn_search.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-Breadcrumbs {
  display: flex;
  margin-bottom: 30px;
}

.st-Breadcrumbs_Item {
  color: #666;
  font-size: 12px;
  line-height: 1.2;
  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/mp2022_pc/image/icn_arrow_s_gray.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(-90deg);
}

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

.st-Breadcrumbs_Item:last-of-type {
  flex-grow: 1;
}

.st-Breadcrumbs_Item-flexible {
  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: flex;
  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: #f09705;
}

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

.st-AreaTitle-line-2 .st-AreaTitle_Text {
  min-height: 56px;
  line-height: 1.4;
}

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

.st-AreaTitle_Img {
  margin-left: 15px;
  display: flex;
  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: #f09705;
}

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

.st-ArticleTitle_Subheader {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

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

.st-ArticleTitle_Metadata {
  display: flex;
  justify-content: space-between;
  word-break: break-word;
}

.st-ArticleTitle_MetaItem {
  display: flex;
  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_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-ArticleTitle_Series {
  margin-bottom: 15px;
}

.st-ArticleTitle_SeriesTitle {
  margin-bottom: 15px;
  padding-left: 14px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

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

.st-ArticleTitle_SeriesNumList {
  display: flex;
  justify-content: space-evenly;
}

.st-ArticleTitle_SeriesNumItem {
  color: #ababab;
  width: 100%;
  text-align: center;
  margin: 0 2px;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}

.st-ArticleTitle_SeriesNumItem::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
}

.st-ArticleTitle_SeriesNumItem:first-child {
  margin-left: unset;
}

.st-ArticleTitle_SeriesNumItem:last-child {
  margin-right: unset;
}

.st-ArticleTitle_SeriesNumItem-active, .st-ArticleTitle_SeriesNumItem:hover {
  border-radius: 0 0 4px 4px;
  background-color: #f3f3f3;
  color: #000;
}

.st-ArticleTitle_SeriesNumItem-active::before, .st-ArticleTitle_SeriesNumItem:hover::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #000;
}

.st-ArticleTitle_SeriesNumItem-active {
  pointer-events: none;
}

.st-ArticleTitle_SeriesNumLink {
  display: flex;
  padding: 13px 0;
  justify-content: center;
}

.st-ArticleTitle_SeriesNum {
  font-size: 16px;
  font-weight: bold;
}

.st-ArticleTitle_SeriesNumSign {
  font-size: 13px;
}

.st-ArticleTitle_SeriesNumWave {
  font-size: 13px;
  padding-left: 1px;
}

.st-PageTitle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.st-PageTitle_Text {
  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: #f09705;
}

.st-PageTitle_Text-page {
  flex-grow: 1;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
}

.st-PageTitle_Meta {
  flex-shrink: 0;
  margin-left: 15px;
  display: flex;
  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-Pagination {
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}

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

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

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

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

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

.st-Pagination_Link-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.st-Pagination_Link-arrow::after {
  content: '';
  height: 12px;
  width: 12px;
  background-image: url("/wp-content/themes/mp2022_pc/image/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/mp2022_pc/image/icn_arrow_pagination.svg");
}

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

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

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

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

.st-RelatedTags {
  display: flex;
  margin-bottom: 15px;
}

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

.st-RelatedTags_LabelText {
  display: flex;
  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/mp2022_pc/image/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: flex;
  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: #f09705;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

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

.st-PageTop_Arrow {
  display: flex;
  justify-content: center;
}

.st-PageTop_Arrow::after {
  content: '';
  height: 24px;
  width: 24px;
  background-image: url("/wp-content/themes/mp2022_pc/image/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: flex;
  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: flex;
  justify-content: center;
}

.st-Footer_SnsInner {
  width: 165px;
  display: flex;
  justify-content: space-between;
}

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

.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: flex;
  justify-content: center;
}

.st-Footer_MenuInner {
  width: 728px;
  margin-left: -24px;
  display: flex;
  justify-content: space-between;
  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/mp2022_pc/image/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.st-HeaderLinks_ShogakukanId {
  display: flex;
  height: 50px;
  width: 190px;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  position: absolute;
  right: 43px;
}

.st-HeaderLinks_ShogakukanId-Nonlogin {
  background-color: #f09705;
}

.st-HeaderLinks_ShogakukanId-Nonlogin:hover {
  background-color: #000;
}

.st-HeaderLinks_ShogakukanId-NonloginText {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.st-HeaderLinks_ShogakukanId-LoggedinImgWrap {
  position: relative;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #e0e0e0;
}

.st-HeaderLinks_ShogakukanId-LoggedinImg {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_human.svg");
  border-radius: 50%;
  background-color: #f09705;
  background-repeat: no-repeat;
  background-position: -8px -2px;
  background-size: 36px 25px;
}

.st-HeaderLinks_ShogakukanId-LoggedinName {
  padding-left: 4px;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  word-break: break-all;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.st-HeaderLinks_ShogakukanId-LoggedinNameTitle {
  font-size: 11px;
  font-weight: normal;
  color: #000;
}

.wp-editor .st-ShogakukanIdDialog a {
  text-decoration: none;
  color: #000;
}

.wp-editor .st-ShogakukanIdDialog a:hover {
  text-decoration: underline;
  color: #f09705;
}

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

.st-ShogakukanIdDialog {
  outline: none;
  margin-top: 40px;
  margin-bottom: 30px;
}

.st-ShogakukanIdDialog-paywall {
  position: static;
  top: 15px;
  right: 0;
  left: 0;
}

.st-ShogakukanIdDialog-popup {
  border: unset;
  padding: unset;
  overflow: visible;
  outline: none;
  margin: auto;
}

.st-ShogakukanIdDialog-subsc .st-ShogakukanIdDialog_Inner {
  width: 400px;
  padding: 40px;
  gap: 24px;
}

.st-ShogakukanIdDialog-subsc .sw-LinkButton:last-of-type {
  margin-bottom: unset;
}

.st-ShogakukanIdDialog_Inner {
  outline: none;
  display: flex;
  width: 351px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px #ababab;
  flex-direction: column;
  align-items: center;
  padding: 30px;
}

.st-ShogakukanIdDialog_Inner a.sw-LinkList_Link {
  text-decoration: none;
  color: #000;
}

.st-ShogakukanIdDialog_Inner a.sw-LinkList_Link:hover {
  text-decoration: underline;
  color: #f09705;
}

.st-ShogakukanIdDialog_Text {
  font-size: 1.7rem;
  line-height: 1.6;
  margin-bottom: 1.4em;
  font-weight: bold;
  text-align: center;
}

#st-paywall .st-ShogakukanIdDialog_Text {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

#st-paywall .st-ShogakukanIdDialog_InnerText {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

#st-paywall .st-ShogakukanIdDialog_InnerText:nth-of-type(1) {
  font-size: 14px;
}

#st-paywall .st-ShogakukanIdDialog_InnerText:nth-of-type(2) {
  line-height: 19.2px;
}

#st-paywall .st-ShogakukanIdDialog_InnerText-small {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.56px;
}

.st-ShogakukanIdDialog_Notes {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}

.st-ShogakukanIdDialog_Button {
  position: relative;
  height: 36px;
  width: 200px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 36px;
}

.st-ShogakukanIdDialog_Button::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 12px;
  height: 20px;
  width: 20px;
}

.st-ShogakukanIdDialog_Button_Fill {
  color: #fff;
  background-color: #f09705;
}

.st-ShogakukanIdDialog_Button_Fill::after {
  background-image: url("/wp-content/themes/gravidia_pc/assets/images/icn_link_blank_white.svg");
}

.st-ShogakukanIdDialog_Button_Fill:hover {
  background-color: #ababab;
}

.st-ShogakukanIdDialog_Button_Outline {
  color: #f09705;
  background-color: #fff;
  border: 2px solid #f09705;
  line-height: 32px;
}

.st-ShogakukanIdDialog_Button_Outline::after {
  background-image: url("/wp-content/themes/gravidia_pc/assets/images/icn_link_blank_corp.svg");
}

.st-ShogakukanIdDialog_Button_Outline:hover {
  background-color: #ababab;
}

.st-ShogakukanIdDialog_About {
  font-size: 12px;
  color: #000;
  margin-bottom: 30px;
}

.st-ShogakukanIdDialog_About::before {
  content: '!';
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  border-radius: 10px;
  text-align: center;
  margin-right: 5px;
}

.st-ShogakukanIdDialog_PopupAbout {
  display: none;
  position: absolute;
  top: 350px;
  height: 155px;
  width: 220px;
  line-height: 18px;
  font-size: 14px;
  border: 1px solid #ababab;
  background-color: #fff;
  color: #000;
  font-weight: normal;
  padding-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
}

.st-ShogakukanIdDialog_PopupAbout_Em {
  font-weight: bold;
}

.st-ShogakukanIdDialog_PopupAbout::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50px;
  border: 9px solid transparent;
  border-bottom: 8px solid #ababab;
  z-index: 1;
}

.st-ShogakukanIdDialog_PopupAbout::after {
  content: '';
  position: absolute;
  top: -17px;
  left: 50px;
  border: 9px solid transparent;
  border-bottom: 8px solid #fff;
  z-index: 2;
}

.st-ShogakukanIdDialog_PopupAbout-opened {
  display: block;
}

.st-ShogakukanIdDialog_CloseBtn {
  font-size: 14px;
  color: #000;
  cursor: pointer;
  text-align: center;
}

.st-ShogakukanIdDialog-opened {
  display: flex;
}

.st-ShogakukanIdDialog_SubScribe {
  width: 100%;
  padding: 30px;
  background-color: #f5f2eb;
  position: relative;
  display: flex;
  flex-direction: column;
}

.st-ShogakukanIdDialog_SubScribe .st-ShogakukanIdDialog_InnerText {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.st-ShogakukanIdDialog_SubScribe .st-ShogakukanIdDialog_InnerText-small {
  font-size: 14px;
  letter-spacing: 0.56px;
}

#st-paywall .st-ShogakukanIdDialog_SubScribe .st-ShogakukanIdDialog_Text span {
  color: #ca8b25;
  font-size: 14px;
  line-height: 21px;
}

#st-paywall .st-ShogakukanIdDialog_subscPrice {
  text-align: center;
  color: #ca8b25;
  font-size: 16px;
  font-weight: 600;
  margin-top: -4px;
  margin-bottom: 8px;
  line-height: 19.2px;
  letter-spacing: 0.04em;
}

#st-paywall .st-ShogakukanIdDialog_subscPrice span {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 28.8px;
  letter-spacing: 0.04em;
}

.st-ShogakukanIdDialog_SingleBilling {
  width: 100%;
  margin-bottom: 24px;
  padding: 24px 30px;
  background-color: #f3f3f3;
}

#st-paywall .st-ShogakukanIdDialog_Register {
  width: 100%;
}

#st-paywall .st-ShogakukanIdDialog_Register .st-ShogakukanIdDialog_Text {
  margin-bottom: 8px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

#st-paywall .st-ShogakukanIdDialog_Register .sw-LinkButton {
  padding: 0 30px;
  margin-bottom: unset;
}

#st-paywall .st-ShogakukanIdDialog_SiglePrice {
  text-align: center;
  font-weight: bold;
  margin-bottom: 8px;
}

#st-paywall .st-ShogakukanIdDialog_SiglePrice span {
  font-size: 24px;
  line-height: 36px;
}

.st-ShogakukanIdLoggedinPopup {
  border: unset;
  top: 0;
  right: 40px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px #ababab;
  flex-direction: column;
  align-items: stretch;
  padding: 30px;
}

.st-ShogakukanIdLoggedinPopup_Head {
  display: flex;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  align-items: center;
}

.st-ShogakukanIdLoggedinPopup_Head_ImgWrap {
  position: relative;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background-color: #f09705;
}

.st-ShogakukanIdLoggedinPopup_Head_Img {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 26px;
  height: 26px;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_human.svg");
  border-radius: 50%;
  background-color: #f09705;
  background-repeat: no-repeat;
  background-position: -2.5px -6px;
  background-size: 32px 32px;
}

.st-ShogakukanIdLoggedinPopup_Head_NameWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 10px;
}

.st-ShogakukanIdLoggedinPopup_Head_NameHead {
  color: #000;
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 3px;
}

.st-ShogakukanIdLoggedinPopup_Head_NameBody {
  display: flex;
  align-items: flex-end;
}

.st-ShogakukanIdLoggedinPopup_Head_Name {
  color: #000;
  font-size: 17px;
  font-weight: bold;
}

.st-ShogakukanIdLoggedinPopup_Head_NameTitle {
  color: #000;
  font-size: 13px;
  font-weight: normal;
}

.st-ShogakukanIdLoggedinPopup_Body {
  display: flex;
  flex-direction: column;
}

.st-ShogakukanIdLoggedinPopup_Body_Link {
  color: #000;
  font-size: 17px;
  font-weight: bold;
  outline: none;
  margin-bottom: 20px;
}

.st-ShogakukanIdLoggedinPopup_Body_Link:last-of-type {
  margin-bottom: 25px;
}

.st-ShogakukanIdLoggedinPopup_CloseBtn {
  font-size: 14px;
  color: #000;
  cursor: pointer;
  text-align: center;
}

.st-ShogakukanIdLoggedinPopup-opened {
  display: flex;
}

.st-ShogakukanIdLoginModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
}

.st-ShogakukanIdLoginModal_Dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 300px;
  background-color: #fff;
  box-shadow: 0 24px 24px 0 rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  z-index: 150;
  padding: 25px;
}

.st-ShogakukanIdLoginModal_Dialog_Checkmark {
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_checkmark_orange.svg");
  background-repeat: no-repeat;
  background-size: 23px 23px;
  background-position: 2px 3px;
  height: 32px;
  width: 32px;
  border: 2px solid #f09705;
  border-radius: 50%;
  margin-bottom: 15px;
}

.st-ShogakukanIdLoginModal_Dialog_Message {
  font-size: 17px;
  color: #f09705;
  margin-bottom: 15px;
}

.st-ShogakukanIdLoginModal_Dialog_NonAttrMessage {
  text-align: center;
  font-weight: bold;
  font-size: 17px;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.st-ShogakukanIdLoginModal_Dialog_NameWrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 25px;
}

.st-ShogakukanIdLoginModal_Dialog_NameHead {
  font-size: 24px;
  color: #f09705;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.st-ShogakukanIdLoginModal_Dialog_NameBody {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.st-ShogakukanIdLoginModal_Dialog_Name {
  color: #f09705;
  font-size: 18px;
  font-weight: bold;
}

.st-ShogakukanIdLoginModal_Dialog_NameTitle {
  color: #f09705;
  font-size: 14px;
}

.st-ShogakukanIdLoginModal_Dialog_CloseBtn {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.st-ShogakukanIdLoginModal_Dialog_LinkList {
  margin-bottom: 25px;
}

.st-ShogakukanIdLoginModal_Mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
}

.st-ShogakukanIdLoginModal-opened {
  display: block;
}

.st-ShogakukanId_Login_Text {
  margin-bottom: 10px;
  font-size: 1.7rem;
  line-height: 1.6;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.st-ShogakukanIdPaywall_Excerpt {
  position: relative;
  height: 310px;
  overflow: hidden;
  margin-bottom: 40px;
}

.st-ShogakukanIdPaywall_Excerpt::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0 0%, #fff 310px 0%);
}

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

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

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

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

.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: flex;
  justify-content: 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: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  box-shadow: 0 0 0 2px #fff;
}

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

.sw-ThumbList_Info {
  width: 100%;
  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;
}

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

.sw-ThumbList_Title-fixedLines-3 {
  height: 57px;
}

.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: #f09705;
  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: flex;
  font-size: 12px;
  color: #666;
  word-break: break-word;
}

.sw-ThumbList_Meta-right {
  justify-content: flex-end;
}

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

.sw-ThumbList_MetaItem {
  display: flex;
  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: 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 {
  flex-shrink: 0;
}

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

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

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

.sw-ThumbList-col-2 .sw-ThumbList_Item {
  margin-bottom: 10px;
  width: 320px;
  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 {
  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: flex;
  flex-direction: column;
  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: flex;
  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: flex;
  flex-wrap: wrap;
}

.sw-ThumbList-col-4 .sw-ThumbList_Item {
  margin-bottom: 15px;
  width: 156px;
  display: flex;
  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: flex;
  flex-direction: column;
  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-text {
  display: flex;
  justify-content: flex-end;
  height: 16px;
}

.sw-ThumbList_BottomInfo-image {
  display: flex;
  justify-content: flex-end;
  height: 16px;
}

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

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

.sw-ProfileList_Item {
  display: flex;
}

.sw-ProfileList_Item:nth-last-of-type(1) .sw-ProfileList_Info {
  border-bottom: none;
}

.sw-ProfileList_Img {
  min-width: 130px;
  flex-shrink: 0;
}

.sw-ProfileList_ImgInner {
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
}

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

.sw-ProfileList_Info {
  flex-grow: 1;
  margin-left: 10px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 2px;
}

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

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

.sw-ProfileList :visited .sw-ProfileList_Title {
  color: #666;
}

.sw-ProfileList :hover .sw-ProfileList_Title {
  color: #f09705;
  text-decoration: underline;
}

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

.sw-ProfileList-col-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-top: -12px;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: 3px;
}

.sw-ProfileList-col-2 .sw-ProfileList_Item {
  padding: 12px;
  width: 50%;
}

.sw-ProfileList-col-2 .sw-ProfileList_Item:nth-last-of-type(1) .sw-ProfileList_Info, .sw-ProfileList-col-2 .sw-ProfileList_Item:nth-last-of-type(2) .sw-ProfileList_Info {
  border-bottom: none;
}

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

.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/mp2022_pc/image/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-divided .sw-LinkList_Item:not(:first-child) {
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.sw-LinkList-divided .sw-LinkList_Item:not(:first-child)::before {
  top: calc(15px + 0.7em - 6px);
}

.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: #f09705;
  text-decoration: underline;
}

.sw-LinkList_Link-fixedLines-2 {
  overflow-y: hidden;
}

.sw-LinkList-col-2 {
  display: flex;
  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: flex;
  justify-content: flex-end;
}

.sw-MoreLink_Link {
  padding-right: 16px;
  position: relative;
  color: #f09705;
  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/mp2022_pc/image/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sw-Bordered {
  border: 1px solid #f09705;
  padding: 30px 20px 30px;
}

.sw-Bordered-aside {
  padding: 15px;
}

.sw-Bordered-centered {
  display: flex;
  justify-content: center;
}

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

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

.sw-DeEmphasize-centered {
  display: flex;
  justify-content: center;
}

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

.sw-BasicButton {
  display: flex;
  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 {
  flex-grow: 0;
  min-width: 170px;
  height: 48px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #f09705;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.sw-BasicButton_Label {
  height: 100%;
  flex-grow: 1;
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: 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 {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}

.sw-BasicButton-flexible .sw-BasicButton_Button {
  min-width: 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: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.sw-LinkButton_Button {
  flex-grow: 0;
  min-width: 320px;
  min-height: 48px;
  padding: 10px 15px;
  border-radius: 4px;
  background-color: #f09705;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

#st-paywall .sw-LinkButton_Button {
  padding-right: 24px;
  padding-left: 24px;
}

.sw-LinkButton_Label {
  height: 100%;
  flex-grow: 1;
  padding-left: 32px;
  padding-right: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-wrap: break-word;
  overflow: hidden;
}

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

.sw-LinkButton_LabelText {
  color: #332001;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

.sw-LinkButton_LabelText-big {
  font-size: 22px;
  letter-spacing: 1.1px;
}

.sw-LinkButton_LabelText-small {
  font-size: 18px;
  letter-spacing: 0.9px;
}

.sw-LinkButton-size-2l .sw-LinkButton_Button {
  min-height: 58px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.sw-LinkButton-size-2l .sw-LinkButton_Label {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
  text-align: center;
  padding-left: unset;
  padding-right: unset;
}

.sw-LinkButton-size-l .sw-LinkButton_Button {
  min-height: 58px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.sw-LinkButton-size-m .sw-LinkButton_Button {
  min-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.sw-LinkButton-size-m-letter-spacing .sw-LinkButton_Button {
  min-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.sw-LinkButton-size-m-letter-spacing .sw-LinkButton_Label {
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
  text-align: center;
}

.sw-LinkButton-size-s .sw-LinkButton_Button {
  min-height: 34px;
  padding-top: 5px;
  padding-bottom: 5px;
}

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

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

.sw-LinkButton-stretched .sw-LinkButton_Button {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}

.sw-LinkButton-flexible .sw-LinkButton_Button {
  min-width: 0;
  flex-grow: 0;
}

.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/mp2022_pc/image/icn_arrow_s_dark_gray.svg");
}

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

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

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

.sw-LinkButton-subscmore {
  margin-bottom: unset;
}

.sw-LinkButton-subscmore .sw-LinkButton_Button {
  background-color: #000;
  border: 2px solid #000;
  padding: 10px 24px;
}

.sw-LinkButton-subscmore .sw-LinkButton_Label {
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.56px;
  padding: unset;
  padding-right: 8px;
}

.sw-LinkButton-subscmore .sw-LinkButton_Label::after {
  right: -3px;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_arrow_s_white.svg");
}

.sw-LinkButton-subscguide {
  width: 240px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.sw-LinkButton-subscguide .sw-LinkButton_Button {
  border-radius: 99px;
  padding-left: 24px;
  padding-right: 24px;
  background: #f5f2eb;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.24);
  border: 2px solid #f5f2eb;
}

.sw-LinkButton-subscguide .sw-LinkButton_Label {
  font-size: 16px;
  padding: 0;
}

.sw-LinkButton-subscguide .sw-LinkButton_Label::after {
  display: block;
  width: 5px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #332001;
  position: absolute;
  right: 0;
  top: calc(50% - 4px);
  background-image: none;
}

.sw-LinkButton-subsc {
  margin-bottom: 30px;
}

.sw-LinkButton-subsc .sw-LinkButton_Button {
  width: 100%;
  background-color: #000;
  padding: 16px 24px;
}

.sw-LinkButton-subsc .sw-LinkButton_Button::after {
  content: '';
  display: block;
  width: 5px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 24px;
  top: calc(50% - 5px);
}

.sw-LinkButton-subsc .sw-LinkButton_Label {
  padding: 0;
}

.sw-LinkButton-subsc .sw-LinkButton_Label::after {
  content: none;
}

.sw-LinkButton-login .sw-LinkButton_Button {
  width: 100%;
  margin-bottom: 0;
  padding: 16px 24px;
}

.sw-LinkButton-login .sw-LinkButton_Button::after {
  content: '';
  display: block;
  width: 5px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-image: none;
  background-color: #fff;
  position: absolute;
  right: 24px;
  top: calc(50% - 5px);
}

.sw-LinkButton-login .sw-LinkButton_Label {
  padding: 0;
}

.sw-LinkButton-login .sw-LinkButton_Label::after {
  content: none;
}

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

.sw-LinkButton-register .sw-LinkButton_Button::after {
  content: '';
  display: block;
  width: 5px;
  height: 8px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #f09705;
  position: absolute;
  right: 24px;
  top: calc(50% - 4px);
}

.sw-LinkButton-register .sw-LinkButton_Button .sw-LinkButton_Label {
  color: #f09705;
}

.sw-LinkButton-register .sw-LinkButton_Button .sw-LinkButton_Label::after {
  content: none;
}

.sw-OptionButton {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

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

.sw-OptionButton_Button {
  flex-grow: 0;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #f3f3f3;
  display: flex;
  justify-content: 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: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  background-color: #f09705;
}

.sw-IconButton {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.sw-IconButton_Button {
  flex-grow: 0;
  min-width: 170px;
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 4px;
  background-color: #f09705;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

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

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

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

.sw-IconButton-stretched .sw-IconButton_Button {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
}

.sw-IconButton-flexible .sw-IconButton_Button {
  min-width: 0;
  flex-grow: 0;
}

.sw-IconButton-centered .sw-IconButton_Button {
  justify-content: center;
}

.sw-IconButton-centered .sw-IconButton_Label {
  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/mp2022_pc/image/icn_push.svg");
}

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

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

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

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

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

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

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

.sw-IconButton-favorited .sw-IconButton_Button {
  background-color: #f09705;
}

.sw-IconButton-favorited .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_clip_white.svg");
}

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

.sw-IconButton-notfavorited .sw-IconButton_Icon {
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_clip_gray.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/mp2022_pc/image/icn_photo.svg");
}

.sw-IconButton-vertical {
  min-width: 90px;
  max-width: 100%;
}

.sw-IconButton-vertical .sw-IconButton_Button {
  width: 100%;
  min-width: 0;
  height: auto;
  padding: 8px 5px;
  flex-direction: column;
  justify-content: center;
}

.sw-IconButton-vertical .sw-IconButton_Icon {
  margin-bottom: 5px;
}

.sw-IconButton-vertical .sw-IconButton_Label {
  height: auto;
  margin-left: 0;
  font-size: 12px;
}

.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: flex;
  flex-wrap: wrap;
  margin: -2px;
  overflow: hidden;
}

.sw-ButtonGroup_Item {
  padding: 2px;
  flex-grow: 0;
  flex-shrink: 0;
}

.sw-ButtonGroup_Item-full {
  flex-basis: 100%;
}

.sw-ButtonGroup-stretched .sw-ButtonGroup_Item {
  flex-grow: 1;
}

.sw-ButtonGroup-stretchedEqualWidth .sw-ButtonGroup_Item {
  flex: 1;
}

.sw-ButtonGroup-stretchedEqualWidth .sw-ButtonGroup_Item-full {
  flex-basis: 100%;
}

.sw-ButtonGroup-col-1 .sw-ButtonGroup_Inner {
  display: block;
}

.sw-ButtonGroup-col-2 .sw-ButtonGroup_Item {
  width: 50%;
}

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

.sw-ButtonGroup-centered .sw-ButtonGroup_Inner {
  justify-content: center;
}

.sw-ButtonGroup-right .sw-ButtonGroup_Inner {
  justify-content: flex-end;
}

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

.sw-Search_Form {
  display: flex;
  border-radius: 4px;
  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::-moz-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/mp2022_pc/image/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: flex;
  justify-content: flex-start;
}

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

.sw-Banner-right {
  display: flex;
  justify-content: flex-end;
}

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

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

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

.sw-PickupList_PickupInner {
  margin-bottom: 10px;
  display: flex;
}

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

.sw-PickupList_PickupImgInner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: 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;
}

.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/mp2022_pc/image/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: #f09705;
  text-decoration: underline;
}

.sw-PickupList_Link-fixedLines-2 {
  height: 38px;
  overflow-y: hidden;
}

.sw-BannerList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sw-BannerList_Item {
  width: calc( (100% - 32px) / 3);
  flex-shrink: 0;
}

.sw-BannerList_Link {
  display: block;
  position: relative;
}

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

.sw-BannerList_Title {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 16px 8px;
  word-break: break-word;
}

.sw-BannerList_TitleText {
  min-height: 48px;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
}

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

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

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

#share-sns {
  position: absolute;
  z-index: 100;
  animation-name: open-share-modal;
  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/mp2022_pc/image/icn_tw.svg");
  background-color: #000;
}

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

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

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

.sw-Profile_Inner {
  display: flex;
  margin-bottom: 20px;
}

.sw-Profile_Img {
  width: 40%;
  min-width: 220px;
  flex-shrink: 0;
  flex-grow: 0;
}

.sw-Profile_ImgInner {
  display: flex;
  justify-content: 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;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  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: 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;
}

.sw-Accordion {
  text-align: justify;
  border: 4px solid #f3f3f3;
}

.sw-Accordion_Item {
  margin-bottom: 2px;
}

.sw-Accordion_Title {
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding-top: 20px;
  padding-right: 50px;
  padding-bottom: 20px;
  padding-left: 15px;
}

.sw-Accordion_Label {
  height: 100%;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  align-items: center;
  word-break: break-word;
}

.sw-Accordion_Arrow {
  position: absolute;
  right: 12px;
  width: 24px;
  height: 24px;
  background-color: #f09705;
  border-radius: 50%;
}

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

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

.sw-Accordion_Inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
  padding-right: 15px;
  padding-left: 15px;
}

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

.sw-Accordion_Item-opened .sw-Accordion_Arrow {
  border: solid #f09705 1px;
  background-color: #fff;
}

.sw-Accordion_Item-opened .sw-Accordion_Arrow::before {
  background-color: #f09705;
}

.sw-Accordion_Item-opened .sw-Accordion_Arrow::after {
  background-color: #f09705;
  transform: rotate(0);
}

.sw-Topics {
  display: flex;
}

.sw-Topics_ThumbItem {
  display: block;
  width: 200px;
}

.sw-Topics_ThumbImage {
  width: 200px;
  margin-bottom: 10px;
}

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

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

.sw-Topics_ThumbTitleText {
  line-height: 1.4;
  word-break: break-word;
}

.sw-Topics_LinkList {
  margin-left: 20px;
  margin-bottom: 15px;
}

.sw-Topics_LinkList_Item {
  margin-bottom: 7px;
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}

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

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

.sw-Topics_LinkList-divided .sw-Topics_LinkList_Item:not(:first-child) {
  margin-bottom: 7px;
  padding-top: 7px;
  border-top: 1px solid #e0e0e0;
}

.sw-Topics_LinkList-divided .sw-Topics_LinkList_Item:not(:first-child)::before {
  top: calc(7px + 0.7em - 6px);
}

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

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

.sw-Topics_LinkList_Link:hover {
  color: #f09705;
  text-decoration: underline;
}

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

.sw-TopView {
  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: flex;
  justify-content: center;
  align-items: center;
}

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

.sw-TopView_Meta {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 25px;
  padding-right: 30px;
  padding-bottom: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sw-TopView_Label {
  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: #f09705;
}

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

.sw-TopView_TitleText {
  height: 99px;
  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: flex;
  height: 125px;
  margin-bottom: 15px;
  position: relative;
}

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

.sw-TopView_ThumbImg {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 188px;
  height: 125px;
  overflow: hidden;
}

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

.sw-TopView_ThumbTitle {
  display: flex;
  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;
  word-break: break-all;
}

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

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

.sw-CardList_Img-ratio-2-1 {
  padding-top: 50%;
}

.sw-CardList_Img-ratio-3-2 {
  width: 320px;
  height: auto;
  padding-top: 66.67%;
}

.sw-CardList_ImgInner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

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

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

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

.sw-CardList-col-2 {
  display: flex;
  flex-wrap: wrap;
}

.sw-CardList-col-2 .sw-CardList_Item {
  margin-bottom: 20px;
  width: 320px;
}

.sw-CardList-col-2 .sw-CardList_Item:nth-child(2n) {
  margin-left: 20px;
}

.sw-CardList-col-2 .sw-CardList_Item:nth-last-child(1), .sw-CardList-col-2 .sw-CardList_Item:nth-last-child(2) {
  margin-bottom: 0;
}

.sw-CardList-col-2 .sw-CardList_Title {
  margin-bottom: 8px;
}

.sw-BillingIcon {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  margin-left: 2px;
  border-radius: 99px;
  border: 1px solid #dfd6c3;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_lock_for_paid_articles_dark.svg");
  background-position: center;
  background-size: .6em;
  background-repeat: no-repeat;
  background-color: #f5f2eb;
  vertical-align: sub;
}

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

.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: flex;
  justify-content: center;
}

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

.ad-BlockAd-col-2 {
  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;
}

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

.wp-editor h3 {
  margin-bottom: 15px;
  padding-left: 14px;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  word-break: break-word;
}

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

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

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

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

.wp-editor td {
  vertical-align: middle;
  word-break: break-word;
}

.wp-editor strong {
  font-weight: bold;
}

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

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

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

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

.c-Figure_ImgInner {
  display: block;
}

.c-Figure_Caption {
  display: flex;
  margin-bottom: 20px;
}

.c-Figure .aligncenter .c-Figure_Img, .c-Figure .aligncenter .c-Figure_Caption {
  justify-content: center;
}

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

.c-Figure .c-Figure_CaptionText {
  width: 100%;
  color: #666;
  line-height: 1.4;
  font-size: 14px;
  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;
}

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

.wp-editor .c-NextPageButton {
  display: block;
  font-size: 15px;
  margin-bottom: 15px;
  border: 1px solid #f09705;
  text-decoration: none;
  position: relative;
  padding: 10px 16px 10px 24px;
}

.wp-editor .c-NextPageButton_Text {
  line-height: 1.4;
  margin-bottom: 0;
  color: #000;
  word-break: break-word;
}

.wp-editor .c-NextPageButton_Text::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 14px;
  left: 6px;
}

.wp-editor .c-NextPageButton:hover .c-NextPageButton_Text {
  color: #f09705;
  text-decoration: underline;
}

.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: #f09705;
  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("../image/icn_arrow_s.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(-90deg);
}

.c-TableOfContents_List, .wp-editor .c-TableOfContents_List {
  max-height: none;
  overflow: hidden;
  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;
  word-break: break-word;
}

.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("../image/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: #f09705;
  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 {
  transform: rotate(90deg);
}

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

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

.wp-editor .c-AmazonProduct {
  max-width: 580px;
  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: flex;
  align-items: center;
  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: flex;
  flex-direction: column;
  flex-grow: 1;
  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 {
  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_Button {
  display: flex;
  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;
}

.subsc-Block {
  margin-bottom: 40px;
}

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

.subsc-Block_Inner {
  margin-bottom: 21px;
}

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

.subsc-Block_Inner-last {
  margin-bottom: 0;
}

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

.subsc-WidgetArea {
  background: #f5f2eb;
  position: relative;
}

.subsc-WidgetArea::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #ca8b25;
}

.subsc-WidgetArea_Container {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.subsc-WidgetArea > *:last-child {
  margin-bottom: 0;
}

.subsc-WidgetArea_Title {
  padding-top: 24px;
}

.subsc-WidgetArea_TitleText {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
  letter-spacing: 0.8px;
  display: flex;
}

.subsc-WidgetArea_TitleText-black {
  position: relative;
  display: inline-block;
  color: #321f00;
  flex: 0 1 auto;
  padding-left: 24px;
}

.subsc-WidgetArea_TitleText-yellow {
  background: linear-gradient(-203deg, #f09705 0%, #321f00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subsc-WidgetArea_TitleText-black::before {
  content: "";
  position: absolute;
  top: -27px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #321f00;
}

.subsc-GuideArea {
  position: relative;
  display: flex;
  padding: 16px 0;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
}

.subsc-GuideArea::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(94deg, #f09705 0%, #321f00 100%);
  z-index: 0;
}

.subsc-GuideArea_TextWrapper {
  position: relative;
}

.subsc-GuideArea_Text {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0.28px;
}

.subsc-GuideArea_Text-medium {
  font-size: 18px;
  letter-spacing: 0.72px;
  position: relative;
  z-index: 2;
}

.subsc-GuideArea_Text-medium::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1px;
  left: -11px;
  right: -11px;
  height: 8px;
  flex-shrink: 0;
  background: #ca8b25;
  z-index: -1;
}

.subsc-ThumbList {
  display: flex;
  width: 100%;
  gap: 45px;
  flex-direction: column;
}

.subsc-ThumbList-widget {
  gap: 16px;
  width: 100%;
  height: 100%;
  flex-direction: row;
}

.subsc-ThumbList_Container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.subsc-ThumbList_Item {
  padding-bottom: 15px;
  gap: 15px;
  display: flex;
  border-bottom: 1px solid #f3f3f3;
}

.subsc-ThumbList_Item-hidden {
  display: none;
}

.subsc-ThumbList_Item-big {
  display: block;
  width: 220px;
  padding-bottom: unset;
}

.subsc-ThumbList_Item-widget {
  padding-bottom: 16px;
  border-bottom: 1px solid #dfd6c3;
}

.subsc-ThumbList_Item-widget .subsc-ThumbList_Title {
  overflow: hidden;
  color: #321f00;
  text-overflow: ellipsis;
  white-space: normal;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
  text-wrap: pretty;
}

.subsc-ThumbList_Item-widget .subsc-ThumbList_Title::after {
  content: '';
}

.subsc-ThumbList_Item:last-child {
  margin-bottom: 0;
}

.subsc-ThumbList_Item:last-child .subsc-ThumbList_Info {
  border-bottom: none;
  padding-bottom: 0;
}

.subsc-ThumbList_Img {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 94px;
  height: 64px;
}

.subsc-ThumbList_Img-big {
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  padding-top: 66.6%;
  width: unset;
  height: unset;
}

.subsc-ThumbList_ImgInner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

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

.subsc-ThumbList_Label {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  box-shadow: 0 0 0 2px #fff;
}

.subsc-ThumbList_Label-active {
  background-color: #f09705;
}

.subsc-ThumbList_Info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex: 1;
}

.subsc-ThumbList_ClipButton {
  display: flex;
  width: 32px;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.subsc-ThumbList_ClipButton-favorited .subsc-ThumbList_ClipIcon {
  width: 32px;
  height: 32px;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_clip_button_clipped.svg");
}

.subsc-ThumbList_ClipButton-notfavorited .subsc-ThumbList_ClipIcon {
  width: 32px;
  height: 32px;
  background-image: url("/wp-content/themes/mp2022_pc/image/icn_clip_button_not_clipped.svg");
}

.subsc-ThumbList_Title {
  word-break: break-word;
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  white-space: normal;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
}

.subsc-ThumbList_Title-fixedLines-3 {
  max-height: 64px;
}

.subsc-ThumbList_Title-big {
  overflow: hidden;
  color: #321f00;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 72px;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

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

.subsc-ThumbList_Meta {
  display: flex;
  font-size: 11px;
  color: #666;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  word-break: break-word;
}

.subsc-ThumbList_MetaItem {
  display: flex;
  align-items: center;
}

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

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

.subsc-ThumbList-col-1 .subsc-ThumbList_Contents-left {
  display: flex;
  gap: 8px;
  width: 70%;
  flex: 1;
}

.subsc-ThumbList_BottomInfo {
  width: 100%;
}

.subsc-ThumbList_BottomInfo-text {
  display: flex;
  justify-content: flex-end;
  height: 14px;
}

.subsc-ThumbList_BottomInfo-image {
  display: flex;
  justify-content: flex-end;
  height: 14px;
}

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

.subsc-Notice {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border: 1px solid #f3f3f3;
}

.subsc-Notice_Title {
  align-self: stretch;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: 0.56px;
}

.subsc-Notice_Text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  /* 19.6px */
  letter-spacing: 0.56px;
}

.subsc-LinkList {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
}

.subsc-LinkList_Item {
  display: flex;
  padding-top: 15px;
  padding-left: 18px;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  position: relative;
  width: 100%;
}

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

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

.subsc-LinkList-divided .subsc-LinkList_Item {
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.subsc-LinkList-divided .subsc-LinkList_Item::before {
  top: calc(15px + 0.7em - 6px);
}

.subsc-LinkList_Link {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
  word-break: break-word;
}

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

.subsc-LinkList-col-2 {
  margin-left: -2vw;
  margin-right: -2vw;
  display: flex;
  flex-wrap: wrap;
  overflow-x: hidden;
}

.subsc-LinkList-col-2 .subsc-LinkList_Item {
  padding-left: calc(2vw + 16px);
  padding-right: 2vw;
  width: 50%;
}

.subsc-LinkList-col-2 .subsc-LinkList_Item::before {
  left: 2vw;
}

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

.subsc-LinkList_Notice {
  padding-top: 15px;
  border-top: 1px solid #f3f3f3;
  display: flex;
  padding-top: 15px;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  position: relative;
  width: 100%;
}

.subsc-LinkList_Notice::before {
  content: '※';
  color: #666;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.subsc-LinkList_NoticeText {
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 18px */
}

.subsc-PageTitle_Text {
  color: #000;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  /* 30.8px */
  letter-spacing: 0.88px;
}

.subsc-SecondaryTitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  align-self: stretch;
  margin-bottom: 24px;
}

.subsc-SecondaryTitle-smallmargin {
  margin-bottom: 16px;
}

.subsc-SecondaryTitle_Text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.72px;
}

.subsc-TertiaryTitle {
  margin-bottom: 15px;
}

.subsc-TertiaryTitle-largemargin {
  margin-bottom: 24px;
}

.subsc-TertiaryTitle-smallmargin {
  margin-bottom: 16px;
}

.subsc-TertiaryTitle-divided {
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 15px;
}

.subsc-TertiaryTitle_Text {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.64px;
}

.subsc-TertiaryTitle_Text-bold {
  font-weight: 600;
}

.subsc-TertiaryTitle_Text-gray {
  color: #666;
}

.subsc-TertiaryTitle_Text-bigmargin {
  margin-bottom: 24px;
}

.subsc-Tabs {
  background-color: #fff;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 10px;
}

.subsc-Tabs_ButtonWrapper {
  width: 320px;
  margin-left: auto;
}

.subsc-Tabs_HeadingWrapper {
  margin-bottom: 30px;
}

.subsc-Tabs_Wrapper {
  margin: 30px 10px 0;
}

.subsc-Tabs_SearchBox {
  margin: 20px auto;
  width: -moz-fit-content;
  width: fit-content;
}

.subsc-Tabs_SearchBoxInner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 11px;
  gap: 24px;
  width: 405px;
  height: 65px;
  border: 3px solid #000;
  background-color: #fff;
}

.subsc-Tabs_SearchBoxInput {
  font-weight: 700;
  font-size: 20px;
  color: #f09705;
}

.subsc-Tabs_Options {
  display: flex;
  align-items: stretch;
  box-sizing: border-box;
  justify-content: space-evenly;
}

.subsc-Tabs_Option {
  padding: 15px 8px;
  border-bottom: 2px solid #f3f3f3;
  flex: 1;
}

.subsc-Tabs_OptionLabel {
  cursor: pointer;
  color: #666;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.56px;
  word-break: auto-phrase;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.subsc-Tabs_OptionLabel:hover {
  opacity: 0.75;
}

.subsc-Tabs_OptionLabel.active {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.56px;
}

.subsc-Tabs_Option:has(.subsc-Tabs_OptionLabel.active) {
  border-bottom: 2px solid #000;
}

.subsc-Tabs_Tab {
  display: none;
}

.subsc-Tabs_Tab.active {
  display: block;
}

.subsc-Tabs_Tab-divided .subsc-Block:not(:last-child) {
  border-bottom: 8px solid #f3f3f3;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.subsc-Tabs_Items {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px dashed #c8c9cc;
}

.subsc-Tabs_Items:first-of-type {
  margin-top: unset;
  padding-top: unset;
  border-top: unset;
}

.subsc-Tabs_ItemsInner {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.subsc-Tabs_Contents {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: stretch;
  padding: 0px 16px;
}

.subsc-Tabs_Contents-wide {
  padding: unset;
}

.subsc-Tabs_Contents-narrowgap {
  gap: 24px;
}

.subsc-Tabs_Contents .sw-LinkButton {
  margin-bottom: unset;
}

.subsc-Tabs_Content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.subsc-Tabs_Text {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.56px;
  margin-bottom: 15px;
}

.subsc-ReadMoreButton {
  margin-left: auto;
  margin-top: 14px;
  cursor: pointer;
}

.subsc-ReadMoreButton_Button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
}

.subsc-ReadMoreButton_Text {
  color: #000;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
}

.subsc-CurrentPlan_Title-horizon {
  display: flex;
}

.subsc-CurrentPlan_Info {
  display: flex;
  padding: 32px 40px;
  align-items: flex-end;
  gap: 8px;
  align-self: stretch;
  border: 4px solid;
  -o-border-image: linear-gradient(to right, #f09705, #321f00) 1;
     border-image: linear-gradient(to right, #f09705, #321f00) 1;
  justify-content: space-between;
  align-items: center;
}

.subsc-CurrentPlan_Info-largepadding {
  padding: 40px;
}

.subsc-CurrentPlan_Info-vertical {
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.subsc-CurrentPlan_Info-vertical .subsc-CurrentPlan_Title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subsc-CurrentPlan_Text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  letter-spacing: 0.72px;
}

.subsc-CurrentPlan_Text-yellow {
  color: #f09705;
}

.subsc-CurrentPlan_Price {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}

.subsc-CurrentPlan_Button {
  align-items: center;
  width: 207px;
  display: flex;
  align-items: center;
}

.subsc-CurrentPlan_Button > * {
  margin-bottom: unset;
}

.subsc-PlanHistory {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f5f2eb;
  padding: 32px;
}

.subsc-PlanHistory > *:last-child {
  margin-bottom: 0;
}

.subsc-PlanHistoryList {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 10px;
}

.subsc-PlanHistoryList_Item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dfd6c3;
}

.subsc-PlanHistoryList_Item-hidden {
  display: none;
}

.subsc-PlanHistoryList_InfoWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.subsc-PlanHistoryList_Info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.subsc-PlanHistoryList_Info-term {
  width: 200px;
}

.subsc-PlanHistoryList_InfoText {
  color: #666;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
}

.subsc-PlanHistoryList_InfoText-left {
  width: 70px;
}

.subsc-PlanHistoryList_TitleText {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
}

.subsc-PlanHistoryList_Links {
  display: flex;
  padding-left: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  align-self: stretch;
  border-left: 1px solid #dfd6c3;
}

.subsc-PlanHistoryList_Link {
  color: #00f;
  text-align: right;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  letter-spacing: 0.48px;
}

.subsc-FavoriteIntroducitionImage {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.subsc-FavoriteIntroducitionImage img {
  width: 100%;
  height: auto;
}

.subsc-LockLabel {
  display: flex;
  padding: 2px 8px;
  align-items: center;
  gap: 3px;
  background: #ca8b25;
  margin-bottom: 15px;
  width: 121px;
}

.subsc-LockLabel_Icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.subsc-LockLabel_Text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 21px */
  letter-spacing: 0.56px;
}

.subsc-Dialog {
  border: unset;
  padding: unset;
  overflow: visible;
  outline: none;
  margin: auto;
}

.subsc-Dialog > * {
  outline: none;
}

.subsc-Dialog::backdrop {
  opacity: 0.5;
  background: #000;
}

.subsc-Dialog .sw-LinkButton {
  width: initial;
  margin: 0 15px;
}

.subsc-Dialog_Inner {
  display: flex;
  position: relative;
  width: 400px;
  padding: 30px 15px;
  flex-direction: column;
  gap: 24px;
}

.subsc-Dialog_TextWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
}

.subsc-Dialog_TextWrapper-list {
  list-style: disc;
  padding-left: 16px;
}

.subsc-Dialog_TextWrapper-list .subsc-Dialog_Text {
  text-align: left;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.56px;
}

.subsc-Dialog_TextWrapper-list a {
  text-decoration: underline;
}

.subsc-Dialog_Text {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  /* 24px */
  letter-spacing: 0.64px;
}

.subsc-Dialog_Text-small {
  color: #666;
  font-size: 14px;
  letter-spacing: 0.56px;
}

.subsc-Dialog_Container {
  display: flex;
  padding: 0 15px;
  flex-direction: column;
  gap: 24px;
  align-self: stretch;
  border-radius: 5px;
}

.subsc-Dialog_Container-gray {
  background: #f3f3f3;
  padding: 24px 15px;
}

.subsc-Dialog_Content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
}

.subsc-Dialog_CloseBtn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  text-align: center;
  position: absolute;
  right: 0px;
  top: -26px;
}

.subsc-Dialog-opened {
  display: flex;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

.mp-gallery .swiper {
  width: 100%;
  box-sizing: border-box;
}

.mp-gallery .swiper-button-next, .mp-gallery .swiper-button-prev {
  width: 37px;
  height: 54px;
}

.mp-gallery .swiper-button-white {
  background-color: rgba(120, 120, 120, 0.6);
  color: #fff;
  padding: 5px;
}

.mp-gallery-main {
  height: 560px;
  margin-bottom: 10px;
}

.mp-gallery-main .swiper-slide {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mp-gallery-main .swiper-lazy-preloader::after {
  display: none;
}

.mp-gallery-main .swiper-slide-active .swiper-lazy-preloader::after {
  display: block;
}

.mp-gallery-main .swiper-img-wrapper {
  height: 100%;
  flex-shrink: 1;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mp-gallery-main .swiper-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
}

.mp-gallery-caption {
  margin-bottom: 10px;
}

.mp-gallery-caption .swiper-wrapper {
  align-items: center;
}

.mp-gallery-caption .swiper-caption {
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0;
  font-size: 14px;
  text-align: center;
  word-break: break-word;
}

.mp-gallery .swiper-pagination {
  position: static;
  bottom: auto;
  left: auto;
  margin-bottom: 10px;
  font-size: 12px;
}

.mp-gallery-thumbs {
  margin-bottom: 20px;
}

.mp-gallery-thumbs-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.mp-gallery-thumb-wrapper {
  box-sizing: border-box;
  width: 25%;
  height: 100px;
  padding: 5px;
}

.mp-gallery-thumb {
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  cursor: pointer;
}

.mp-gallery-thumb-active {
  cursor: default;
}

.mp-gallery-thumb-border {
  box-sizing: border-box;
  height: 100%;
  border: 4px solid transparent;
}

.mp-gallery-thumb-active .mp-gallery-thumb-border {
  border: 4px solid #f09705;
}

.wp-editor .corp_bnr {
  float: left;
  margin: 0 20px;
}

.wp-editor .btnarea {
  padding: 3%;
  text-align: center;
  background: #e7e6e2;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.wp-editor table.corp_spec {
  text-align: center;
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 20px 0;
}

.wp-editor table.corp_spec th {
  background: #3f74bc;
  color: #fff;
  font-weight: normal;
  border: 1px solid #ccc;
  border-collapse: collapse;
  padding: 10px;
}

.wp-editor table.corp_spec td {
  border: 1px solid #ccc;
  border-collapse: collapse;
  padding: 10px;
}

.wp-editor .center-code {
  text-align: center;
}

.wp-editor .balloon {
  border: 5px solid #f99;
  background-color: #fff;
  padding: 3%;
  margin: 0 0 -5% 0;
  position: relative;
}

.wp-editor .balloon:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  border: 15px solid transparent;
  border-top: 15px solid #f99;
  width: 0;
  height: 0;
}

.wp-editor .highlight {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #fff5b2 50%) repeat scroll 0 0;
  display: inline;
}

.wp-editor .botan-afi, .wp-editor .botan-afi2 {
  position: relative;
  display: inline-block;
  padding: 2.5% 5%;
  font-size: 110%;
  margin: 7% 0;
  width: 75%;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.wp-editor .botan-afi a, .wp-editor .botan-afi2 a {
  color: #fff;
}

.wp-editor .botan-afi {
  background: #ff4750;
  border-bottom: solid 6px #e53f48;
}

.wp-editor .botan-afi2 {
  background: #008000;
  border-bottom: solid 6px #006400;
  color: #ff0;
}

.wp-editor .botan-afi::after, .wp-editor .botan-afi2::after {
  position: absolute;
  top: 50%;
  right: .2em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #fff;
  transition: all .3s;
}

.wp-editor .botan-afi:hover, .wp-editor .botan-afi2:hover {
  background-color: #fff;
  color: #333;
}

.wp-editor .ly_accordion {
  border-bottom: 0;
  margin: 5% 0;
}

.wp-editor .ly_accordion .bl_inner {
  padding: 3% 3% 2% 2%;
  background-color: #f7f7f7;
  text-align: left;
}

.wp-editor .ly_accordion .el_heading {
  display: inline;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0;
  padding: 2%;
  color: #fff;
  background-color: #1c293f;
  font-size: 90%;
  cursor: pointer;
}

.wp-editor .ly_accordion .bl_content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.wp-editor .ly_accordion-menu-hikaku-menu, .wp-editor .ly_accordion .el_checkbox {
  display: none;
}

.wp-editor .ly_accordion .el_checkbox:checked + .bl_content {
  max-height: 9999px;
  transition: max-height 1s ease-in;
}

.wp-editor .ly_accordion .el_heading:hover {
  background: #fff;
  color: #1c293f;
  border: 2px solid #1c293f;
}

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

.sitemapSec .ttl03 {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 10px 0;
  padding: 5px 10px;
  background-color: #e4e4e4;
  word-break: break-word;
}

.sitemapSec .disc {
  display: flex;
  flex-wrap: wrap;
  word-break: break-word;
}

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

#otoiawase-top {
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

#otoiawase-top p {
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.4;
  word-break: break-word;
}

#otoiawase-top a {
  color: #00f;
}

#otoiawase-top a:hover {
  text-decoration: underline;
}

#otoiawase {
  text-align: center;
}

#otoiawase p {
  margin-bottom: 20px;
  line-height: 2;
  word-break: break-word;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  width: 540px;
  height: 30px;
}

input.wpcf7-form-control.wpcf7-text {
  width: 540px;
  height: 30px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 540px;
}

input.wpcf7-form-control.wpcf7-back.wpcf7c-elm-step2.wpcf7c-btn-back, input.wpcf7-form-control.wpcf7-confirm.wpcf7c-elm-step1.wpcf7c-btn-confirm, input.wpcf7-form-control.wpcf7-submit {
  width: 150px;
  height: 50px;
  margin: 30px 0 0 0;
  font-size: 1.5em;
}

div.wpcf7 img.ajax-loader {
  margin-right: -15px;
  margin-left: 0 !important;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
  width: 540px;
  margin: 10px auto;
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
  width: 540px;
  margin: 10px auto;
}

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

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

.aboutus ul {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.4em;
  word-break: break-word;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.sp-only {
  display: none;
}

div.widget.widget_search {
  padding: 5% 0;
}

#widget_fx-news-flash {
  padding: 5% 0;
}

#widget_adsq3 {
  padding: 20px 0;
}

#widget_admsq2 {
  padding: 20px 0;
}

/**
 * Popular Posts Ranking v3.3.4
 *
 * プラグイン自体は廃止したが、CSSクラスがdatafeedrなどで使われているため
 * プラグインのCSSをsidebar-widget.cssへマージ
 */
.wpp-post-title {
  display: block;
  position: relative;
  width: auto;
  top: -20px;
  left: 0;
  text-decoration: none;
  padding-left: 80px;
  margin: 0 0 -20px 20px;
}

.wpp-thumbnail {
  float: left;
  border: none;
  width: 92px;
  height: 60px;
  margin: -20px 10px 0 0;
}

.post-stats {
  display: block;
  font-size: 9px;
  font-weight: bold;
}

.wpp-list {
  counter-reset: number;
  list-style: none;
}

.wpp-list li {
  float: none;
  clear: left;
  padding: 5px 0;
  line-height: 16px;
  overflow: hidden;
  border-bottom: 1px solid #e1e1e1;
  font-weight: bold;
  font-size: 13px;
}

.wpp-list li:before {
  border-radius: 2px;
  color: #fff;
  content: counter(number, decimal);
  counter-increment: number;
  display: block;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  opacity: 0.999;
  text-align: center;
  width: 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.wpp-list-plus li {
  padding: 5px 0 17px 0;
  line-height: 16px;
  overflow: hidden;
  border-bottom: 1px solid #e1e1e1;
  font-weight: bold;
}

.wpp-list-plus-thumbnail {
  width: 92px;
  height: 60px;
  margin: -20px 10px 0 0;
  float: left;
}

.wpp-list-plus-title a {
  text-decoration: none;
}

.wpp-post-title:hover {
  color: FF4A45;
  text-decoration: underline;
}

.wpp-list-plus-title:hover {
  color: FF4A45;
  text-decoration: underline;
}

.ranking {
  list-style: none;
}

.ranking .ranking_box {
  position: relative;
  padding: 5px 0;
  line-height: 16px;
  overflow: hidden;
  font-weight: bold;
  font-size: 13px;
  border-bottom: 1px solid #e1e1e1;
}

.ranking .ranking_link {
  text-decoration: none;
}

.ranking .ranking_link:hover {
  text-decoration: underline;
}

.ranking .ranking_link::after {
  content: "";
  display: table;
  clear: both;
}

.ranking .ranking_img {
  float: left;
  width: 92px;
  height: 60px;
  overflow: hidden;
}

.ranking .ranking_no {
  position: absolute;
  top: 5px;
  left: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  pointer-events: none;
}

.ranking .ranking_img img {
  display: block;
  width: 100%;
}

.ranking .ranking_ttl {
  overflow: hidden;
  padding-left: 10px;
}

/* MP-WEBFX-intro */
.fxhikaku-sidebar-intro {
  margin: 3% 0;
}

.intro-kakomi {
  overflow: hidden;
  display: block;
  padding: 1% 0 1% 0;
  border-bottom: 1px solid #ddd;
}

.intro-kakomi:first-child {
  padding: 0 0 1% 0;
}

.intro-kakomi a {
  text-decoration: none;
}

.intro-kakomi-image {
  float: left;
  margin-right: 2%;
}

.intro-kakomi-title {
  padding: 3% 0 0 0;
  line-height: 1.4em;
  text-align: left;
}

.intro-kakomi-title:hover {
  text-decoration: underline;
}

.code.icon {
  color: #000;
  position: absolute;
  margin-left: 0;
  margin-top: 2.65%;
}

.code.icon:after {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  border-bottom: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(-45deg);
}

.code-next-text {
  color: #000;
  display: block;
  padding: 1% 0 2% 7.5%;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.code-next-text:last-child {
  border-bottom: none;
}

.code-next-text a {
  text-decoration: none;
}

.code-next-text:hover {
  text-decoration: underline;
}

.tab5 {
  width: 100%;
  min-width: 300px;
  margin: 0 auto;
}

.tab5 .tab-content {
  position: relative;
}

.fxhikaku-sidebar-banner {
  display: inline;
}

.fxhikaku-sidebar-banner img:hover {
  opacity: 0.6;
}

.fxhikaku-sidebar-banner img {
  margin-bottom: -3%;
  width: 140px;
}

.tab5 label {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.tab5 label {
  display: inline-block;
  padding: 1% 4%;
  cursor: pointer;
  background: #ddd;
  color: #777;
  margin-right: -2px;
  font-size: 85%;
}

.tab5 label:hover {
  background: #eee;
}

.tab5 input:checked + label {
  background: #3498db;
  color: white;
  padding: 1.5% 5%;
  font-weight: bold;
}

.tab5 input {
  display: none;
}

.tab5 #tab5-b1, .tab5 #tab5-b2, .tab5 #tab5-b3, .tab5 #tab5-b4 {
  display: none;
  padding: 1% 2% 2% 2%;
}

.tab5 #tab5-1:checked ~ #tab5-b1, .tab5 #tab5-2:checked ~ #tab5-b2, .tab5 #tab5-3:checked ~ #tab5-b3, .tab5 #tab5-4:checked ~ #tab5-b4 {
  display: block;
  padding-top: 4%;
  border: 1px solid #3498db;
}

/* header */
.fxhikaku-header {
  overflow: hidden;
  margin: 0 auto;
  background: #f9f8f8;
  position: fixed;
  width: 100%;
  min-width: 980px;
  z-index: 1000;
}

.fxhikaku-logo {
  float: left;
  padding-left: 7%;
}

.fxhikaku-logo-sp {
  display: none;
}

.fxhikaku-nav {
  list-style: none;
}

.fxhikaku-nav a {
  text-decoration: none;
  color: #1c293f;
}

.fxhikaku-nav li:hover {
  border-bottom: 2px solid #1c293f;
}

.fxhikaku-nav li {
  display: inline;
  padding: 1.5% 2%;
  margin: 0;
  float: left;
  font-weight: bold;
}

#post-meta-hikaku {
  margin: 0 0 0 0;
  position: relative;
}

.entry_header-hikaku {
  margin-bottom: 0 !important;
  line-height: 140%;
  font-size: 85%;
}

.fxhikaku-content-page .pr_miniicon {
  line-height: 2em;
}

.tweet, .fb-iine {
  padding: 1% 7%;
}

.adsence-hikaku {
  padding: 10px 0;
  float: right;
}

/* pop-up text */
.share-word-hikaku {
  color: #666;
  position: absolute;
  font-family: sans-serif;
  bottom: 0;
  left: -25px;
  right: -25px;
  font-size: 14px;
  border-radius: 2px;
  opacity: 0.7;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* pop-up text arrow */
/* text pops up when icon is in hover state */
.share-word-hikaku:hover span {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}

/* header  end*/
/* content */
.kabuhikaku-contentmain {
  width: 800px;
  margin: 0 auto;
}

.fxhikaku-content-main {
  overflow: hidden;
  margin: 0 auto;
  width: 960px;
  padding-top: 0.5%;
  font-family: Meiryo,'メイリオ',"Helvetica Neue",Helvetica,Arial,sans-serif,'Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','Lucida Grande','ＭＳ Ｐゴシック',sans-serif;
}

.fxhikaku-leftside {
  float: left;
  width: 650px;
}

.fxhikaku-content-page a img:hover {
  opacity: 0.5 !important;
}

.fxhikaku-series {
  text-align: center;
  margin: 0 auto 5% 0;
  padding: 0 0 5% 0;
  width: 95%;
  background-color: #fff;
}

.fxhikaku-photo {
  position: relative;
}

.fxhikaku-photo img {
  width: 100%;
}

.fxhikaku-title, .fxhikaku-title2, .fxhikaku-title3 {
  position: absolute;
  top: 30%;
  text-align: center;
  display: inline;
  -moz-border-radius: 1%;
  -webkit-border-radius: 1%;
  color: #fff;
  font-size: 300%;
  font-weight: bold;
  padding: 5%;
  background-color: rgba(28, 41, 63, 0.8);
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fxhikaku-title {
  left: 11.5%;
}

.fxhikaku-title2 {
  left: 17%;
}

.fxhikaku-title3 {
  left: 4%;
}

.fxhikaku-description {
  text-align: left;
  padding: 3%;
  font-size: medium;
}

.fxhikaku-leftside .fxhikaku-series h2 {
  margin: 0% 0% 3% 0%;
  font-size: 1.5em;
  padding: 3.5% 0 3.5% 19%;
  color: #1c293f;
  border: 1px solid #1c293f;
  text-align: left;
}

.fxhikaku-title-group {
  position: relative;
}

.fxhikaku-title-image {
  position: absolute;
  top: -20%;
}

.fxhikaku-title-image img {
  width: 110px;
}

.fxhikaku-leftside .fxhikaku-series h3 {
  position: relative;
  margin: 5% auto;
  font-size: 1.1em;
  padding: 1.5% 0;
  color: #fff;
  text-align: center;
  width: 70%;
  background-color: #1c293f;
}

.fxhikaku-leftside .fxhikaku-series h3:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  border: 15px solid transparent;
  border-top: 15px solid #1c293f;
  width: 0;
  height: 0;
}

.fxhikaku-description-link {
  margin: 3% 0;
  position: relative;
}

.fxhikaku-description-link a {
  padding: 0 0 0 4%;
  text-decoration: none;
  color: #03c;
  cursor: pointer;
}

.fxhikaku-description-link a:hover {
  text-decoration: underline;
}

.fxhikaku-photo2 {
  position: relative;
  margin-bottom: 4%;
}

.fxhikaku-photo2 img {
  width: 100%;
}

.fxhikaku-top-gazou-sp {
  display: none;
}

.fxhikaku-photo-cap {
  position: absolute;
  top: 10%;
  left: 0;
  text-align: center;
  display: inline;
  -moz-border-radius: 1%;
  -webkit-border-radius: 1%;
  color: #fff;
  font-size: 120%;
  font-weight: bold;
  padding: 5%;
  background-color: rgba(28, 41, 63, 0.8);
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.link.icon {
  color: #000;
  position: absolute;
  margin-left: 8px;
  margin-top: 10px;
  width: 7px;
  height: 1px;
  background-color: currentColor;
  transform: rotate(-45deg);
}

.link.icon:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -7px;
  width: 8px;
  height: 5px;
  border-radius: 2px;
  border: solid 1px currentColor;
}

.link.icon:after {
  content: '';
  position: absolute;
  top: -3px;
  right: -7px;
  width: 8px;
  height: 5px;
  border-radius: 2px;
  border: solid 1px currentColor;
}

.arrow-right.icon {
  color: #000;
  position: absolute;
  height: 1px;
  background-color: currentColor;
  right: 0;
  top: 40%;
}

.arrow-right.icon:before {
  content: '';
  position: absolute;
  right: 1px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-top: solid 1px currentColor;
  border-right: solid 1px currentColor;
  transform: rotate(45deg);
}

.tag-link-list {
  margin-bottom: 5%;
  line-height: 120%;
}

.tag-link-list a {
  text-decoration: none;
}

.top-btn {
  text-align: center;
}

.top-btn a {
  display: inline-block;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  margin: 5% auto 0 auto;
  background: #fff;
  border: 2px solid #1c293f;
  padding: 2% 15%;
  text-decoration: none;
}

.top-btn a:hover {
  background-color: #1c293f;
  color: #fff !important;
}

.fxhikaku-column, .fxhikaku-column-relation {
  overflow: hidden;
  background-color: #f7f7f8;
  padding: 2%;
  margin-bottom: 2%;
}

.fxhikaku-column:hover, .fxhikaku-column-relation:hover {
  background-color: #fff;
  border: 1px solid #f7f7f8;
}

.fxhikaku-column img, .fxhikaku-column-relation img {
  float: left;
  margin-right: 5%;
}

.fxhikaku-column-title, .fxhikaku-column-relation-title {
  font-size: 130%;
  font-weight: bold;
}

.fxhikaku-column-relation-title {
  padding-top: 4%;
}

.fxhikaku-column-title a, .fxhikaku-column-relation a {
  text-decoration: none;
}

.fxhikaku-relation-title {
  margin: 10% -3.2% 5% 0;
  font-size: 1.5em;
  padding: 1.5% 0 1.5% 2%;
  border-bottom: 5px solid #1c293f;
  color: #000;
}

/* content end*/
/* page */
.fxhikaku-breadcrumbs-under {
  border-bottom: 5px solid #9c0;
  margin: 0 !important;
  font-weight: bold;
}

.kabuhikaku-breadcrumbs-under {
  border-bottom: 5px solid #9c0;
  margin: 0 !important;
  font-weight: bold;
}

.fxhikaku-content-page {
  font-size: medium;
  line-height: 1.8em;
  margin-bottom: 5%;
  background-color: #fff;
}

.fxhikaku-breadcrumbs {
  line-height: 1.3em;
  font-size: 0.7em;
  padding: 0 0 1% 1%;
}

.fxhikaku-content-page h1 {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
}

.fxhikaku-content-page h2, .fxhikaku-content-page h3 {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.fxhikaku-content-page h1 {
  font-size: 30px;
  font-weight: normal;
  color: #525252;
  margin: 0 0 2% 0;
  padding: 2% 0;
  line-height: 1.5em;
  border-bottom: 1px solid #ebebeb;
}

.fxhikaku-content-page .icon_img_pr {
  margin: -5% 0;
}

.fxhikaku-content-page h2 {
  margin: 10% 0 5% 0;
  font-size: 1.5em;
  border-left: 8px solid #e64946;
  padding: 3.5% 0 3.5% 2%;
  background: #1c293f;
  color: #fff;
}

.fxhikaku-content-page h3 {
  margin: 7% 0% 3.5% -3.2%;
  font-size: 1.3em;
  border-bottom: 5px solid #e64946;
  padding: 3% 0 1% 9%;
  position: relative;
}

.fxhikaku-content-page h3:before, .fxhikaku-content-page h3:after {
  content: "□";
  position: absolute;
  color: #e64946;
  top: 15%;
  height: 12px;
  width: 12px;
}

.fxhikaku-content-page h3:before {
  font-size: 100%;
  left: 1.5em;
  top: 15%;
}

.fxhikaku-content-page h3:after {
  font-size: 110%;
  top: 30%;
  left: 1em;
}

.fxhikaku-content-page p {
  margin-bottom: 1.25rem;
}

.fxhikaku-content-page a {
  color: #205a97;
  cursor: pointer;
}

.fxhikaku-content-page a:hover {
  color: #03c;
}

.fxhikaku-content-page strong {
  color: #000;
}

.ly_accordion {
  border-bottom: 0;
  margin: 5% 0;
}

.ly_accordion .bl_inner {
  padding: 3% 3% 2% 2%;
  background-color: #f7f7f7;
  text-align: left;
}

.ly_accordion .el_heading {
  display: inline;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  margin: 0;
  padding: 2%;
  color: #fff;
  background-color: #1c293f;
  font-size: 90%;
  cursor: pointer;
}

.ly_accordion .bl_content {
  overflow: hidden;
  max-height: 0;
  transition: max-height .2s ease-out;
}

.ly_accordion-menu-hikaku-menu, .ly_accordion .el_checkbox {
  display: none;
}

.ly_accordion .el_checkbox:checked + .bl_content {
  max-height: 9999px;
  transition: max-height 1s ease-in;
}

.ly_accordion .el_heading:hover {
  background: #fff;
  color: #1c293f;
  border: 2px solid #1c293f;
}

.center-code {
  text-align: center;
}

.fxhikaku-parallel {
  overflow: hidden;
}

.fxhikaku-parallel-left {
  float: left;
  margin-right: 4%;
}

.singlePagenaition {
  text-align: center;
  position: relative;
  padding: 5% 0 0 0;
  overflow: hidden;
}

.singlePagenaition span {
  background: #e64946;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  border: none !important;
}

.singlePagenaition .pageBtn a {
  display: inline-block;
  margin: 0 auto 5px;
  width: 160px;
}

.singlePagenaition span.pre, .singlePagenaition span.next {
  background: #eee;
  color: #525252;
  display: block;
  padding: 5px 10px;
  text-align: center;
}

.singlePagenaition a span {
  background: #eee;
  color: #525252;
  display: inline-block;
}

.singlePagenaition a:hover span {
  background: #e64946;
  color: #fff;
  border: none !important;
}

.number-top {
  padding-bottom: 5%;
  margin-top: -5%;
  text-align: right;
}

/* page end */
/* sidebar */
#side {
  background-color: transparent;
  padding-top: 2.5%;
}

.fxhikaku-sidebar-list {
  list-style: none;
}

.fxhikaku-sidebar-list li {
  margin-bottom: 5%;
}

.fxhikaku-sidebar-list li:first-child {
  margin-bottom: 0;
}

.fxhikaku-sidebar-list .wpp-list li {
  margin-bottom: 0;
}

.fxhikaku-sidebar-list img.size-auto, .fxhikaku-sidebar-list img.size-full, .fxhikaku-sidebar-list img.size-large, .fxhikaku-sidebar-list img.size-medium, .fxhikaku-sidebar-list .attachment img {
  margin-top: 0;
  margin-bottom: 0;
}

.fxhikaku-sidebar-link-list {
  background-color: #fff;
}

.fxhikaku-sidebar-list-title {
  background: #e64946;
  color: #fff;
  padding: 3% 0 2% 3%;
  margin-bottom: 4%;
  font-size: medium;
}

.fxhikaku-sidebar-link-list a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 3% 0 3% 7.5%;
  border-bottom: 1px solid #ddd;
}

.fxhikaku-sidebar-link-list a:last-child {
  border-bottom: none;
}

.fxhikaku-sidebar-link-list a:hover {
  text-decoration: underline;
}

.bookmark.icon {
  color: #000;
  position: absolute;
  margin-left: 5px;
  margin-top: 0.8%;
  width: 10px;
  height: 15px;
  border-radius: 1px 1px 0 0;
  border-top: solid 1px currentColor;
  border-left: solid 1px currentColor;
  border-right: solid 1px currentColor;
}

.bookmark.icon:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 1px;
  width: 7px;
  height: 7px;
  border-top: solid 1px currentColor;
  border-left: solid 1px currentColor;
  transform: rotate(45deg);
}

/* sidebar  end*/
/* fotter*/
.footer-fxhikaku {
  padding-top: 2%;
  background-color: #333;
  width: 100%;
  border-top: none;
}

.footer-fxhikaku a {
  color: #fff;
}

.footer-fxhikaku p {
  color: #fff;
  border-top: 1px solid #b5b5b5;
  width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.footer-fxhikaku a:hover {
  color: #fff;
}

/* fottoer end*/
/* editor-hikaku  */
.chat.icon {
  color: #000;
  position: absolute;
  margin-left: -2%;
  margin-top: 0.8%;
  width: 15px;
  height: 10px;
  border: solid 1px currentColor;
  border-radius: 2px;
}

.chat.icon:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 8px;
  width: 4px;
  height: 4px;
  transform: rotate(45deg);
  background-color: white;
  border-bottom: solid 1px currentColor;
  border-right: solid 1px currentColor;
}

.f_red {
  color: #c00000;
}

.corp_bnr {
  float: left;
  margin: 0 20px;
}

.btnarea {
  padding: 3%;
  text-align: center;
  background: #e7e6e2;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
}

.bottan-content-account, .bottan-content-detail {
  text-align: center;
}

.bottan-content-account {
  margin-bottom: 2%;
}

.bottan-content-account a, .bottan-content-detail a {
  display: inline-block;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  text-decoration: none;
}

.bottan-content-account a {
  background: #ff4750;
  border: 2px solid #ff4750;
  padding: 2% 11.2%;
  color: #fff;
}

.bottan-content-detail a {
  background: #fff12d;
  border: 2px solid #fff12d;
  padding: 2% 15%;
  color: #000;
}

.bottan-content-account a:hover {
  background-color: #fff;
  color: #ff4750 !important;
}

.bottan-content-detail a:hover {
  background-color: #fff;
  color: #000 !important;
}

.highlight {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 50%, #fff5b2 50%) repeat scroll 0 0;
  display: inline;
}

.hikaku-note {
  list-style: none;
}

.hikaku-note li {
  padding: 2% 5% 1.5% 7%;
  border-bottom: 1px solid #eee;
}

.hikaku-note p {
  margin-bottom: 0;
}

.botan-afi, .botan-afi2 {
  position: relative;
  display: inline-block;
  padding: 2.5% 5%;
  color: #fff;
  font-size: 110%;
  margin: 7% 0;
  width: 75%;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
}

.botan-afi {
  background: #ff4750;
  border-bottom: solid 6px #e53f48;
}

.botan-afi2 {
  background: #008000;
  border-bottom: solid 6px #006400;
  color: #ff0;
}

.botan-afi::after, .botan-afi2::after {
  position: absolute;
  top: 50%;
  right: .2em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #fff;
  transition: all .3s;
}

.botan-afi:hover, .botan-afi2:hover {
  background-color: #fff;
  color: #333;
}

.balloon {
  border: 5px solid #f99;
  background-color: #fff;
  padding: 3%;
  margin: 0 0 -5% 0;
  position: relative;
}

.balloon:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  right: 0;
  margin: auto;
  border: 15px solid transparent;
  border-top: 15px solid #f99;
  width: 0;
  height: 0;
}

.next-bottan {
  background: #ff6b32;
  color: #525252;
  display: block;
  padding: 2%;
  text-align: center;
  width: 80%;
  margin: 10% auto;
}

.next-bottan a {
  text-decoration: none;
}

.next-bottan a:hover {
  text-decoration: underline;
}

.afi-introduct-article-group {
  overflow: auto;
}

.afi-introduct-article {
  float: left;
  width: 45%;
  margin-right: 2%;
}

.afi-introduct-article, .afi-introduct-article2 {
  margin-top: 1%;
  margin-bottom: 1%;
  border: 1px solid #ebebeb;
  background-color: #ffc;
  overflow: auto;
  padding: 2% 2%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.32);
}

.afi-introduct-article-image, .afi-introduct-article-image2 {
  display: inline-block;
}

.afi-introduct-article-image img, .afi-introduct-article-image2 img {
  width: 80px;
}

.afi-introduct-article-text, .afi-introduct-article-text2 {
  font-size: 85%;
  font-weight: bold;
  float: right;
  line-height: 115%;
  width: 65%;
}

.afi-introduct-article-text a, .afi-introduct-article-text2 a {
  text-decoration: none;
}

.afi-introduct-article-text a:hover, .afi-introduct-article-text2 a:hover {
  text-decoration: underline;
}

.afi-introduct-article:hover, .afi-introduct-article2:hover {
  border: 1px solid #ffc;
  background-color: #fff;
  cursor: pointer;
}

/* editor-hikaku-table */
table.corp_spec {
  text-align: center;
  border: 1px solid #ccc;
  border-collapse: collapse;
  width: 100%;
  margin: 0 0 20px 0;
}

table.corp_spec th {
  background: #3f74bc;
  color: #fff;
  font-weight: normal;
  border: 1px solid #ccc;
  border-collapse: collapse;
  padding: 10px;
}

table.corp_spec td {
  border: 1px solid #ccc;
  border-collapse: collapse;
  padding: 10px;
}

/* editor-hikaku-table end */
/* tab-contents */
.tab-content input[type="radio"] {
  display: none;
}

.tab-content .tab-box {
  padding-top: 4%;
}

.tab-content label {
  background: #3498db;
  color: #fff;
  padding: 1.5% 6%;
  font-weight: bold;
  border-right: 1px solid #fff;
  cursor: pointer;
}

.tab-content label:hover {
  background: #eee;
}

.tab-content > .tab-box > div {
  display: none;
}

#tab1:checked ~ .tab-box > #tabView1 {
  display: block;
}

#tab2:checked ~ .tab-box > #tabView2 {
  display: block;
}

#tab3:checked ~ .tab-box > #tabView3 {
  display: block;
}

/* tab-contents  end*/
/* editor-hikaku end */
/*<1200px*/
@media screen and (max-width: 1200px) {
  .fxhikaku-header {
    min-width: 1200px;
  }
}

/*<1024px*/
@media screen and (max-width: 1024px) {
  .fxhikaku-logo {
    padding-left: 1%;
  }
  .fxhikaku-logo img {
    width: 100px;
    padding-top: 9%;
  }
  .footer-fxhikaku {
    width: 100%;
  }
  .footer-fxhikaku p {
    width: 100%;
  }
}

/*<980px*/
@media screen and (max-width: 980px) {
  .fxhikaku-logo {
    padding-left: 3%;
  }
  .fxhikaku-header {
    min-width: auto;
  }
  .fxhikaku-nav li {
    font-size: 80%;
    padding: 1.5% 3%;
  }
  .fxhikaku-logo img {
    padding-top: 6%;
  }
  #side {
    margin-top: 1%;
  }
}

/*<765px*/
@media screen and (max-width: 765px) {
  /* header */
  .adsence-hikaku {
    padding: 5% 0 2% 0;
    float: none;
  }
  .adsence-hikaku img {
    width: 95%;
  }
  .ly_accordion-menu-hikaku-menu {
    border-bottom: 0;
    position: absolute;
    right: 2%;
    top: 25% !important;
    z-index: 10000;
    display: block;
    width: 25%;
  }
  .ly_accordion-menu-hikaku-menu .bl_inner {
    padding: 0;
    background-color: #f7f7f7;
  }
  .ly_accordion-menu-hikaku-menu .el_heading {
    display: inline;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    margin: 0;
    padding: 10%;
    color: #fff;
    background-color: #1c293f;
    font-size: 110%;
    font-family: FontAwesome;
  }
  .ly_accordion-menu-hikaku-menu .el_heading :hover {
    background-color: #1c293f;
    color: #fff;
  }
  .ly_accordion-menu-hikaku-menu .bl_content {
    overflow: hidden;
    max-height: 0;
  }
  .ly_accordion-menu-hikaku-menu .el_checkbox {
    display: none;
  }
  .ly_accordion-menu-hikaku-menu .el_checkbox:checked + .bl_content {
    max-height: 9999px;
    transition: max-height 1s ease-in;
    margin-left: -210%;
    margin-right: -10%;
    padding-top: 20%;
  }
  .menu li a {
    line-height: 3.8;
  }
  .fxhikaku-header {
    min-width: auto;
    overflow: visible;
  }
  .fxhikaku-nav {
    display: none;
  }
  .fxhikaku-logo {
    display: none;
  }
  .fxhikaku-logo-sp {
    padding-left: 4%;
    display: block;
  }
  #post-meta-hikaku {
    margin: -4% 0 10% 0;
  }
  .entry_header-hikaku {
    margin-bottom: 0 !important;
    padding-top: 10%;
    line-height: 140% !important;
    font-size: 85%;
  }
  /* header end */
  /* content */
  .tab-content label {
    padding: 1.5% 4%;
    font-size: 80%;
  }
  .link.icon {
    display: none;
  }
  .fxhikaku-top-gazou-sp {
    display: block;
  }
  .fxhikaku-top-gazou {
    display: none;
  }
  .fxhikaku-photo-cap {
    top: 16%;
    background-color: rgba(28, 41, 63, 0.3);
    font-size: 90%;
    text-align: left;
  }
  .fxhikaku-leftside .fxhikaku-series h2 {
    padding: 3.5% 0 3.5% 24%;
    font-size: 1.3em;
  }
  .fxhikaku-title-image img {
    width: 70px;
  }
  .kabuhikaku-contentmain {
    width: auto;
  }
  .balloon {
    padding: 3%;
    font-size: 80%;
    line-height: 150%;
    margin: 0% 0 -3% 0;
  }
  .fxhikaku-leftside {
    float: none;
    width: 100%;
  }
  .fxhikaku-content-main {
    width: 100%;
    padding-top: 0;
  }
  .fxhikaku-breadcrumbs {
    padding: 0 0 1% 0;
  }
  .fxhikaku-series {
    width: 100%;
  }
  .fxhikaku-photo img {
    width: 100%;
  }
  .fxhikaku-title img {
    width: 100%;
  }
  .fxhikaku-title, .fxhikaku-title2, .fxhikaku-title3 {
    left: 0;
    top: 30%;
    width: 100%;
    padding: 5% 0;
    display: block;
    font-size: 160%;
  }
  .fxhikaku-content-page {
    width: auto;
  }
  .fxhikaku-relation-title {
    margin: 10% 0 5% 0;
    font-size: 1.3em;
  }
  .fxhikaku-content-page h1 {
    font-size: 1.5rem !important;
    line-height: 1.3em;
    margin-bottom: 5%;
    letter-spacing: -.07em;
    font-weight: 500;
    padding: 3% 0;
    color: #333;
  }
  .fxhikaku-content-page h2 {
    margin: 10% -2.2% 5% -2.2%;
    font-size: 110%;
    border-left: 8px solid #e64946;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .fxhikaku-content-page h3 {
    margin: 10% -2.2% 3.5% -2.2%;
    font-size: 110%;
    padding: 3% 0 1.5% 3%;
  }
  .fxhikaku-content-page h3:before, .fxhikaku-content-page h3:after {
    font-size: 0;
  }
  .fxhikaku-content-page p {
    font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif;
    line-height: 1.7em;
  }
  .top-btn a {
    width: 100%;
    padding: 5% 0;
  }
  .ly_accordion .bl_inner {
    padding: 3% 3% 2% 0;
  }
  .ly_accordion .el_heading {
    padding: 2% 5%;
    font-size: 70%;
  }
  .ly_accordion .el_heading:hover {
    background: #1c293f;
    color: #fff;
    border: 2px solid #1c293f;
  }
  .fxhikaku-parallel {
    text-align: center;
  }
  .fxhikaku-parallel-left {
    float: none;
    margin-bottom: -7%;
    margin-right: 0;
  }
  .wp-caption {
    padding: 1% 0;
  }
  .wp-caption img {
    margin: 0;
  }
  .fxhikaku-column, .fxhikaku-column-relation {
    padding: 0 2%;
    margin: 5% 0;
  }
  .fxhikaku-column img, .fxhikaku-column-relation img {
    width: 95px;
  }
  .fxhikaku-column-title, .fxhikaku-column-relation-title {
    font-size: 90%;
    line-height: 1.3em;
  }
  .fxhikaku-column-relation-title {
    padding-top: 6%;
  }
  .corp_bnr {
    float: none;
    margin: 5% 0;
    text-align: center;
  }
  .botan-afi {
    padding: 3.5% 10%;
  }
  .afi-introduct-article-group {
    overflow: visible;
  }
  .afi-introduct-article-text, .afi-introduct-article-text2 {
    padding-top: 2%;
    padding-right: 3%;
  }
  .afi-introduct-article-group-all {
    margin: 3% 0;
  }
  .afi-introduct-article {
    float: none;
    width: auto;
    margin-right: 0;
  }
  .afi-introduct-article, .afi-introduct-article2 {
    margin-bottom: 3%;
    margin-top: 0;
    position: relative;
    background-color: #fff;
    box-shadow: 1px 1px 1px 0px rgba(0, 0, 0, 0.11);
  }
  .code.icon3 {
    color: #000;
    position: absolute;
    right: 0;
    top: 40%;
    left: 93%;
    margin: auto;
    bottom: 0;
  }
  .code.icon3:after {
    content: '';
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    border-bottom: solid 1px currentColor;
    border-right: solid 1px currentColor;
    transform: rotate(-45deg);
  }
  .next-bottan {
    width: auto;
  }
  /* content end*/
  /* side*/
  .fxhikaku-sidebar-link-list a {
    text-align: left;
  }
  .bookmark.icon {
    margin-left: 2%;
    margin-top: 3%;
  }
  .fxhikaku-sidebar-list-title {
    margin-bottom: 5%;
  }
  /* side end*/
  /* hikaku*/
  .section {
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
  }
  .section .note {
    padding: 0 10px;
  }
  .section .corp_block .corp_bnr {
    float: none;
    width: 120px;
    margin: 0 auto 20px auto;
  }
  .section .corp_block .corp_ex {
    padding-left: 0px;
  }
  table.corp_spec thead {
    display: none;
  }
  table.corp_spec td {
    display: block;
    text-align: right;
  }
  table.corp_spec td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
  .btnarea {
    padding: 5% 4%;
  }
  .btnarea a {
    display: block;
  }
  .bottan-content-account {
    margin-bottom: 5%;
  }
  .chat.icon {
    margin-left: -6%;
  }
  .section .note {
    padding: 0 10px;
  }
  .section .corp_bnr {
    float: none;
    width: 120px;
    margin: 0 auto 20px auto;
  }
  .section .corp_ex {
    padding-left: 0px;
  }
  .section table.corp_spec {
    border: 0;
    border-bottom: 1px solid #ccc;
  }
  .section table.corp_spec thead {
    display: none;
  }
  .section table.corp_spec td {
    display: block;
    text-align: right;
    border-bottom: 0px;
  }
  .section table.corp_spec td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
  .section .porposemenu .porposemenu_daytrade, .section .porposemenu .porposemenu_swing, .section .porposemenu .porposemenu_swap, .section .porposemenu .porposemenu_bin-sys {
    float: none;
    width: 100%;
    margin: 0px 0px 10px 0px;
  }
  /* hikaku end*/
}

.premium {
  font-family: Hiragino Kaku Gothic ProN;
  overflow: hidden;
  min-width: 1000px;
  margin-top: -20px;
  margin-bottom: 40px;
  padding-top: 58px;
  position: relative;
}

.premium::before {
  content: '';
  width: 100%;
  height: 394px;
  background: linear-gradient(180deg, #f1f1f1 0%, #e3e1de 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.premium-top {
  font-family: "Noto Sans JP";
  display: flex;
  justify-content: center;
  width: 982px;
  margin: 0 auto 20px auto;
  position: relative;
  z-index: 1;
}

.premium-top_leftBlock {
  width: 474px;
  margin-right: 24px;
  padding-top: 26px;
}

.premium-top_rightBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.premium-top_deviceImage {
  width: 100%;
}

.premium-top_title {
  color: #1c1c1c;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 45.2px;
}

.premium-top_title span {
  background: linear-gradient(94.43deg, #f09705 0%, #321f00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.premium-top_message {
  color: #1c1c1c;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 23.36px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.premium-top_message span {
  font-size: 20px;
  line-height: 29.2px;
}

.premium-top_price {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 16px;
}

.premium-top_price span {
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
  font-family: "Hiragino Kaku Gothic ProN";
  padding: 0 2px;
}

.premium-top_anchorLink {
  text-align: center;
  width: 320px;
  border-radius: 4px;
  padding: 12px 16px;
  background-color: #000;
  box-shadow: 0px 4px 10px 0px #0003;
}

.premium-top_anchorLink_title {
  color: #f7e1bd;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
}

.premium-top_anchorLink_text {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  position: relative;
}

.premium-top_anchorLink_text::after {
  content: '';
  display: block;
  width: 11px;
  height: 6px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
  position: absolute;
  right: -18px;
  top: calc(50% - 3px);
}

.premium-introduction {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -60px;
  padding-top: 35px;
  padding-bottom: 48px;
  background: linear-gradient(180deg, #f5f2eb 0%, #e3e2de 100%);
  position: relative;
  z-index: 0;
}

.premium-introduction::before {
  content: '';
  width: 100%;
  height: 50px;
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
  background-color: #f5f2eb;
  position: absolute;
  top: -50px;
  z-index: -1;
}

.premium-introduction::after {
  content: '';
  width: 100%;
  height: 50px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  background-color: #e3e2de;
  position: absolute;
  bottom: -50px;
}

.premium-introduction_underKV_wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 50.5px;
  background: linear-gradient(180deg, #f5f2eb 0%, #e3e2de 100%);
}

.premium-introduction_underKV {
  width: 1440px;
  height: 348px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-introduction-under-kv.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.premium-introduction_member_wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #e3e2de;
}

.premium-introduction_member {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 40px;
}

.premium-introduction_memberTitle {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  line-height: 34.5px;
  letter-spacing: 0.04em;
  margin: 0 auto 24px auto;
  padding: 9px 48px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-member-parts.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.premium-introduction_memberList {
  display: flex;
  align-items: flex-start;
}

.premium-introduction_memberItem {
  width: 238px;
  margin-right: 16px;
  border: 1px solid #d5be95;
  padding: 24px 16px 16px 16px;
  background-color: #f5f5f5;
}

.premium-introduction_memberItem:last-of-type {
  margin-right: 0;
}

.premium-introduction_memberItem img {
  width: 206px;
  height: 160px;
  margin-bottom: 16px;
}

.premium-introduction_memberItem_title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  margin-bottom: 24px;
}

.premium-introduction_memberDescription {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}

.premium-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 48px;
  padding-top: calc(50px + 31px + 16px);
  background-color: #f5f2ed;
}

.premium-plan_title {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.04em;
  margin-bottom: 41.5px;
  position: relative;
}

.premium-plan_title::before {
  content: '';
  width: 37px;
  height: 31px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-plan-title.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -31px;
  left: calc(50% - 16px);
}

.premium-plan_title::after {
  content: '';
  width: 100%;
  height: 6px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-plan_title_line.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -12px;
  left: 0;
}

.premium-plan_title-content::before {
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-plan-title.svg");
}

.premium-plan_details {
  width: 706px;
  text-align: center;
  line-height: 1;
  border-radius: 4px;
  padding: 40px;
  background-color: #fff;
}

.premium-plan_details .premium-btn {
  margin: 0 auto;
}

.premium-plan_getugaku {
  height: 56px;
  font-size: 21px;
  line-height: 21px;
  letter-spacing: 0.04em;
  writing-mode: tb-rl;
  margin-right: 6px;
  border-radius: 2.25px;
  padding: 5px;
  border: 1.13px solid #000;
}

.premium-plan_price {
  font-size: 65px;
  font-weight: 600;
  line-height: 53px;
  letter-spacing: -0.01em;
  margin-bottom: 21px;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.premium-plan_yen {
  font-size: 41px;
  line-height: 38px;
  letter-spacing: 0.04em;
}

.premium-plan_annotation {
  color: #666;
  font-weight: 300;
  font-size: 14px;
  line-height: 17.5px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.premium-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 29px;
  padding-bottom: 48px;
  background-color: #f5f2ed;
}

.premium-content_title {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.04em;
  margin-bottom: 41.5px;
  position: relative;
}

.premium-content_title::before {
  content: '';
  width: 59px;
  height: 31px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-content-title.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -31px;
  left: calc(50% - 29px);
}

.premium-content_title::after {
  content: '';
  width: 100%;
  height: 6px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-content_title_line.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -12px;
  left: 0;
}

.premium-content_table {
  width: 706px;
  font-size: 18px;
  line-height: 1.25em;
  margin: 0 auto;
  border-radius: 4px;
  padding: 32px 32px 32px 24px;
  background-color: #fff;
}

.premium-content_table th, .premium-content_table td {
  text-align: center;
  vertical-align: middle;
  background-color: #fff;
  padding: unset;
  height: 60px;
}

.premium-content_table th[data-type="empty"] {
  width: 219px;
}

.premium-content_table th[data-type="premium"] {
  color: #fff;
  width: 243px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: 0.04em;
  background-color: #ca8b25;
}

.premium-content_table th[data-type="free"] {
  color: #fff;
  width: 188px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: 0.04em;
  background-color: #8d8d8d;
}

.premium-content_table table {
  margin-bottom: 32px;
}

.premium-content_table thead tr {
  height: 74px;
}

.premium-content_table tbody tr {
  height: 60px;
}

.premium-content_table tbody tr:last-of-type th, .premium-content_table tbody tr:last-of-type td {
  border-bottom: 0;
}

.premium-content_table tbody th {
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #0000000d;
}

.premium-content_table tbody th span {
  display: block;
  font-size: 10px;
}

.premium-content_table td[data-type="premium"] {
  border-bottom: 1px solid #ca8b254d;
  background-color: #ca8b2566;
  vertical-align: bottom;
}

.premium-content_table td[data-type="free"] {
  border-bottom: 1px solid #0000001a;
  background-color: #e3e2de;
  vertical-align: bottom;
}

.premium-content_table_annotation {
  color: #666;
  font-weight: 300;
  font-size: 14px;
  line-height: 17.5px;
  letter-spacing: 0.04em;
}

.premium-content_tablecell {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.premium-qa {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(80px + 24px);
  padding-top: 29px;
  padding-bottom: 40px;
  background-color: #f5f2ed;
  position: relative;
}

.premium-qa::after {
  content: '';
  width: 100%;
  height: 80px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  background-color: #f5f2eb;
  position: absolute;
  bottom: -80px;
}

.premium-qa_title {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: 0.04em;
  margin-bottom: 41.5px;
  position: relative;
}

.premium-qa_title::before {
  content: '';
  width: 37px;
  height: 31px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-qa-title.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -31px;
  left: calc(50% - 16px);
}

.premium-qa_title::after {
  content: '';
  width: 100%;
  height: 6px;
  background-image: url("/wp-content/themes/mp2022_pc/image/premium-qa_title_line.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -12px;
  left: 0;
}

.premium-important {
  font-size: 16px;
  width: 706px;
}

.premium-important h2 {
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 20px;
}

.premium-important_list_item {
  line-height: 1.5em;
  padding-left: 16px;
  position: relative;
}

.premium-important_list_item::before {
  content: '※';
  position: absolute;
  left: 0;
}

.premium-important_list_item a {
  color: #f09705;
  text-decoration: underline;
}

.premium-accordionContainer {
  width: 706px;
  margin: 0 auto 48px auto;
}

.premium-accordion_item {
  cursor: pointer;
  margin-bottom: 8px;
  background-color: #fff;
  position: relative;
}

.premium-accordion_item:last-of-type {
  margin-bottom: 0;
}

.premium-accordion_item-opened .premium-accordion_title::before {
  content: none;
}

.premium-accordion_title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22.5px;
  padding: 24px 56px 14px 24px;
  position: relative;
}

.premium-accordion_title::before {
  content: '';
  width: 2px;
  height: 14px;
  background-color: #d29125;
  position: absolute;
  top: 24px;
  right: calc(24px + 6px);
}

.premium-accordion_title::after {
  content: '';
  width: 14px;
  height: 2px;
  background-color: #d29125;
  position: absolute;
  top: calc(24px + 6px);
  right: 24px;
}

.premium-accordion_content {
  overflow: hidden;
  font-size: 14px;
  max-height: 0;
  padding: 0 24px;
  transition: max-height 0.3s;
}

.premium-accordion_innerContent {
  font-size: 14px;
  font-weight: 300;
  line-height: 17.5px;
  letter-spacing: 0.04em;
  border-top: 1px solid #0000001a;
  padding: 12px 0px 16px;
}

.premium-cv {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-cv_price {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 12px;
}

.premium-cv_yen {
  font-size: 28px;
  font-weight: 600;
  line-height: 28px;
  margin: 0 2px;
}

.premium-cv_text {
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 12px;
}

.premium-btn {
  cursor: pointer;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  width: 480px;
  border-radius: 4px;
  padding: 21px 16px;
  background-color: #000;
  box-shadow: 0px 4px 10px 0px #0003;
  position: relative;
}

.premium-btn::after {
  content: '';
  display: block;
  width: 8px;
  height: 17px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  background-color: #fff;
  position: absolute;
  right: 16px;
  top: calc(50% - 8px);
}

.premium-backgroundImage {
  width: 1440px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.premium-backgroundImage img {
  width: auto;
  position: absolute;
}

.premium-backgroundImage img:nth-of-type(1) {
  height: 128px;
  top: 18px;
  left: -64px;
}

.premium-backgroundImage img:nth-of-type(2) {
  height: 121px;
  top: 99px;
  left: 99px;
}

.premium-backgroundImage img:nth-of-type(3) {
  height: 74px;
  top: 243px;
  left: 18px;
}

.premium-backgroundImage img:nth-of-type(4) {
  height: 134px;
  top: 26px;
  right: -60px;
}

.premium-backgroundImage img:nth-of-type(5) {
  height: 98px;
  top: 87px;
  right: 132px;
}

.premium-backgroundImage img:nth-of-type(6) {
  height: 80px;
  top: 201px;
  right: 33px;
}

.premium-floating_banner {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #000000b2;
  z-index: 9999;
}

.premium-floating_banner .premium-btn {
  color: #fff;
  font-weight: 300;
  padding-top: 16px;
  padding-bottom: 16px;
  background: linear-gradient(94.07deg, #b97300 0%, #321f00 113.47%);
}
