@charset "UTF-8";

:root {
  /* スマホレイアウトブレイクポイント */
  --breakpoint: 768px;
}

@media (max-width: 767px) {

  /*女の転職ヘッダー*/
  /*============================
#wrap
============================*/
  #wrap {
    padding-top: 58px;
  }

  .pc-header {
    display: none;
  }

  .pc-footer {
    display: none;
  }

  /*============================
#header
============================*/
  #header {
    position: absolute;
    top: 0;
    z-index: 9000;
    width: 100%;
    background-color: white;
  }

  #header.is-visible,
  #header.is-hidden {
    position: fixed;
  }

  #header.is-hidden {
    top: -58px;
    animation: 0.4s forwards;
    animation-name: slide-up;
  }

  #header.is-visible {
    top: 0;
    animation: 0.3s forwards;
    animation-name: slide-down;
  }

  @keyframes slide-up {
    from {
      transform: translateY(58px);
    }

    to {
      transform: translateY(0);
    }
  }

  @keyframes slide-down {
    from {
      transform: translateY(-58px);
    }

    to {
      transform: translateY(0);
    }
  }

  #header .HiddenTag {
    opacity: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    border: none !important;
  }

  #header .inner {
    display: flex;
    position: relative;
    height: 58px;
    padding-top: 15px;
  }

  #header .logo {
    display: block;
    position: relative;
    z-index: 100;
    width: 139px;
  }

  #header .logo span {
    position: relative;
    top: -35px;
    left: 6px;
    color: #999999;
    letter-spacing: 0;
    text-align: left;
  }

  #header .logo_box {
    display: block;
    position: relative;
    width: 170px;
    margin: 0 12px;
  }

  #header .logo_box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: auto;
  }

  @media only screen and (max-width:350px) {
    #header .logo {
      width: 120px;
      height: 26.37px;
    }
  }

  #header .logo img {
    width: 70%;
    height: auto;
    margin-top: 10px;
  }

  #header .btns {
    position: absolute;
    top: 8px;
    left: 7px;
    vertical-align: top;
  }

  #header .btns li {
    display: inline-block;
  }

  #header .btns img {
    width: 45px;
  }

  @media only screen and (max-width:350px) {
    #header .btns img {
      width: 40px;
    }
  }

  /*============================
#sp-nav
============================*/
  #sp-nav {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 23px;
    width: 21px;
    height: 50px;
    cursor: pointer;
    transition: all .3s ease;
    z-index: 101;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
  }

  @media only screen and (max-width:350px) {
    #sp-nav {
      width: 17px;
    }
  }

  #sp-nav a {
    display: block;
    width: 100%;
    height: 100%;
    /* クリック判定拡大 */
    padding-right: 40px;
    padding-left: 10px;
    margin-left: -10px;
  }

  .hamburger-icon {
    display: block;
    position: absolute;
    top: 9px;
    left: 15px;
    z-index: 999;
    width: 16px;
    height: 16px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background-color: #d82035;
    color: #ffffff;
    font-weight: bold;
    font-size: 10px;
    line-height: 16px;
    text-align: center;
  }

  .android-icon {
    line-height: 15px !important;
  }

  @media only screen and (max-width:350px) {
    .hamburger-icon {
      left: 11px;
    }
  }

  .hamburger-line {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #333333;
    transition: all .4s;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
  }

  .line-1 {
    top: 17px;
  }

  .line-2 {
    top: 25px;
  }

  @media only screen and (max-width:350px) {
    .line-2 {
      top: 23.5px;
    }
  }

  .line-3 {
    top: 33px;
  }

  @media only screen and (max-width:350px) {
    .line-3 {
      top: 30px;
    }
  }

  .hamburger-open .hamburger-icon {
    display: none;
  }

  /*hamburger-openクラスが付与されるとハンバーガメニューの三本線が回転して×に*/
  .hamburger-open .line-1 {
    transform: translateY(6px) rotate(-45deg);
  }

  .hamburger-open .line-2 {
    /*真ん中の線は透過*/
    opacity: 0;
  }

  .hamburger-open .line-3 {
    top: 29px;
    transform: translateY(-6px) rotate(45deg);
  }

  #sp-nav .hamburger-text {
    position: absolute;
    top: 41px;
  }

  @media only screen and (max-width:350px) {
    #sp-nav .hamburger-text {
      top: 37px;
      left: -2px;
    }
  }

  #menu-text {
    position: absolute;
    right: -28px;
    width: 33.5px;
  }

  @media only screen and (max-width:350px) {
    #menu-text {
      right: -24px;
      width: 28.5px;
    }
  }

  #close-text {
    position: absolute;
    right: -23px;
    width: 25px;
  }

  @media only screen and (max-width:350px) {
    #close-text {
      right: -20px;
      width: 20px;
    }
  }

  #sp-nav .hamburger-hidden-text {
    display: none;
  }

  /*============================
#nav-are
============================*/
  #nav-area {
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: -100%;
    z-index: 8900;
    width: 100%;
    max-width: 100%;
    outline: none;
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -o-transition: all .6s;
    -ms-transition: all .6s;
    pointer-events: all;
  }

  #nav-area .nav-inner {
    height: 100%;
    background-color: white;
  }

  #nav-area .scroll-down {
    top: 0;
  }


  /*============================
#nav-menu-area
============================*/
  #nav-menu-area {
    position: relative;
    overflow: hidden;
  }

  #nav-menu-area .nav-menu {
    position: absolute;
    top: 0;
    height: 100vh;
  }

  #nav-menu-area .nav-menu-inner {
    max-width: 650px;
    margin: 0 20px;
  }

  #nav-menu-area .nav-menu-inner div,
  ul {
    padding: 0;
  }

  #nav-menu-area .sns-link-area {
    background-color: #F9F1EB;
    padding: 30px 20px !important;
    width: 100vw;
    margin: 0 -20px;
  }

  @media only screen and (max-width:330px) {
    #nav-menu-area .nav-menu-inner {
      width: 88%;
    }
  }

  #nav-menu-area .nav-menu-item {
    visibility: visible;
    opacity: 1;
    position: relative;
    float: left;
    width: 100vw;
    min-height: 30px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #nav-menu-area .bottom-link a {
    margin-top: 10px;
    font-weight: bold;
    font-size: 12px;
    text-decoration: underline;
  }

  #nav-menu-area .bottom-center-link {
    margin-bottom: 31px;
    padding-top: 22.5px;
    text-align: center;
  }

  /* 会員メニュー */
  #nav-menu-area .login-area-line {
    margin: 0 auto 30px auto;
    border-bottom: 1px solid #e6e6e6;
  }

  #nav-menu-area .login-btn-area {
    margin: 25px auto 30px auto;
    padding: 20px 0 15px 0;
    background-color: #eeeeee;
    text-align: center;
  }

  #nav-menu-area .nav-login-btn img {
    width: 86%;
    margin: 0 auto;
  }

  #nav-menu-area .register-btn {
    margin-top: 7px;
    font-weight: bold;
    font-size: 10px;
    text-decoration: underline !important;
    text-align: center;
  }

  #nav-menu-area .notification-icon-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 23px auto 0 auto;

    column-gap: 25px;
  }

  #nav-menu-area .notification-icon {
    width: 28%;
    text-align: center;
  }

  #nav-menu-area .notification-icon a {
    position: relative;
  }

  #nav-menu-area .notification-icon a img {
    width: 76%;
  }

  #nav-menu-area .notification-icon a {
    display: inline-block;
  }

  #nav-menu-area .notification-icon a:link {
    color: #333333;
    text-decoration: none;
  }

  #nav-menu-area .notification-icon a:visited {
    color: #333333;
  }

  #nav-menu-area .notification-icon a:hover {
    color: #333333;
    text-decoration: underline;
  }

  #nav-menu-area .notification-icon a:active {
    color: #333333;
  }

  #nav-menu-area .notification-icon a img {
    margin: 0 auto;
  }

  #nav-menu-area .notification-icon p {
    margin-top: 7px;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
  }

  #nav-menu-area .notification-icon:nth-child(3) p {
    margin-top: 9px;
    font-size: 10px;
    letter-spacing: 0;
  }

  #nav-menu-area .notice-icon {
    display: block;
    position: absolute;
    left: 73%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #d82035;
    color: #ffffff;
    font-weight: bold;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
  }

  #nav-menu-area .notice-icon-three-digits {
    font-size: 10px;
  }

  #nav-menu-area .notice-icon-three-digits>span {
    position: relative;
    top: -2px;
  }

  #nav-menu-area .menu-btn-area {
    display: flex;
    justify-content: center;
    margin-top: 23px;
  }

  #nav-menu-area .menu-btn img {
    width: 100%;
  }

  #nav-menu-area .menu-search-btn {
    width: 62%;
  }

  #nav-menu-area .search-condition-area {
    margin: 25px auto 22.5px auto;
  }

  #nav-menu-area .search-menu ul li {
    position: relative;
    width: 94%;
    margin: 7px auto 0 auto;
    padding: 17px 0 17px 28px;
    background-color: #f5f5f5;
    font-size: 12px;
  }

  #nav-menu-area .search-menu ul li a {
    width: 88.5%;
  }

  #nav-menu-area .left-red-label {
    font-weight: bold;
    font-size: 14px;
  }

  #nav-menu-area .left-red-label span {
    height: 20px;
    margin-right: 5px;
    padding-left: 5px;
    border-radius: 3px;
    background-color: #d82035;
  }

  #nav-menu-area .no-search-condition {
    padding: 14px !important;
    text-align: center;
  }

  #nav-menu-area .search-saved a::after {
    display: block;
    position: absolute;
    top: 34%;
    right: 15px;
    font-size: 12px;
    content: ">";
  }

  #nav-menu-area .disp-none {
    display: none;
  }

  #nav-menu-area .two-line {
    display: -webkit-box;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  #nav-menu-area .condition-name {
    position: absolute;
    top: 17px;
    left: 28px;
    width: calc(82% - 62px);
  }

  #nav-menu-area .one-line {
    display: -webkit-box;
    overflow: hidden;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
  }

  #nav-menu-area .offer-counts {
    position: absolute;
    top: 17px;
    right: 33px;
    width: 60px;
    text-align: end;
  }

  #nav-menu-area .no-search-saved {
    padding: 14px !important;
    font-weight: bold;
    text-align: center !important;
  }

  #nav-menu-area .no-search-saved a {
    text-decoration: underline;
  }

  #nav-menu-area .no-search-saved a::after {
    display: none;
  }

  #nav-menu-area .search-condition-link {
    width: 94%;
    margin: 0 auto;
    text-align: right;
  }

  .simple-link-area {
    margin-top: 9px;
    margin-bottom: 22.5px;
  }

  .simple-link-area .simple-link {
    position: relative;
    width: 82.5%;
    margin: 0 auto;
    padding: 14px 0 9.5px 21.5px;
    border-bottom: 1px solid #e6e6e6;
  }

  .simple-link-area .simple-link a {
    display: inline-block;
    width: 100%;
    color: #333333;
    font-weight: bold;
    font-size: 12px;
  }

  .simple-link-area .simple-link a::after {
    display: block;
    position: absolute;
    top: 14px;
    right: 4.5px;
    color: #333333;
    font-size: 12px;
    content: ">";
  }

  /* お役立ちメニュー */
  #helpful-link-area {
    margin: 25px auto 14px auto;
  }

  #helpful-link-area li:last-child a {
    padding-top: 8px;
  }

  #helpful-link-area .helpful-link {
    position: relative;
    margin: 0 auto;
    padding-top: 4px;
    padding-bottom: 9.5px;
    border-bottom: 1px solid #e6e6e6;
    text-align: center;
  }

  #helpful-link-area .helpful-link span {
    position: absolute;
    bottom: 20.75px;
    left: 28px;
    width: 0;
    height: 0;
    border-width: 4.6px 0 4.6px 10.5px;
    border-style: solid;
  }

  #helpful-link-area .red-triangle img {
    width: 50%;
  }

  #helpful-link-area .purple-triangle img {
    width: 63%;
  }

  #helpful-link-area .blue-triangle img {
    width: 68.5%;
  }

  #helpful-link-area .wt-red-triangle img {
    width: 50.5%;
  }

  #helpful-link-area .red-triangle span {
    border-color: transparent transparent transparent #d82035;
  }

  #helpful-link-area .purple-triangle span {
    border-color: transparent transparent transparent #9666c7;
  }

  #helpful-link-area .blue-triangle span {
    border-color: transparent transparent transparent #36b1df;
  }

  #helpful-link-area .wt-red-triangle span {
    border-color: transparent transparent transparent #d41a3e;
  }

  .sns-link-area {
    margin: 20px auto;
  }

  .sns-link-area p {
    color: #333333;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
  }

  .sns-link-area .sns-icons-area {
    display: inline-block;
    width: 100%;
  }

  .sns-link-area .sns-icons {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    width: 100%;
    margin: 23px auto 22.5px auto;
  }

  .sns-link-area .sns-icons li img {
    width: 60px;
    height: 60px;
  }

  .sns-link-area .sns-icons li {
    width: 60px;
    height: 60px;
  }

  /*フッター*/
  footer img {
    border: none;
    vertical-align: middle;
  }

  footer ul,
  footer ol {
    list-style-type: none;
    padding: 0;
  }

  footer .footer-tag-area {
    margin: 20px;
  }

  footer .tag-list {
    display: flex;
    flex-wrap: wrap;
    /* 3行目以降非表示になるように設定 */
    /* 文字サイズ＋タグパディング＋フレックスギャップ */
    max-height: calc((1em + 6px + 20px) * 3);
    overflow: hidden;
    position: relative;
  }

  footer .tag-list.close::after {
    content: "";
    width: 100%;
    height: calc(1em + 6px + 20px);
    display: block;
    background: linear-gradient(rgba(255, 255, 255, 0) 0, #F9F1EB 80%);
    position: absolute;
    bottom: 0;
    left: 0;
  }

  footer p {
    color: #333333;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
  }

  footer .tag-accordion {
    padding-top: 0;
  }

  #pagetop {
    margin: 0 7px -10px;
    text-align: right;
  }

  #footer {
    padding: 20px 15px;
    border-top: 2px solid #000000;
    background: #f5f5f5;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  }

  #footer .links {
    margin: 0 0 20px;
  }

  #footer .links li a {
    color: #999999;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: underline;
  }

  #footer .links .links-01 {
    margin: 0 0 15px 0;
  }

  #footer .logos {
    margin: 0 0 20px;
  }

  #footer .logos li {
    float: left;
    margin: 0 15px 0 0;
  }

  #copy {
    font-size: 9px;
  }

  /*============================
fixed-bottom-right-btn
============================*/
  .fixed-bottom-right-btn.twitter {
    position: fixed;
    right: 3%;
    bottom: 56px;
    z-index: 100;
  }

  .fixed-bottom-right-btn.twitter::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    border: solid 1px #cfd9de;
    border-radius: 50%;
    background: #0f1419;
    content: "";
  }

  .fixed-bottom-right-btn.twitter::after {
    display: inline-block;
    position: absolute;
    top: 11px;
    right: 12px;
    width: 22px;
    height: 23px;
    background: url(../images/x_logo_white.png) no-repeat;
    background-size: 100%;
    vertical-align: middle;
    content: "";
  }

  .fixed-bottom-right-btn:hover {
    opacity: .7;
  }


  /* =============================================
 CSS assets
============================================= */
  @keyframes fadein {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @font-face {
    font-style: normal;
    font-weight: 400;
    font-family: NotoSansCJKjp;

    src: url("../font/NotoSansCJKjp-Regular.woff") format("woff");
  }

  /* トップスライダー用フォント */
  @font-face {
    font-style: normal;
    font-weight: normal;
    font-family: "slick";

    src: url("../font/slick.eot");
    src: url("../font/slick.eot?#iefix") format("embedded-opentype"), url("../font/slick.woff") format("woff"), url("../font/slick.ttf") format("truetype"), url("./font/slick.svg#slick") format("svg");
  }

  /* =============================================
 Base / Reset
 ============================================= */
  * {
    box-sizing: border-box;

    -webkit-appearance: none;
    appearance: none;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    border: 0;
    box-sizing: border-box;
    background: transparent;
    font-weight: normal;
    outline: 0;

    -webkit-box-sizing: border-box;
  }

  body {
    width: 100%;
    margin: 0 auto;
    background-color: #f9f1eb;
    color: black;
    font-size: 13px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
    letter-spacing: .5px;
    text-align: left;

    -webkit-text-size-adjust: 100%;
  }

  header div,
  span,
  header object,
  header iframe,
  header h1,
  header h2,
  header h3,
  header h4,
  header h5,
  header h6,
  header p,
  header blockquote,
  header pre,
  header abbr,
  header address,
  header cite,
  header code,
  header del,
  header dfn,
  header em,
  header img,
  header ins,
  header kbd,
  header q,
  header samp,
  header small,
  header strong,
  header sub,
  header sup,
  header var,
  header b,
  header i,
  header dl,
  header dt,
  header dd,
  header ol,
  header ul,
  header li,
  header fieldset,
  header form,
  header label,
  header legend,
  header table,
  header caption,
  header tbody,
  header tfoot,
  header thead,
  header tr,
  header th,
  header td,
  header article,
  header aside,
  header canvas,
  header details,
  header figcaption,
  header figure,
  header footer,
  header header,
  header hgroup,
  header menu,
  header nav,
  header section,
  header summary,
  header time,
  header mark,
  header audio,
  header video {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    background: transparent;
    font-weight: normal;
    font-size: 100%;
    outline: 0;

    -webkit-box-sizing: border-box;
  }

  img {
    margin: 0;
    padding: 0;
    border: none;
    vertical-align: bottom;

    user-select: none;
    -webkit-touch-callout: none;
  }

  ul {
    list-style-type: none;
  }

  a {
    border: none;
    color: #2b9cd1;
    text-decoration: none;
    word-break: break-all;
  }

  a:hover {
    text-decoration: underline;
  }

  div,
  figure,
  p {
    margin: 0;
    padding: 0;
  }

  p {
    margin-bottom: 14px;
    line-height: 1.6;
  }

  /* =============================================
 Utility
 ============================================= */
  .float_r {
    float: right;
  }

  .float_l {
    float: left;
  }

  .text_left {
    text-align: left;
  }

  .text_right {
    text-align: right;
  }

  .text_center {
    text-align: center;
  }

  .right_img {
    margin: 0 0 0 25px;
  }

  .left_img {
    margin: 0 25px 0 0;
  }

  .clearfix {
    display: inline-block;
  }

  .clearfix::after {
    display: block;
    clear: both;
  }

  .hide {
    display: none;
  }

  /* =============================================
 Layout
 ============================================= */
  main {
    min-width: 320px;
    max-width: var(--breakpoint);
    margin: 0 auto;
    padding-top: 42px;
  }

  main.is-header-fixed {
    transition: margin-top 0.3s ease;
    /* スムーズに切り替え */
  }

  #pc_area,
  #side_bar {
    display: none;
  }

  #sp_area {
    width: 100%;
    min-width: 320px;
  }

  #single_post {
    padding: 0 13px;
    overflow-x: hidden;
    background-color: white;
  }

  /* =============================================
 Common
 ============================================= */
  .banner a {
    display: block;
    position: relative;
    height: 0;
    overflow: hidden;
  }

  .banner a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }

  .banner {
    margin: 10px 20px;
  }

  h1 {
    margin: 0 0 8px 0;
    color: black;
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: 0;
    text-align: left;
  }

  h2:not(.card__text .title, [id="single_post"] h2) {
    box-sizing: border-box;
    color: #333333;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: .5px;
    text-align: center;
  }

  h3 {
    clear: both;
    margin: 14px 0;
    color: #e60039;
    font-weight: bold;
    font-size: 100%;
    line-height: 1.5;
    letter-spacing: 0;
  }

  .responsive-h1 {
    text-align: center;
    margin: 0 0 30px 0;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #e60039;
    color: white;
  }

  .responsive-h1 span {
    font-weight: bold;
  }


  /* ---------------------
ランキングページ
---------------------- */
  .cardArea.category_ranking h1 {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #e60039;
    color: white;
  }

  /* カテゴリーランキングボタン */
  .ranking-buttons {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    margin: 10px 5px;
    border-bottom: #aaa solid 0.5px;
  }

  .ranking-buttons::-webkit-scrollbar {
    /* スクロールバーの高さを調整 */
    height: 6px;
  }

  .ranking-buttons::-webkit-scrollbar-thumb {
    /* スクロールバーの色 */
    background-color: #aaa;
    border-radius: 10px;
  }

  .ranking-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1.4px solid #333333;
    border-radius: 100px;
    opacity: 1;
    margin-right: 5px;
    margin-left: 5px;
    color: #000;
  }

  .ranking-btn:hover {
    background-color: #E50038;
    font-weight: bold;
    border: 2px solid #E50038;
    color: #fff;
  }

  /* 選択中のカテゴリを強調 */
  .ranking-btn.active {
    background-color: #E50038;
    font-weight: bold;
    border: 2px solid #E50038;
    color: #fff;
  }

  /* 期間選択ランキングボタン */
  .ranking-period {
    display: flex;
    gap: 2px;
    align-items: center;
    justify-content: flex-end;
    margin: 0 20px 30px 0;
  }

  .ranking-period input[type="radio"] {
    margin: 0;
  }

  .ranking-period label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    flex-direction: row-reverse;
    font-weight: bold;
  }

  /* カスタムラジオボタン（非選択時） */
  .ranking-period label::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #000000;
    /* 非選択時の枠線 */
    background: #FFFFFF no-repeat padding-box;
    border-radius: 50%;
    display: inline-block;
  }

  /* 選択されているとき（枠が太くなる） */
  .ranking-period input[type="radio"]:checked+label::before {
    box-shadow: inset 0 0 0 2px #000000;
    /* 内側に太い枠線 */
  }



  /* ---------------------
 カード型リンク
---------------------- */
  .cardArea h2>img {
    vertical-align: middle;
    height: 1.8em;
    width: auto;
    margin-right: 5px;
  }

  .cardArea .logo {
    margin: 0 auto 15px auto;
    color: #e60039;
    font-size: 14px;
    text-align: center;
    vertical-align: top;
  }

  .cardArea_button_block {
    padding: 40px 40px 25px;
    text-align: center;
  }

  .cardArea_button_block a {
    display: inline-block;
    width: 240px;
    background-color: #E60039;
    color: white;
    padding: 10px 0;
    border-radius: 20px;
    font-weight: bold;
    position: relative;
  }

  .cardArea_button_block a.right-arrow-btn::after {
    content: "＞";
    display: inline-block;
    position: absolute;
    right: 30px;
    transform: scaleX(0.5);
  }


  .cardArea_button_block span {
    display: inline-block;
    width: 240px;
    background-color: #E60039;
    color: white;
    padding: 10px 0;
    border-radius: 20px;
    font-weight: bold;
    position: relative;
  }


  .cardArea_button_block span.tag-area-open-btn::after {
    content: "∨";
    display: inline-block;
    position: absolute;
    right: 30px;
    transform: scaleY(0.5);
  }

  .cardArea.ranking {
    background: #E60039;
    padding: 30px 15px;
  }

  .cardArea.ranking>div {
    background: white;
    padding: 20px 10px;
    border-radius: 10px;
  }

  .card {
    display: flex;
    align-content: center;
    position: relative;
    width: 90%;
    margin: auto;
    padding: 7px 0;
    border-bottom: 1px solid #e7e7e7;
  }

  .card.card--large {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 0;
    box-shadow: 0 0 20px #ebd3c1;
    background-color: white;
  }

  .card.card--large a {
    flex-wrap: wrap;
    text-decoration: none;
  }

  .card.card--large .card__imgBox {
    width: 100%;
  }

  .card .date {
    display: block;
    margin: 0 8px 0 0;
    color: #8a8a8a;
  }

  .card .category-tag {
    padding: 1px 13px;
    background: #e60039;
    color: white;
    line-height: 1.6;
    vertical-align: middle;
  }

  .post-meta {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    flex-wrap: wrap;
    font-size: 10px;
  }

  .card.card--large .post-meta {
    font-size: 13px;
  }

  .card>a:not(.card__head) {
    display: flex;
    width: 100%;
  }

  .card__imgBox {
    position: relative;
    width: 45%;
    margin: auto;
  }

  .card__imgBox figure {
    display: block;
    position: relative;
    height: 0;
    padding-top: calc(630 / 1200 * 100%);
    overflow: hidden;
  }

  .card__imgBox figure img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: auto;
  }

  .cardArea .card .card__head.rank {
    position: absolute;
    top: -20px;
    left: -5px;
    z-index: 10;
    width: 30px;
    height: 33px;
    text-align: center;
    line-height: 30px;
  }

  .cardArea .card:nth-of-type(1) .card__head.rank {
    background: url(../images/icon_crown_1.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(2) .card__head.rank {
    background: url(../images/icon_crown_2.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(3) .card__head.rank {
    background: url(../images/icon_crown_3.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(n+4):nth-of-type(-n+30) .card__head.rank {
    background: url(../images/icon_crown.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(n+4):nth-of-type(-n+30) ul.tag-list:not(#single_post .tag-list) {
    display: none;
  }

  .cardArea .card .card__head.card__head.rank::after {
    color: white;
    font-size: 14px;
    font-weight: bolder;
    position: absolute;
    top: calc(50% + 4px);
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }

  .cardArea .card:nth-of-type(1) .card__head.rank::after {
    content: "1";
  }

  .cardArea .card:nth-of-type(2) .card__head.rank::after {
    content: "2";
  }

  .cardArea .card:nth-of-type(3) .card__head.rank::after {
    content: "3";
  }

  .cardArea .card:nth-of-type(4) .card__head.rank::after {
    content: "4";
  }

  .cardArea .card:nth-of-type(5) .card__head.rank::after {
    content: "5";
  }

  .cardArea .card:nth-of-type(6) .card__head.rank::after {
    content: "6";
  }

  .cardArea .card:nth-of-type(7) .card__head.rank::after {
    content: "7";
  }

  .cardArea .card:nth-of-type(8) .card__head.rank::after {
    content: "8";
  }

  .cardArea .card:nth-of-type(9) .card__head.rank::after {
    content: "9";
  }

  .cardArea .card:nth-of-type(10) .card__head.rank::after {
    content: "10";
  }

  .cardArea .card:nth-of-type(11) .card__head.rank::after {
    content: "11";
  }

  .cardArea .card:nth-of-type(12) .card__head.rank::after {
    content: "12";
  }

  .cardArea .card:nth-of-type(13) .card__head.rank::after {
    content: "13";
  }

  .cardArea .card:nth-of-type(14) .card__head.rank::after {
    content: "14";
  }

  .cardArea .card:nth-of-type(15) .card__head.rank::after {
    content: "15";
  }

  .cardArea .card:nth-of-type(16) .card__head.rank::after {
    content: "16";
  }

  .cardArea .card:nth-of-type(17) .card__head.rank::after {
    content: "17";
  }

  .cardArea .card:nth-of-type(18) .card__head.rank::after {
    content: "18";
  }

  .cardArea .card:nth-of-type(19) .card__head.rank::after {
    content: "19";
  }

  .cardArea .card:nth-of-type(20) .card__head.rank::after {
    content: "20";
  }

  .cardArea .card:nth-of-type(21) .card__head.rank::after {
    content: "21";
  }

  .cardArea .card:nth-of-type(22) .card__head.rank::after {
    content: "22";
  }

  .cardArea .card:nth-of-type(23) .card__head.rank::after {
    content: "23";
  }

  .cardArea .card:nth-of-type(24) .card__head.rank::after {
    content: "24";
  }

  .cardArea .card:nth-of-type(25) .card__head.rank::after {
    content: "25";
  }

  .cardArea .card:nth-of-type(26) .card__head.rank::after {
    content: "26";
  }

  .cardArea .card:nth-of-type(27) .card__head.rank::after {
    content: "27";
  }

  .cardArea .card:nth-of-type(28) .card__head.rank::after {
    content: "28";
  }

  .cardArea .card:nth-of-type(29) .card__head.rank::after {
    content: "29";
  }

  .cardArea .card:nth-of-type(30) .card__head.rank::after {
    content: "30";
  }

  .cardArea .card:last-child {
    border: none;
  }


  @media screen and (max-width: 360px) {
    .card__head {
      top: 9%;
      font-size: 12px;
    }
  }


  .card__text {
    width: 55%;
    padding: 0 5px 0 10px;
  }

  .card.card--large .card__text {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 12px;
    padding: 0 10px 20px 10px;
  }

  .card__text .title {
    display: -webkit-box;
    max-height: 4.8em;
    margin: 0;
    overflow: hidden;
    color: black;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  @media screen and (max-width: 360px) {
    .card__text .title {
      height: 54px;
      font-size: 12px;
    }
  }

  .card:hover {
    text-decoration: none;
  }

  .card a:hover {
    text-decoration: none;
  }

  .card:hover .title {
    text-decoration: underline;
  }

  .banner_area {
    margin: 40px 0 20px;
  }

  .banner_area img {
    width: 100%;
  }

  /* =============================================
 Header
 ============================================= */
  .WTheader {
    position: relative;
    top: 0;
    left: 0;
    z-index: 8888;
    width: 100%;
    height: auto;
    margin: 0;
    background: white;
  }

  .WTheader .WTnav.is-fixed {
    position: fixed;
    top: 0;
    z-index: 10;
  }

  .WTheader .WTnav.is-header-visible,
  .WTheader .WTnav.is-header-hidden {
    position: fixed;
    animation: 0.5s forwards;
  }

  .WTheader .WTnav.is-header-visible {
    top: 58px;
    animation: 0.4s forwards;
    animation-name: slide-down;
  }

  .WTheader .WTnav.is-header-hidden {
    top: 0;
    animation: 0.3s forwards;
    animation-name: slide-up;
  }


  .WTheader .WTlogo {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 45px;
    margin-top: 5px;
  }

  @media screen and (max-width: 350px) {
    .WTheader .WTlogo {
      height: 30px;
    }
  }

  .WTheader .WTnav {
    position: fixed;
    background: #ffffff;
    text-align: center;
    width: 100%;
  }

  .WTheader .WTnav h1 {
    display: inline;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
  }

  .WTheader .WTnav ul.WTnav-menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 42px;
    margin: 0;
    padding: 0;
    border-bottom: 3px solid #e60039;
    box-shadow: 0 3px 4px -1px rgba(0, 0, 0, .2);
    font-size: 13px;
    transition: all 0.4s ease;
  }

  .WTnav-menu-item {
    display: block;
    padding: 10px 0;
    color: black;
    font-weight: bold;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
  }

  .WTnav-menu-item.expanded {
    flex-grow: 1;
    /* 横幅を最大にする */
    padding: 0;
  }

  @media screen and (max-width: 320px) {
    .WTheader .WTnav ul {
      font-size: 12px;
    }
  }


  .WTheader .WTnav .WTnav-menu-item:nth-of-type(1) {
    width: 35%;
  }

  .WTheader .WTnav .WTnav-menu-item:nth-of-type(2) {
    width: 15%;
  }

  .WTheader .WTnav .WTnav-menu-item:nth-of-type(3) {
    width: 25%;
  }

  .WTheader .WTnav .WTnav-menu-item:nth-of-type(4) {
    width: 15%;
  }

  .WTheader .WTnav .WTnav-menu-item:nth-of-type(5) {
    width: 45px;
    padding: 0;
  }


  .WTheader .WTnav a {
    display: block;
    color: black;
    font-weight: bold;
    text-decoration: none;
  }

  .searchform {
    position: absolute;
    left: 0;
    height: 0%;
    transition: height 0.4s ease;
    width: 100%;
    text-align: right;
    border-bottom: 3px solid #e60039;
    border-right: 1px solid #e60039;
    border-left: 1px solid #e60039;
    opacity: 0;
  }

  .searchform .search-area {
    color: transparent;
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: absolute;
    left: 0px;
    height: 100%;
    transition: height 0.4s ease;
    color: black;
    width: 100%;
  }

  .searchform .search-area:focus-visible {
    outline: none;
  }


  .search-btn {
    position: absolute;
    width: 45px;
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: auto;
    transition: 0.3s ease-in-out;
    border: none;
    background: url(../images/icon_search.png) no-repeat center left 11px / 18px 18px;
    text-align: center;
  }

  .search-submit-btn {
    position: absolute;
    width: 45px;
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: auto;
    transition: 0.3s ease-in-out;
    border: none;
    background: url(../images/icon_search.png) no-repeat center left 11px / 18px 18px;
    text-align: center;
    background-color: white;
  }

  .search-close-btn {
    position: absolute;
    width: 45px;
    height: 100%;
    top: 0;
    right: 0;
    pointer-events: auto;
    transition: 0.3s ease-in-out;
    border: none;
    background: url(../images/icon_close_r.png) no-repeat center left 11px / 18px 18px;
    text-align: center;
  }

  .searchform.expanded .search-submit-btn::before {
    background: #333;
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    margin: auto;
  }

  .searchform.expanded .search-area {
    padding: 0px 45px 0 10px;
  }

  .searchform.expanded {
    opacity: 1;
    height: 100%;
  }


  .WTnav-category-accordion-title {
    list-style: none;
    position: relative;
    padding-left: 15px;
    text-align: left;
  }

  .WTnav-category-accordion-title::-webkit-details-marker {
    display: none;
  }

  .WTnav-category-accordion-menu {
    --arrow-size: 14px;
    --anime-speed: .3s;
  }

  /* 開閉マークの配置 */
  .icon-bar {
    display: block;
    -webkit-clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
    /* Safari */
    clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7.5em;
    width: var(--arrow-size);
    height: calc(var(--arrow-size) * .6);
    margin: auto;
    background: black;
    transition: transform var(--anime-speed);
  }

  .WTnav-category-accordion-menu .WTnav-category-accordion-title::-webkit-details-marker {
    /* iOSで表示されるデフォルトの三角形アイコンを消す */
    display: none;
  }

  .WTnav-category-accordion-menu[open] .WTnav-category-accordion-title .icon-bar {
    transform: rotate(180deg);
  }

  .WTnav-category-accordion-menu-ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
  }

  .WTnav-category-accordion-menu-item {
    padding: 15px;
    text-align: left;
    position: relative;
  }

  .WTnav-category-accordion-menu-item a {
    padding-bottom: 5px;
    border-bottom: 1px solid #e6e6e6;
  }

  .WTnav-category-accordion-menu-item a:after {
    content: "＞";
    transform: scaleX(0.5);
    position: absolute;
    right: 5px;
  }



  /* =============================================
 Footer
 ============================================= */

  .utility-links {
    display: block;
    margin: 10px;
    text-align: right;
  }

  .utility-links li {
    margin-bottom: 10px;
  }

  .utility-links li a {
    font-weight: bold;
    font-size: 11px;
    line-height: 1;
    color: #333333;
  }

  .utility-links li a::after {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    content: "";
    background: url(../images/icon_next.png) no-repeat;
    background-size: contain;
    margin-right: 5px;
    margin-bottom: 4px;

  }

  /* =============================================
 Page / Single 固有
 ============================================= */
  [id="single_post"] .title_box {
    width: 100%;
    margin-bottom: 25px;
    padding: 22px 0 5px 0;
    border-bottom: solid 2px #eeeeee;
  }

  [id="single_post"] p {
    font-size: 15px;
    line-height: 1.58;
    word-break: break-word;
  }

  [id="single_post"] h1 {
    margin: 0;
    font-size: 19px;
  }

  [id="single_post"] .twitter-follow {
    display: block;
    width: 238px;
    margin: 0 auto;
    padding: 9px 0;
    border-radius: 3px;
    background-color: #0f1419;
    color: white;
    font-size: 12px;
    text-align: center;
  }

  [id="single_post"] .twitter-follow::before {
    display: inline-block;
    width: 17px;
    height: 18px;
    margin-right: 12px;
    background: url(../images/x_logo_white.png) no-repeat;
    background-size: 100%;
    vertical-align: middle;
    content: "";
  }

  [id="single_post"] .twitter-follow:link,
  [id="single_post"] .twitter-follow:visited {
    color: white !important;
  }

  [id="single_post"] .share {
    margin: 0px -13px 0px -13px;
    padding: 30px 0 50px 0;
    background: rgb(249, 241, 235);
  }

  [id="single_post"] .share .twitter-follow {
    margin-bottom: 30px;
  }

  [id="single_post"] .share__head {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
  }

  [id="single_post"] .share__list {
    display: flex;
    justify-content: space-between;
    width: 92%;
    margin: 0 auto;
    padding: 0;
  }

  [id="single_post"] .share li {
    width: 22%;
    border: 1px solid #c9c9c9;
    border-radius: 3px;
    background: white no-repeat center center;
    font-size: 11px;
    text-align: center;
  }

  [id="single_post"] .share li a {
    display: block;
    height: 27px;
    padding: 3px 0;
    color: white;
    text-decoration: none;
  }

  [id="single_post"] .share li.twitter {
    background-image: url(../images/x_logo_black.png);
    background-size: 17px auto;
  }

  [id="single_post"] .share li.line {
    background-image: url(../images/line.png);
    background-size: 33.5px auto;
  }

  [id="single_post"] .share li.facebook {
    background-image: url(../images/facebook.png);
    background-size: 18.5px auto;
  }

  [id="single_post"] .share li.hatena {
    background-image: url(../images/hatebu.png);
    background-size: 17.5px auto;
  }



  /* =============================================
 未整理
 ============================================= */
  .sp_bottom_section {
    width: 100%;
    padding: 0 13px;
    box-sizing: border-box;
  }

  .sp_bottom_section table {
    width: 100%;
  }

  .sp_bottom_section .archive {
    margin: 22px 0 50px 0;

    -webkit-padding-start: 0;
  }

  .sp_bottom_section .archive li {
    display: inline;
    list-style-type: none;
    margin: 7px;
  }

  .sp_bottom_section .archive a {
    padding: 5px 11px;
    background-color: #eeeeee;
    color: black;
    text-decoration: none;
  }

  .sp_bottom_section .archive .now_li a {
    background-color: #e60039;
    color: white;
  }

  .sp_bottom_section ol.pagination {
    padding: 0;
    text-align: center;
  }

  .sp_bottom_section ol.pagination li.now {
    border: solid 2px;
    border-color: #1ab3b1;
    font-weight: bold;
  }

  .sp_bottom_section ol.pagination li {
    display: inline-block;
    width: 26px;
    height: 26px;
    margin: 0 3px;
    text-align: center;
  }

  .sp_bottom_section ol.pagination li a {
    color: black;
    font-size: 14px;
  }

  button.icon img {
    display: none;
  }

  footer .bottom_banner_area .banner {
    margin: 10px 20px;
  }

  footer .bottom_banner_area .banner:first-of-type {
    margin-top: 0;
  }

  .page-category .banner {
    margin: 10px 20px;
  }


  iframe.footer-iframe {
    width: 1px;
    height: 1px;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    border: none;
  }

  #nav-menu-area .nav-menu {
    left: 0 !important;
  }


  /* =============================================
 おすすめタグ
 ============================================= */

  .tag-list:not(#single_post .tag-list) {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px 10px;
  }

  .tag:not(#single_post .tag) {
    border: 1px solid #333333;
    border-radius: 17px;
    background: white;
  }

  .tag a:not(#single_post .tag a) {
    display: block;
    height: 100%;
    padding: 3px 17px;
    color: black;
    text-decoration: none;
  }

  .card.card--large .tag-list {
    max-height: 30px;
    margin-top: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    width: 100%;
    padding: 0 10px;
  }

  /* =============================================
カテゴリー
 ============================================= */

  .category {
    background: white;
    padding: 1px 0 30px;
  }

  .category-icon-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 23px auto 0 auto;

    column-gap: 25px;
  }

  .category-icon {
    width: 28%;
    text-align: center;
  }

  .category-icon a {
    position: relative;
  }

  .category-icon a img {
    width: 76%;
  }

  .category-icon a {
    display: inline-block;
  }

  .category-icon a:link {
    color: #333333;
    text-decoration: none;
  }

  .category-icon a:visited {
    color: #333333;
  }

  .category-icon a:hover {
    color: #333333;
    text-decoration: underline;
  }

  .category-icon a:active {
    color: #333333;
  }

  .category-icon a img {
    margin: 0 auto;
  }

  .category-icon p {
    margin-top: 7px;
    margin-bottom: 0;
    font-weight: bold;
    font-size: 10px;
    line-height: 1;
  }

  .category-icon p::before {
    display: inline-block;
    vertical-align: middle;
    margin-left: -3px;
    width: 14px;
    height: 14px;
    content: "";
    background: url(../images/icon_next.png) no-repeat;
    background-size: contain;
    margin-right: 5px;
    margin-bottom: 2px;
  }

  /* =============================================
連載一覧ページ
 ============================================= */

  /* 連載特大カード */
  .series-area {
    width: 100%;
  }

  .series-card-xl .series-title {
    width: 100%;
    text-decoration: none;
  }

  #series-content .series-card-xl .series-description {
    max-height: 4.8em;
  }

  .series-card-xl .series-description {
    color: black;
    font-weight: normal;
    margin-top: 15px;
    /* 3行だけ表示 */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
  }

  .series-card-xl .series-posts-area {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0;
    margin-bottom: 20px;
    align-items: stretch;
  }

  /* 横スクロールバーの太さ */
  .series-card-xl .series-posts-area::-webkit-scrollbar {
    height: 8px;
  }

  .series-card-xl .series-posts-area::-webkit-scrollbar-track {
    background: white;
  }

  .series-card-xl .series-posts-area::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 6px;
  }

  .series-card-xl .series-posts-area::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

  .series-posts-area>article.card.card--large {
    flex: 0 0 60%;
    background-color: white;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    min-width: 60%;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
  }

  .series-posts-area>article.card.card--large .title {
    height: 4.8em;
  }

  .series-posts-area>article.card.card--large:first-child {
    margin-left: 20px;
  }

  .series-posts-area>article.card.card--large:last-child {
    margin-right: 20px;
  }

  .series-card-xl>.cardArea_button_block {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .series-card-xl .latest-date {
    display: none !important;
  }

  .series-card-xl .right-triangle-link {
    display: none !important;
  }


  .series-card-xl>.cardArea_button_block a {
    width: 80%;
    padding: 10px 0;
    font-size: 15px;
  }

  /* 連載大カード */
  .series-card-lg {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    box-shadow: 0 0 20px #ebd3c1;
    background-color: white;
    align-content: center;
    position: relative;
    width: 90%;
    margin: 0 auto 20px;
    border-bottom: 1px solid #e7e7e7;
  }

  .series-card-lg img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .series-card-lg .series-title {
    width: 100%;
    text-decoration: none;
    min-height: 3.2em;
  }

  .series-card-lg .latest-date {
    text-decoration: none;
    color: #E60039;
    margin-bottom: 0;
    font-size: 12px;
  }

  .series-card-lg>.cardArea_button_block {
    width: 100%;
    padding: 0;
  }


  .series-card-lg>.cardArea_button_block a {
    width: 80%;
    padding: 10px 0;
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .series-card-lg>.cardArea_button_block a.right-triangle-link {
    color: #e60039;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 12px;
    margin: 5px auto;
  }

  .series-card-lg>.cardArea_button_block a.right-triangle-link::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-style: solid;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.8em solid #e60039;
    border-right: 0;
    margin-right: 4px;
  }

  .series-card-lg.card.card--large .card__text {
    padding: 0 10px 10px 10px;
    margin-top: 2px;
  }


  /* 連載テキストリンク */
  .series-links {
    width: 90%;
    margin: auto;
  }

  .series-links p {
    color: black;
    font-weight: bold;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
  }

  .series-links-accordion {
    padding-top: 0px;
  }

  .series-links a {
    color: black;
    font-weight: bold;
    display: block;
  }

  .series-links-accordion span.tag-area-close-btn::after {
    content: "∧";
    display: inline-block;
    position: absolute;
    right: 30px;
    transform: scaleY(0.5);
  }

  /* =============================================
連載詳細ページ
 ============================================= */
  #series-detail-content .card.card--large {
    width: 100%;
  }

  #series-detail-content .series-card-xl .series-description {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
  }

  /* =============================================
WTとはページ
 ============================================= */
  .page-concept .title_box {
    width: 100%;
    margin-bottom: 25px;
    padding: 12px 0 5px 0;
    border-bottom: solid 2px #eeeeee;
  }

  /* ---------------------
 ページネーション
---------------------- */
  .l-pager {
    position: relative;
    padding: 28px 15px 23px;
    font-weight: bold;
    line-height: 26px;
  }

  .l-pager .anc {
    color: black;
    text-decoration: none;
  }

  .l-pager_prev {
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
    vertical-align: top;
    margin-right: 2px;
    background-color: white;
    color: #E60039;
    width: 30px;
    height: 30px;
  }

  .l-pager_next {
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
    vertical-align: top;
    margin-right: 2px;
    background-color: white;
    color: #E60039;
    width: 30px;
    height: 30px;
  }

  .l-pager_button .anc {
    display: block;
    position: relative;
    padding: 0;
    color: #1ab3b1;
  }

  .l-pager_last .anc {
    color: white;
  }

  .l-pager_prev .anc,
  .l-pager_next .anc {
    color: #1ab3b1;
  }

  .l-pager_prev .anc {
    padding-left: 19px;
  }

  .l-pager_button .anc::before {
    display: block;
    position: absolute;
    top: 0;
    width: 14px;
    height: 100%;
    background: no-repeat 0 center;
    background-size: 100% auto;
    content: "";
  }

  .l-pager_first .anc::before {
    top: -8px;
    left: 4px;
    transform: rotate(-135deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid #1ab3b1;
    border-right: 2px solid #1ab3b1;

    -webkit-transform: rotate(-135deg);
  }

  .l-pager_first .anc::after {
    display: block;
    position: absolute;
    top: -8px;
    left: 11px;
    transform: rotate(-135deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid #1ab3b1;
    border-right: 2px solid #1ab3b1;
    background: no-repeat 0 center;
    background-size: 100% auto;
    content: "";

    -webkit-transform: rotate(-135deg);
  }

  .l-pager_prev .anc::before {
    top: 7px;
    right: 3px;
    transform: rotate(-135deg);
    width: 11px;
    height: 11px;
    border-top: 2px solid #E60039;
    border-right: 2px solid #E60039;

    -webkit-transform: rotate(-135deg);
  }

  .l-pager_next .anc::before {
    top: 7px;
    right: 7px;
    transform: rotate(45deg);
    width: 11px;
    height: 11px;
    border-top: 2px solid #E60039;
    border-right: 2px solid #E60039;

    -webkit-transform: rotate(45deg);
  }

  .l-pager_number {
    display: table;
    margin: auto;
    text-align: center;
  }

  .l-pager_number_article {
    padding: 0;
  }

  .l-pager_number .button {
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
    vertical-align: top;
    margin-right: 2px;
    background-color: white;
    color: #E60039;
  }

  .l-pager_number .anc,
  .l-pager_number .current,
  .l-pager_number .point {
    display: block;
    width: 26px;
    border: solid 2px;
  }

  .l-pager_number .anc,
  .l-pager_number .point {
    color: #E60039;
    border-color: transparent;
  }

  .l-pager_number .current {
    width: 30px;
    height: 29px;
    border: none;
    color: white;
    background-color: #E60039;
  }
}

/* PC */

@media (min-width: 768px) {

  /*ヘッダー*/
  header div,
  header span,
  header h1,
  header p,
  header img,
  header ul,
  header li {
    margin: 0;
    padding: 0;
    outline: 0;
    background: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  header {
    background-color: white;
    line-height: 1.5;
    letter-spacing: 0;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  }

  header a {
    outline: none;
    display: inline-block;
  }

  header a:focus {
    outline: none;
  }

  header a img {
    text-decoration: none;
  }

  header a:link {
    color: #333;
    text-decoration: underline;
  }

  header a:visited {
    color: #333;
  }

  header a:hover {
    color: #333;
    text-decoration: none;
  }

  header a:active {
    color: #333;
  }

  header ul,
  ol {
    list-style-type: none;
  }

  #sub .push a {
    position: relative;
    top: 0;
  }

  #sub .push a:hover {
    opacity: 0.7;
  }

  #PCheader .inner,
  #PCnav-area .inner {
    width: 1024px;
    margin: 0 auto;
    position: relative;
  }

  #sub .clearfix::after {
    display: block;
    clear: both;
    content: "";
  }

  #PCheader .txt {
    font-size: 12px;
    left: -1px;
    position: absolute;
    top: 20px;
  }

  #PCheader .img {
    left: 252px;
    position: absolute;
    top: 2px;
  }

  #logo {
    left: 0;
    position: absolute;
    top: 40px;
  }

  #logo-type {
    right: 0;
    position: absolute;
    top: 14px;
  }

  #PCnav-area ul li#nav04 a.init-bottom {
    background: #ffdadf;
    border-right: 1px solid #ffdadf;
    border-left: 1px solid #ffdadf;
    color: #222;
  }

  #sub {
    right: 0;
    position: absolute;
    top: 48px;
  }

  #sub .link {
    float: left;
    margin: 1px 0 0 0;
    overflow: hidden;
  }

  #sub .link li {
    font-size: 12px;
    float: left;
  }

  #sub .btns {
    float: right;
  }

  #sub .btns li {
    display: inline-block;
    margin: 0 0 10px 10px;
    height: 27px;
    overflow: hidden;
  }

  #sub .btns li a {
    color: #fff;
    font-size: 12px;
    line-height: 27px;
    text-decoration: none;
  }

  #sub .btns .btn-mypage a {
    background: url(../images/btn_lpink_s.png) no-repeat top left;
    height: 27px;
    width: 110px;
  }

  #sub .btns .btn-mypage a span {
    padding: 0 0 0 27px;
  }

  #sub .btns .btn-regist a {
    background: url(../images/btn_grn_s.png) no-repeat top left;
    height: 27px;
    width: 110px;
  }

  #sub .btns .btn-regist a span {
    padding: 0 0 0 25px;
  }

  #sub .btns .btn-login a {
    background: url(../images/btn_pink_s.png) no-repeat top left;
    height: 27px;
    width: 110px;
  }

  #sub .btns .btn-login a span {
    padding: 0 0 0 32px;
  }

  #sub .btns .btn-logout {
    width: 100px;
    background: #fff;
  }

  #sub .btns .btn-logout a {
    background: url(../images/icn_arrow_05.png) no-repeat 8px center;
    border: 1px solid #000;
    display: block;
    font-size: 12px;
    height: 25px;
    line-height: 25px !important;
    padding: 0 9px;
    text-align: center;
  }

  #sub .btns .btn-logout a span {
    color: #333;
    display: inline-block;
    font-weight: bold;
    font-size: 12px;
  }

  #sub .btns .btn-logout:hover {
    background: #ccc;
  }

  #PCnav-area {
    padding: 86px 0 0;
    margin-bottom: 5px;
    border-bottom: 3px solid #d82035;
  }

  #PCnav-area ul#first-level {
    display: flex;
    flex-wrap: wrap;
  }

  #PCnav-area ul#first-level>li {
    display: inline-block;
    width: 25%;
    height: 40px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    z-index: 100;
  }

  #PCnav-area ul#first-level>li:last-child {
    border-right: none;
  }

  #PCnav-area ul#first-level>li>a {
    background: #d82035;
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
  }

  #PCnav-area ul#first-level>li:hover a {
    opacity: 0.8;
  }

  #PCnav-area ul#first-level li ul.second-level {
    width: 100%;
    background: #fff;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    visibility: hidden;
    opacity: 0;
  }

  #PCnav-area ul#first-level li ul.second-level li {
    width: 100%;
    height: 40px;
    color: #000;
    background: #fff;
    z-index: 100;
  }

  #PCnav-area ul#first-level li ul.second-level li a {
    text-decoration: none;
    color: #000;
    position: relative;
    font-weight: bold;
    display: block;
    font-size: 12px;
    text-align: left;
    margin: 0 15px;
    border-bottom: 1px solid #e6e6e6;
    line-height: 40px;
  }

  #PCnav-area ul#first-level li ul.second-level li a::after {
    content: "";
    position: absolute;
    right: 5px;
    top: 16px;
    width: 7px;
    height: 7px;
    border-top: 2px solid #d82035;
    border-right: 2px solid #d82035;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  #PCnav-area ul#first-level li ul.second-level li a:hover {
    opacity: 0.6;
  }

  #PCnav-area ul#first-level li:hover ul.second-level {
    border: 2px solid #e6e6e6;
    visibility: visible;
    opacity: 1;
  }


  /* フッター */
  #PCfooter {
    background: #fff;
    padding: 24px 0 0;
    position: relative;
    /* #pagetop 配置用 */
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
    font-size: 0;
  }

  #PCfooter a {
    color: inherit;
    text-decoration: underline;
  }

  #PCfooter a:hover {
    text-decoration: none;
  }

  #PCfooter dt {
    font-size: 12px;
    line-height: 18px;
  }

  #PCfooter div,
  #PCfooter ul,
  #PCfooter li,
  dl,
  dt,
  dd {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    letter-spacing: 0;
  }

  #PCfooter .inner {
    margin: 0 auto;
    width: 1024px;
  }

  #PCfooter .footer-overview {
    padding: 0 0 17px;
  }

  #PCfooter .footer-overview dt {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 4px;
  }

  #PCfooter .footer-overview dd {
    font-size: 10px;
    line-height: 1.667;
  }

  #PCfooter .footer-search {
    background: url(/th/pc/img/common/bdr_01.png) repeat-x left top;
    padding: 21px 0 13px;
  }

  #PCfooter .footer-search dt,
  #PCfooter .footer-search dd {
    line-height: 1;
    margin: 0 0 9px;
  }

  #PCfooter .footer-search dt {
    clear: left;
    float: left;
    width: 84px;
  }

  #PCfooter .footer-search dt a {
    color: #d82035;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    vertical-align: bottom;
  }

  #PCfooter .footer-search dt a:hover {
    text-decoration: underline;
  }

  #PCfooter .footer-search dd {
    float: left;
    width: 940px;
  }

  #PCfooter .footer-search dd ul {
    font-size: 0;
    vertical-align: top;
  }

  #PCfooter .footer-search dd ul li {
    display: inline-block;
    font-size: 12px;
  }

  #PCfooter .footer-about-block {
    background: url(/th/pc/img/common/bdr_01.png) repeat-x left top;
    padding: 19px 0 20px;
    width: 100%;
  }

  #PCfooter .footer-about-info {
    float: left;
    width: 868px;
  }

  #PCfooter .footer-about dt {
    font-weight: bold;
    margin: 0 0 3px;
  }

  #PCfooter .footer-about dd {
    line-height: 1.833;
  }

  #PCfooter .footer-about dd ul {
    font-size: 0;
    vertical-align: top;
  }

  #PCfooter .footer-about dd ul li {
    display: inline-block;
    font-size: 10px;
  }

  #PCfooter .footer-about .footer-company {
    font-size: 0;
  }

  #PCfooter .footer-about .footer-company p {
    display: inline-block;
    font-size: 10px;
    margin: 0 12px 0 0;
  }

  #PCfooter .footer-about .footer-company ul {
    display: inline-block;
  }

  #PCfooter .footer-about-info>.footer-mark-list {
    font-size: 0;
    height: 58px;
    margin: 17px 0 0;
  }

  #PCfooter .footer-about-info>.footer-mark-list li {
    display: inline-block;
    font-size: 10px;
    line-height: 1;
    vertical-align: bottom;
  }

  #PCfooter .footer-about-info .tosho {
    margin: 0 40px 0 0;
  }

  #PCfooter .footer-about-info .privacymark {
    margin: 0 30px 0 0;
  }

  #PCfooter .footer-about-info .privacymark .mark {
    float: left;
    width: 58px;
  }

  #PCfooter .footer-about-info .privacymark p {
    float: right;
    font-size: 10px;
    height: 48px;
    line-height: 1.7;
    margin: 10px 0 0 10px;
    vertical-align: bottom;
    width: 190px;
  }

  #PCfooter .footer-about-info .positive a {
    font-size: 10px;
    line-height: 1.4;
  }

  #PCfooter .footer-about-sns {
    float: right;
    padding: 3px 0 0;
    width: 156px;
  }

  #PCfooter .footer-about-sns ul {
    font-size: 0;
    text-align: right;
  }

  #PCfooter .footer-about-sns li {
    display: inline-block;
    font-weight: bold;
    margin: 0 0 0 15px;
  }

  #PCfooter .footer-about-sns li:first-child {
    margin: 0 0 0;
  }

  #PCfooter .footer-about-sns img:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
  }

  .clearfix {
    display: inline-block;
  }

  .clearfix::after {
    clear: both;
    display: block;
  }

  /*============================
    #copyright
    ============================*/
  #copyright {
    background: #000;
  }

  #copyright p {
    color: #fff;
    font-size: 10px;
    height: 26px;
    line-height: 26px;
    margin: 0 auto;
    text-align: center;
    width: 1024px;
  }

  /*============================
    #PCpagetop
    ============================*/
  #PCpagetop {
    bottom: 10px;
    height: 113px;
    margin-right: -523px;
    position: absolute;
    right: 50%;
    width: 129px;
  }

  #PCpagetop a {
    display: block;
  }

  /*============================
    fixed-bottom-right-btn
    ============================*/
  .fixed-bottom-right-btn.twitter {
    position: fixed;
    bottom: 56px;
    /*サイドメニューの右にボタンが表示されるように
  　記事コンテンツ左のマージン＋記事幅に位置調整
    (画面幅 - 記事コンテンツ幅)÷2＋記事幅 */
    left: calc((100vw - 980px) / 2 + 690px);
    z-index: 100;
  }

  .fixed-bottom-right-btn.twitter::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    background: #0f1419;
    border: solid 1px #CFD9DE;
    border-radius: 50%;
    top: 0;
    right: 0;
  }

  .fixed-bottom-right-btn.twitter::after {
    position: absolute;
    content: "";
    width: 22px;
    height: 23px;
    display: inline-block;
    background: url(../images/x_logo_white.png) no-repeat;
    background-size: 100%;
    vertical-align: middle;
    top: 11px;
    right: 12px;
  }

  .fixed-bottom-right-btn:hover {
    opacity: 0.7;
  }

  /* =============================================
 SCSS assets
============================================= */
  /* =============================================
 CSS assets
============================================= */
  @keyframes fadein {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @font-face {
    font-family: NotoSansCJKjp;
    font-weight: 400;
    font-style: normal;
    src: url("../font/NotoSansCJKjp-Regular.woff") format("woff");
  }

  /* =============================================
 Base / Reset
============================================= */
  * {
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
  }

  html,
  body {
    margin: 0;
    padding: 0;
    outline: 0;
    background: transparent;
  }

  body {
    margin: 0 auto;
    text-align: left;
    color: black;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 1px;
    font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Helvetica, Arial, Verdana, sans-serif;
  }

  img {
    border: none;
    vertical-align: bottom;
  }

  div,
  figure,
  p {
    margin: 0;
    padding: 0;
  }

  a {
    color: #2b9cd1;
    text-decoration: none;
    border: none;
    word-break: break-all;
    outline: none;
  }

  a:hover {
    text-decoration: underline;
  }

  /* =============================================
 Utility
============================================= */
  .fadein {
    animation: fadein 1s;
  }

  .sp_display {
    display: none;
  }

  .sp-header {
    display: none !important;
  }

  .sp-footer {
    display: none !important;
  }

  /* =============================================
 Layout
============================================= */
  main {
    margin: 0 auto;
    width: 980px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .cardArea.category_ranking {
    margin-right: 35px;
    width: 720px;
  }

  .cardArea.responsive-main-section {
    margin-right: 35px;
    width: 720px;
  }

  .cardArea.responsive-main-section .pc-cardArea-title {
    padding: 21px 21px 0 21px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }


  #main_area.WTheader-is-fixed {
    padding-top: 135px;
  }

  #single_post.WTheader-is-fixed {
    padding-top: 135px;
  }

  /* =============================================
 Common Parts
============================================= */
  h1 {
    font-size: 178%;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: left;
    margin: 0 0 9px 0;
  }

  h2 {
    clear: both;
    font-size: 125%;
    font-weight: bold;
    color: #e60039;
    line-height: 1.5;
    letter-spacing: 1.5px;
    border-left: solid 8px #e60039;
    padding-left: 10px;
    margin: 20px 0;
    text-align: left;
  }

  h3 {
    clear: both;
    font-size: 100%;
    font-weight: bold;
    color: #e60039;
    line-height: 1.5;
    margin: 15px 0;
  }

  h4 {
    font-size: 100%;
    font-weight: bold;
    color: #e60039;
    line-height: 1.5;
    margin: 15px 0;
  }

  .category-nav {
    margin: 0 auto 15px;
    padding: 0;
    text-align: center;
    font-size: 13px;
  }

  .category-nav li {
    list-style-type: none;
    display: inline;
    color: #e60039;
  }

  .category-nav a {
    color: #e60039;
    font-weight: bold;
  }

  .category-nav a:hover {
    text-decoration: none;
    border-style: none;
    border-bottom: solid 2px #e60039;
  }

  .responsive-h1 {
    text-align: center;
    padding: 21px;
    margin: 0 auto;
    color: #e60039;
    font-size: 26px;
    vertical-align: text-bottom;
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-weight: normal;
  }

  /* =============================================
 以下未分類
============================================= */
  .banner {
    margin: 20px auto;
  }

  .banner a {
    display: block;
  }

  .banner a:hover {
    opacity: 0.8;
  }

  .float_l {
    float: left;
  }

  .text_left {
    text-align: left;
  }

  .text_right {
    text-align: right;
  }

  .text_center {
    text-align: center;
  }

  .right_img {
    margin: 0 0 0 25px;
  }

  .left_img {
    margin: 0 25px 0 0;
    max-width: 16%;
    height: auto;
  }

  .center {
    margin: 0 auto;
    text-align: center;
  }

  .displaynone {
    display: none;
  }

  /*パンくず*/
  .bread_crumb {
    margin: 0 0 20px 0;
    padding: 0;
    width: 100%;
    font-size: 81%;
  }

  .bread_crumb li {
    list-style-type: none;
    display: inline;
  }

  .bread_crumb li::after {
    content: " ＞";
  }

  .bread_crumb .current::after {
    content: " ";
  }

  /* 次のページ */
  .nextpage-link {
    background-color: #e60039;
    display: flex;
    align-items: center;
    margin: 20px auto 0;
    padding: 10px 15px;
    font-size: 100%;
    color: white;
    letter-spacing: 1px;
  }

  .nextpage-link a {
    color: white;
    text-decoration: underline;
  }

  .nextpage-link a:hover {
    text-decoration: none;
  }

  .nextpage-link p {
    flex-shrink: 0;
    margin-right: 50px;
    position: relative;
  }

  .nextpage-link p::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: 0;
    top: 0;
    margin: auto;
    right: -23px;
  }

  .twitter-follow {
    margin: 0 auto;
    padding: 10px 0;
    background-color: #0f1419;
    border-radius: 5px;
    width: 240px;
    display: block;
    font-size: 12px;
    text-align: center;
    line-height: 1;
  }

  .twitter-follow:link,
  .twitter-follow:visited {
    color: white !important;
  }

  .twitter-follow::before {
    content: "";
    width: 18px;
    height: 19px;
    display: inline-block;
    background: url(../images/x_logo_white.png) no-repeat;
    background-size: 100%;
    vertical-align: middle;
    margin-right: 12px;
  }

  .share {
    padding-top: 30px;
    clear: both;
  }

  .share .twitter-follow {
    margin-bottom: 30px;
  }

  .share__head {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
  }

  .share__list {
    width: 476px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 20px;
    padding: 0;
  }

  .share__list li {
    width: 22.5%;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.075rem;
    background: white no-repeat center center;
    background-size: 21px;
    border-radius: 3px;
    border: 1px solid #c9c9c9;
    height: 52px;
    list-style: none;
  }

  .share__list li:last-child {
    margin-right: 0;
  }

  .share__list li:hover {
    background-color: #eee;
  }

  .share__list li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  .share__list li.twitter {
    background-image: url(../images/x_logo_black.png);
  }

  .share__list li.line {
    background-image: url(../images/line.png);
    background-size: 38px;
  }

  .share__list li.facebook {
    background-image: url(../images/facebook.png);
  }

  .share__list li.hatena {
    background-image: url(../images/hatebu.png);
  }

  .brandpanel {
    margin: 0 auto;
    width: 720px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .brandpanel ul,
  .brandpanel li {
    margin: 0;
    padding: 0;
    list-style: none;
    transition: all 0.5s ease;
  }

  .brandpanel .panels {
    border-right: 1px solid white;
    margin-right: 0.5px;
    position: relative;
    width: 508px;
    height: 267px;
  }

  .brandpanel .panels:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
  }

  .brandpanel .panels li {
    opacity: 0;
    position: absolute;
    z-index: 0;
  }

  .brandpanel .panels li.is-active {
    opacity: 1;
    z-index: 10;
  }

  .brandpanel .panels a {
    display: block;
    text-decoration: none;
    background-color: white;
  }

  .brandpanel .tabs {
    width: 208px;
    height: 267px;
    display: flex;
    flex-direction: column;
  }

  .brandpanel .tabs li {
    display: block;
    font-size: 90%;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 0;
    width: 208px;
    height: 24.6%;
    background-color: #f0f0f0;
    margin-bottom: 2px;
  }

  .brandpanel .tabs li:last-of-type {
    margin: 0;
  }

  .brandpanel .tabs li.is-active {
    color: white;
    background-color: #e60039;
  }

  .brandpanel .tabs li.is-active a {
    color: white;
  }

  .brandpanel .tabs a {
    padding: 0 15px;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 13px;
    color: black;
    line-height: 1.5;
  }

  .brandpanel .tabs a:hover {
    text-decoration: none;
  }

  .brandpanel .tabs span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  #js_WTheader.WTheader {
    display: flex;
    justify-content: center;
    width: 750px;
    height: 135px;
    border-bottom: solid 2px #e4e4e4;
  }

  #js_WTheader .WTheader a {
    display: inline-block;
    color: inherit;
  }

  #js_WTheader .WTheader__nav {
    margin-right: 40px;
    text-align: center;
  }

  #js_WTheader .WTheader__nav .logo {
    text-align: center;
    font-size: 14px;
    line-height: 1.9;
  }

  #js_WTheader .WTheader__nav .logo a {
    display: block;
    margin-bottom: 9px;
  }

  #js_WTheader .WTheader__date {
    width: 86px;
    height: 98px;
    background-image: url("../images/back_date.gif");
    font-size: 11px;
    color: white;
    text-align: center;
    letter-spacing: 0;
  }

  #js_WTheader .WTheader__date .big-letter {
    font-size: 40px;
    display: block;
    margin: -5px 0 -15px;
  }

  #js_WTheader.WTheader.fixed {
    background: white;
    margin: 0;
    padding: 0 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 60px;
    animation: fadein 0.5s;
    box-shadow: 1px 1px 10px rgba(58, 58, 58, 0.1);
  }

  #js_WTheader.WTheader.fixed .WTheader__nav {
    margin: 0 auto;
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #js_WTheader.WTheader.fixed .WTheader__nav .logo {
    margin: 5px 0 0;
  }

  #js_WTheader.WTheader.fixed .WTheader__nav .logo:hover {
    opacity: 0.8;
  }

  #js_WTheader.WTheader.fixed .WTheader__nav .logo img {
    width: 250px;
    height: 45px;
  }

  #js_WTheader.WTheader.fixed .WTheader__nav .category-nav {
    margin: 0;
  }

  #js_WTheader.WTheader.fixed .WTheader__nav li a {
    padding: 12px 0 5px;
  }

  #js_WTheader.WTheader.fixed .WTheader__nav li a:hover {
    padding-bottom: 0;
  }

  #js_WTheader.WTheader.fixed .WTheader__date {
    display: none;
  }

  /* ---------------------
ランキングページ
---------------------- */
  #ranking-content {
    width: 720px;
    margin: 0 auto 10px;
    padding: 25px 18px 10px;
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #ranking-content .card .title {
    border: none;
    padding-left: 0;
  }

  /* カテゴリーランキングボタン */
  .ranking-buttons {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    margin: 10px 5px;
    border-bottom: #aaa solid 0.5px;
  }

  .ranking-buttons::-webkit-scrollbar {
    /* スクロールバーの高さを調整 */
    height: 6px;
  }

  .ranking-buttons::-webkit-scrollbar-thumb {
    /* スクロールバーの色 */
    background-color: #aaa;
    border-radius: 10px;
  }

  .ranking-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 2px solid #333333;
    border-radius: 100px;
    opacity: 1;
    margin-right: 5px;
    margin-left: 5px;
    color: #000;
  }

  .ranking-btn:hover {
    background-color: #E50038;
    font-weight: bold;
    border: 2px solid #E50038;
    color: #fff;
  }

  /* 選択中のカテゴリを強調 */
  .ranking-btn.active {
    background-color: #E50038;
    font-weight: bold;
    border: 2px solid #E50038;
    color: #fff;
  }

  /* 期間選択ランキングボタン */
  .ranking-period {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    margin: 0 20px 30px 0;
  }

  .ranking-period label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
    flex-direction: row-reverse;
    font-weight: bold;
  }

  /* カスタムラジオボタン（非選択時） */
  .ranking-period label::before {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid #000000;
    /* 非選択時の枠線 */
    background: #FFFFFF no-repeat padding-box;
    border-radius: 50%;
    display: inline-block;
  }

  /* 選択されているとき（枠が太くなる） */
  .ranking-period input[type="radio"]:checked+label::before {
    box-shadow: inset 0 0 0 2px #000000;
    /* 内側に太い枠線 */
  }

  /* ---------------------
 記事 カード型リンク
---------------------- */
  .cardArea h2>img {
    vertical-align: middle;
    height: 1.8em;
    width: auto;
    margin-right: 5px;
  }

  .cardArea .logo {
    margin: 0 auto 15px auto;
    color: #e60039;
    font-size: 14px;
    text-align: center;
    vertical-align: top;
  }


  .cardArea_button_block {
    padding: 20px 40px 25px;
    text-align: center;
    width: 100%;
  }

  .cardArea_button_block a {
    display: inline-block;
    width: 240px;
    background-color: #E60039;
    color: white;
    padding: 10px 0;
    border-radius: 20px;
    font-weight: bold;
    position: relative;
  }

  .cardArea_button_block span {
    display: inline-block;
    width: 240px;
    background-color: #E60039;
    color: white;
    padding: 10px 0;
    border-radius: 20px;
    font-weight: bold;
    position: relative;
  }

  .cardArea_button_block a.right-arrow-btn::after {
    content: "＞";
    display: inline-block;
    position: absolute;
    right: 30px;
    transform: scaleX(0.5);
  }

  .cardArea_button_block span.tag-area-close-btn::after {
    content: "∧";
    display: inline-block;
    position: absolute;
    right: 30px;
    transform: scaleY(0.5);
  }

  .cardArea_button_block span.tag-area-open-btn::after {
    content: "∨";
    display: inline-block;
    position: absolute;
    right: 30px;
    transform: scaleY(0.5);
  }

  .cardArea.ranking {
    background: #E60039;
    padding: 30px 15px;
  }

  .cardArea.ranking>div {
    background: white;
    padding: 20px 10px;
    border-radius: 10px;
  }

  .moreCardArea {
    display: none;
  }

  .moreCardArea.isopen {
    display: block;
  }

  .card {
    display: flex;
    flex-direction: column;
    width: 220px;
    border-bottom: 1px solid #e7e7e7;
    margin-bottom: 20px;
    padding: 0;
    box-shadow: 0 0 20px #ebd3c1;
    background-color: white;
    position: relative;
  }

  .card a {
    flex-wrap: wrap;
    text-decoration: none;
  }

  .card.card--large .card__imgBox {
    width: 100%;
  }

  .card .date {
    display: block;
    margin: 0 8px 0 0;
    color: #8a8a8a;
  }

  .card .category-tag {
    padding: 0px 10px;
    background: #e60039;
    color: white;
    line-height: 1.6;
    vertical-align: middle;
  }

  .card .post-meta {
    align-items: center;
    width: 100%;
    display: flex;
    font-size: 11px;
    margin-bottom: 10px;
  }

  .card>a:not(.card__head) {
    display: flex;
    width: 100%;
  }

  .card__imgBox {
    position: relative;
    width: 100%;
    margin: auto;
  }

  .card__imgBox figure {
    display: block;
    position: relative;
    height: 0;
    padding-top: calc(630 / 1200 * 100%);
    overflow: hidden;
  }

  .card__imgBox figure img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: auto;
  }

  .card__imgBox .ribbon {
    position: absolute;
    top: -2%;
    left: 4%;
    width: 22%;
    height: auto;
  }

  .cardArea .card .card__head.rank {
    position: absolute;
    top: -20px;
    left: -5px;
    z-index: 10;
    width: 30px;
    height: 33px;
    text-align: center;
    line-height: 30px;
  }

  .card .tag-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 15px 10px;
    max-height: 23px;
    margin-top: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    width: 100%;
    padding: 0 10px;
    list-style: none;
    margin-bottom: 7px;
  }

  .card .tag {
    border: 1px solid #333333;
    border-radius: 17px;
    background: white;
  }

  .card .tag a {
    display: block;
    height: 100%;
    padding: 0px 4px;
    color: black;
    text-decoration: none;
    font-size: 11px;
  }

  .cardArea .card:nth-of-type(1) .card__head.rank {
    background: url(../images/icon_crown_1.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(2) .card__head.rank {
    background: url(../images/icon_crown_2.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(3) .card__head.rank {
    background: url(../images/icon_crown_3.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card:nth-of-type(n+4):nth-of-type(-n+30) .card__head.rank {
    background: url(../images/icon_crown.png) no-repeat;
    background-size: contain;
  }

  .cardArea .card .card__head.card__head.rank::after {
    color: white;
    font-size: 14px;
    font-weight: bolder;
    position: absolute;
    top: calc(50% + 4px);
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
  }

  .cardArea .card:nth-of-type(1) .card__head.rank::after {
    content: "1";
  }

  .cardArea .card:nth-of-type(2) .card__head.rank::after {
    content: "2";
  }

  .cardArea .card:nth-of-type(3) .card__head.rank::after {
    content: "3";
  }

  .cardArea .card:nth-of-type(4) .card__head.rank::after {
    content: "4";
  }

  .cardArea .card:nth-of-type(5) .card__head.rank::after {
    content: "5";
  }

  .cardArea .card:nth-of-type(6) .card__head.rank::after {
    content: "6";
  }

  .cardArea .card:nth-of-type(7) .card__head.rank::after {
    content: "7";
  }

  .cardArea .card:nth-of-type(8) .card__head.rank::after {
    content: "8";
  }

  .cardArea .card:nth-of-type(9) .card__head.rank::after {
    content: "9";
  }

  .cardArea .card:nth-of-type(10) .card__head.rank::after {
    content: "10";
  }

  .cardArea .card:nth-of-type(11) .card__head.rank::after {
    content: "11";
  }

  .cardArea .card:nth-of-type(12) .card__head.rank::after {
    content: "12";
  }

  .cardArea .card:nth-of-type(13) .card__head.rank::after {
    content: "13";
  }

  .cardArea .card:nth-of-type(14) .card__head.rank::after {
    content: "14";
  }

  .cardArea .card:nth-of-type(15) .card__head.rank::after {
    content: "15";
  }

  .cardArea .card:nth-of-type(16) .card__head.rank::after {
    content: "16";
  }

  .cardArea .card:nth-of-type(17) .card__head.rank::after {
    content: "17";
  }

  .cardArea .card:nth-of-type(18) .card__head.rank::after {
    content: "18";
  }

  .cardArea .card:nth-of-type(19) .card__head.rank::after {
    content: "19";
  }

  .cardArea .card:nth-of-type(20) .card__head.rank::after {
    content: "20";
  }

  .cardArea .card:nth-of-type(21) .card__head.rank::after {
    content: "21";
  }

  .cardArea .card:nth-of-type(22) .card__head.rank::after {
    content: "22";
  }

  .cardArea .card:nth-of-type(23) .card__head.rank::after {
    content: "23";
  }

  .cardArea .card:nth-of-type(24) .card__head.rank::after {
    content: "24";
  }

  .cardArea .card:nth-of-type(25) .card__head.rank::after {
    content: "25";
  }

  .cardArea .card:nth-of-type(26) .card__head.rank::after {
    content: "26";
  }

  .cardArea .card:nth-of-type(27) .card__head.rank::after {
    content: "27";
  }

  .cardArea .card:nth-of-type(28) .card__head.rank::after {
    content: "28";
  }

  .cardArea .card:nth-of-type(29) .card__head.rank::after {
    content: "29";
  }

  .cardArea .card:nth-of-type(30) .card__head.rank::after {
    content: "30";
  }


  .card__text {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 12px;
    padding: 0 10px 20px 10px;
  }

  .card__text .title {
    display: -webkit-box;
    height: 4.8em;
    margin: 0;
    overflow: hidden;
    color: black;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .card:hover {
    text-decoration: none;
  }

  .card a:hover {
    text-decoration: none;
  }

  .card>a:hover .title {
    text-decoration: underline;
  }

  #ranking-content::after {
    content: " ";
    display: block;
    width: 220px;
  }

  .banner_area {
    margin: 40px 0 20px;
  }

  .banner_area img {
    width: 100%;
  }

  /* サイドバー */
  .sidebar {
    width: 200px;
  }

  .sidebar .banner {
    margin: 15px 0;
  }

  .sidebar .banner:first-of-type {
    margin-top: 0;
  }

  .sidebar__head {
    font-size: 90%;
    font-weight: bold;
    line-height: 25px;
    letter-spacing: 0;
    position: relative;
  }

  .sidebar__head::before {
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 0;
  }

  .sidebar__head.search {
    padding: 5px 0 0 52px;
  }

  .sidebar__head.search::before {
    content: url(../images/search.png);
    margin-top: 2px;
  }

  .sidebar__head.ranking {
    border-bottom: 1px solid #e1f0b8;
    padding-left: 61px;
  }

  .sidebar__head.ranking::before {
    content: url(../images/ranking.jpg);
  }

  .sidebar__head.new {
    padding: 5px 0 0 39px;
    border-bottom: 1px solid #fbc7ce;
  }

  .sidebar__head.new::before {
    content: url(../images/new.jpg);
    margin-top: 1px;
  }

  .sidebar__cardArea {
    margin: 10px auto 10px;
  }

  .sidebar__cardArea .list-card {
    padding: 7px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .sidebar__cardArea .list-card__imgBox {
    margin: 0 10px 11px 0;
    font-size: 0;
    position: relative;
  }

  .sidebar__cardArea .list-card__imgBox::after {
    content: attr(data-category);
    display: inline-block;
    position: absolute;
    left: -12px;
    bottom: -12px;
    color: white;
    background: #e60039;
    width: 80px;
    height: 16px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    transform: scale(0.7);
  }

  .sidebar__cardArea .list-card__text {
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.2;
    flex: 1;
  }

  .sidebar__cardArea .list-card__text .date {
    color: black;
    text-align: right;
    margin: 1px 5px;
  }

  .sidebar__cardArea .list-card__text .title {
    color: #2b9cd1;
    text-decoration: none;
    border: none;
    outline: none;
    height: 35px;
    word-break: break-all;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .sidebar__cardArea .list-card:hover {
    opacity: 0.8;
    text-decoration: none;
  }

  .sidebar__cardArea .list-card:hover .title {
    text-decoration: underline;
  }

  .sidebar__cardArea.new {
    margin: 10px -10px 30px;
    padding: 0 10px 15px;
    background-color: #fbe8eb;
  }

  .sidebar__cardArea.new .list-card {
    border-bottom: 1px solid #fbc7ce;
  }

  .sidebar__cardArea.ranking .list-card {
    border-bottom: 1px solid #e1f0b8;
  }

  .sidebar__cardArea.ranking .list-card__number {
    width: 100%;
    color: black;
    font-weight: bold;
    line-height: 1.4;
  }

  .sidebar__cardArea.ranking .list-card__imgBox {
    margin: 0 10px 0 0;
  }

  .sidebar__cardArea.ranking .list-card__imgBox::after {
    content: none;
  }

  .sidebar .search_box {
    margin-bottom: 25px;
  }

  .sidebar .search_box .field {
    color: black !important;
    padding: 2px;
    font-family: Arial, sans-serif;
    border: solid 1px #ccc;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 160px;
  }

  .sidebar .search_box .submit {
    width: 35px;
    height: 22px;
    background: url(../images/mushi.png) center no-repeat;
    border-radius: 5px;
    border: 0;
    cursor: pointer;
  }

  .sidebar .search_box .submit:hover {
    opacity: 0.7;
  }

  .sitemap {
    margin-bottom: 20px;
  }

  .sidebar hr {
    border: none;
    border-bottom: 1px solid #b5b5b5;
    margin: 20px 0;
  }

  .sidebar .utility-links {
    display: block;
    margin: 10px 0;
    text-align: right;
    list-style-type: none;
    padding: 0;
  }

  .sidebar .utility-links li {
    margin-bottom: 10px;
  }

  .sidebar .utility-links li a {
    font-weight: bold;
    font-size: 13px;
    line-height: 1;
    color: #333333;
  }

  .sidebar .utility-links li a::after {
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    content: "";
    background: url(../images/icon_next.png) no-repeat;
    background-size: contain;
    margin-right: 5px;
    margin-bottom: 4px;
  }

  .sidebar .tags {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    height: calc((1em + 8px) * 4);
    overflow: hidden;
    line-height: 1em;
    padding: 0;
    list-style-type: none;
  }

  .sidebar .tags li {
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .sidebar .tags li a {
    font-size: 11px;
    color: inherit;
  }

  .sidebar .tag-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .sidebar .tag-accordion {
    margin-top: 13px;
    text-align: center;
    font-size: 13px;
    text-decoration: underline;
  }

  .sidebar .tag-accordion span:hover {
    cursor: pointer;
    font-weight: bold;
  }

  .sidebar .tag-accordion span {
    position: relative;
  }

  .sidebar .tag-accordion span.close:after {
    background-image: url(../images/down_arrow.png);
    position: absolute;
    top: -1px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-size: contain;
    width: 20px;
    height: 20px;
    content: '';
    -webkit-transition: -webkit-transform .4s;
    transition: transform .4s;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
  }

  .sidebar .sidebar_button_block {
    text-align: center;
    margin-bottom: 30px;
  }

  .sidebar .sidebar_button_block a {
    display: inline-block;
    width: 80%;
    background-color: #E60039;
    color: white;
    border-radius: 20px;
    position: relative;
    font-size: 12px;
    padding: 2px 0;
  }

  .sidebar .sidebar_button_block a.right-arrow-btn::after {
    content: "＞";
    display: inline-block;
    position: absolute;
    right: 15px;
    transform: scaleX(0.5);
  }

  /* =============================================
連載一覧ページ
 ============================================= */
  #series-content {
    width: 720px;
    margin: 0 auto 10px;
    padding: 25px 18px 10px;
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #series-content::after {
    content: " ";
    display: block;
    width: 220px;
  }

  /* 連載特大カード(PCは連載大カードと同じレイアウトとして表示する) */
  .series-card-xl .series-area {
    height: 100%;
  }

  .series-card-xl .series-title {
    width: 100%;
    text-decoration: none;
    height: auto;
    max-height: 4.8em;
    border: none;
    padding: 0;
  }

  #series-content .series-card-xl .series-description {
    display: none !important;
  }

  .series-card-xl .series-posts-area {
    display: none !important;
  }

  .series-card-xl .latest-date {
    text-decoration: none;
    color: #E60039;
    margin-bottom: 0;
    font-size: 12px;
  }

  .series-card-xl.card.card--large .card__text {
    padding: 0 10px 10px 10px;
    margin-top: 2px;
  }

  .series-card-xl>.cardArea_button_block {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }

  .series-card-xl>.cardArea_button_block a {
    width: 90%;
    margin-bottom: 5px;
    padding: 0;
  }

  .series-card-xl>.cardArea_button_block a.right-arrow-btn::after {
    content: none;
  }

  .series-card-xl>.cardArea_button_block a.right-triangle-link {
    color: #e60039;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 12px;
  }

  .series-card-xl>.cardArea_button_block a.right-triangle-link::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-style: solid;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.8em solid #e60039;
    border-right: 0;
    margin-right: 4px;
  }

  .series-card-xl>.cardArea_button_block a.right-triangle-link:hover {
    text-decoration: underline;
  }

  /* 連載大カード */
  .series-card-lg .series-area {
    height: 100%;
  }

  .series-card-lg .series-title {
    width: 100%;
    text-decoration: none;
    height: auto;
    max-height: 4.8em;
    border: none;
    padding: 0;
  }

  .series-card-lg .latest-date {
    text-decoration: none;
    color: #E60039;
    margin-bottom: 0;
    font-size: 12px;
  }

  .series-card-lg.card.card--large .card__text {
    padding: 0 10px 10px 10px;
    margin-top: 2px;
  }

  .series-card-lg>.cardArea_button_block {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
  }


  .series-card-lg>.cardArea_button_block a {
    width: 90%;
    margin-bottom: 5px;
    padding: 0;
  }

  .series-card-lg>.cardArea_button_block a.right-arrow-btn::after {
    content: none;
  }


  .series-card-lg>.cardArea_button_block a.right-triangle-link {
    color: #e60039;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    font-size: 12px;
  }

  .series-card-lg>.cardArea_button_block a.right-triangle-link:hover {
    text-decoration: underline;
  }

  .series-card-lg>.cardArea_button_block a.right-triangle-link::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-style: solid;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.8em solid #e60039;
    border-right: 0;
    margin-right: 4px;
  }

  /* テキストリンク */
  .series-links {
    width: 90%;
    margin: auto;
  }

  .series-links p {
    color: black;
    font-weight: bold;
    border-bottom: 2px solid #000;
    margin-bottom: 20px;
  }

  .series-links-accordion {
    padding-top: 0px;
  }

  .series-links a {
    color: black;
    font-weight: bold;
    display: block;
  }

  .series-links-accordion span {
    padding: 5px 0;
  }

  .series-links-accordion span:hover {
    cursor: pointer;
  }

  /* =============================================
連載詳細ページ
 ============================================= */
  #series-detail-content .series-posts-area {
    width: 720px;
    margin: 0 auto 10px;
    padding: 25px 18px 10px;
    background: #eee;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #series-detail-content .series-posts-area::after {
    content: " ";
    display: block;
    width: 220px;
  }

  #series-detail-content .card.card--large {
    width: 100%;
  }

  #series-detail-content .series-card-xl .series-description {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: initial;
    overflow: visible;
  }

  #series-detail-content .card .title {
    border: none;
    padding-left: 0;
  }

  /* =============================================
WTとはページ
 ============================================= */
  .page-concept .title_box {
    border-bottom: solid 2px #e4e4e4;
    margin: 10px 0 20px;
    padding: 5px 0 15px;
    width: 100%;
  }

  /* ---------------------
 ページネーション
---------------------- */
  .l-pager {
    position: relative;
    padding: 28px 15px 23px;
    font-weight: bold;
    line-height: 26px;
  }

  .l-pager .anc {
    color: black;
    text-decoration: none;
  }

  .l-pager_prev {
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
    vertical-align: top;
    margin-right: 2px;
    background-color: white;
    color: #E60039;
    width: 30px;
    height: 30px;
  }

  .l-pager_next {
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
    vertical-align: top;
    margin-right: 2px;
    background-color: white;
    color: #E60039;
    width: 30px;
    height: 30px;
  }

  .l-pager_button .anc {
    display: block;
    position: relative;
    padding: 0;
    color: #1ab3b1;
  }

  .l-pager_last .anc {
    color: white;
  }

  .l-pager_prev .anc,
  .l-pager_next .anc {
    color: #1ab3b1;
  }

  .l-pager_prev .anc {
    padding-left: 19px;
  }

  .l-pager_button .anc::before {
    display: block;
    position: absolute;
    top: 0;
    width: 14px;
    height: 100%;
    background: no-repeat 0 center;
    background-size: 100% auto;
    content: "";
  }

  .l-pager_first .anc::before {
    top: -8px;
    left: 4px;
    transform: rotate(-135deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid #1ab3b1;
    border-right: 2px solid #1ab3b1;

    -webkit-transform: rotate(-135deg);
  }

  .l-pager_first .anc::after {
    display: block;
    position: absolute;
    top: -8px;
    left: 11px;
    transform: rotate(-135deg);
    width: 15px;
    height: 15px;
    border-top: 2px solid #1ab3b1;
    border-right: 2px solid #1ab3b1;
    background: no-repeat 0 center;
    background-size: 100% auto;
    content: "";

    -webkit-transform: rotate(-135deg);
  }

  .l-pager_prev .anc::before {
    top: 7px;
    right: 3px;
    transform: rotate(-135deg);
    width: 11px;
    height: 11px;
    border-top: 2px solid #E60039;
    border-right: 2px solid #E60039;

    -webkit-transform: rotate(-135deg);
  }

  .l-pager_next .anc::before {
    top: 7px;
    right: 7px;
    transform: rotate(45deg);
    width: 11px;
    height: 11px;
    border-top: 2px solid #E60039;
    border-right: 2px solid #E60039;

    -webkit-transform: rotate(45deg);
  }

  .l-pager_number {
    display: table;
    margin: auto;
    text-align: center;
  }

  .l-pager_number_article {
    padding: 0;
  }

  .l-pager_number .button {
    display: inline-block;
    padding: 0 3px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0;
    vertical-align: top;
    margin-right: 2px;
    background-color: white;
    color: #E60039;
  }

  .l-pager_number .anc,
  .l-pager_number .current,
  .l-pager_number .point {
    display: block;
    width: 26px;
    border: solid 2px;
  }

  .l-pager_number .anc,
  .l-pager_number .point {
    color: #E60039;
    border-color: transparent;
  }

  .l-pager_number .current {
    width: 30px;
    height: 29px;
    border: none;
    color: white;
    background-color: #E60039;
  }
}