@charset "UTF-8";

/*女の転職ヘッダー*/
/*============================
#wrap
============================*/
#wrap {
  padding-top: 58px;
}

/*============================
#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-tab-area
============================*/
#nav-tab-area {
  display: none;
  position: relative;
  height: 0;
}

#nav-tab-area:after {
  display: block;
  position: absolute;
  top: 48px;
  right: 33%;
  z-index: 9999;
  width: calc(100vw/3);
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background-color: #d82035;
  content: "";
}

#nav-tab-area .nav-tab {
  position: absolute;
  top: 0;
  left: calc(-100vw/3);
  overflow: hidden;
  border-bottom: 1px solid #eeeeee;
}

#nav-tab-area .nav-tab li {
  display: block;
  opacity: 1;
  position: relative;
  float: left;
  width: calc(100vw/3);
  height: 48px;
  margin-left: 0;
  padding-top: 17px;
  padding-bottom: 15px;
  font-weight: bold;
  font-size: 12px;
  line-height: .8em;
  text-align: center;
}

@media only screen and (max-width:350px) {
  #nav-tab-area .nav-tab li {
    font-size: 10px;
  }
}

#nav-tab-area .nav-tab-item {
  color: #bbbbbb;
}

#nav-tab-area .nav-tab-item span {
  display: block;
  position: absolute;
  top: 14px;
  left: 81.5%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d82035;
  color: #ffffff;
  font-weight: bold;
  font-size: 8px;
  line-height: 12px;
  text-align: center;
}

@media only screen and (min-width:700px) {
  #nav-tab-area .nav-tab-item span {
    left: 67%;
  }
}

@media only screen and (min-width:920px) {
  #nav-tab-area .nav-tab-item span {
    left: 63%;
  }
}

#nav-tab-area .current-tab {
  color: #d82035;
}

/*============================
#nav-menu-area
============================*/
#nav-menu-area {
  position: relative;
  overflow: hidden;
}

#nav-menu-area .nav-menu {
  position: absolute;
  top: 0;
  left: -200vw;
  width: 700vw;
  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%;
}

nu-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;
}

/* あなたにおすすめメニュー */
#colored-link-area {
  margin-top: 24px;
}

#colored-link-area .colored-link {
  position: relative;
  height: 50px;
  margin: 0 auto 14px auto;
  padding: 6px;
  border-radius: 5px;
  background-color: #ffeff1;
}

#colored-link-area .colored-link a {
  display: flex;
}

#colored-link-area .colored-link a::after {
  display: block;
  position: absolute;
  top: 16px;
  right: 25px;
  font-size: 13px;
  content: ">";
}

@media only screen and (max-width:350px) {
  #colored-link-area .colored-link a::after {
    right: 18px;
  }
}

#colored-link-area .colored-link-icon {
  width: 14px;
  height: 14px;
  margin: 12px;
}

#colored-link-area .colored-link-subtext {
  display: block;
  height: 10px;
  margin-left: 0;
}

#colored-link-area .recommend-subtext {
  width: 40px;
}

#colored-link-area .matching-subtext {
  width: 31px;
}

#colored-link-area .wish-subtext {
  width: 16px;
}

#colored-link-area .ranking-subtext {
  width: 27px;
}

#colored-link-area .colored-link-text {
  margin-top: 2px;
  color: #333333;
  font-weight: bold;
  font-size: 14px;
}

#colored-link-area .colored-link-text span {
  font-weight: bold;
  font-size: 12px;
}

#colored-link-area .nav-new-icon {
  position: absolute;
  top: 18px;
  left: 200px;
  width: 37px;
  height: 15px;
  padding-top: 1.3px;
  border-radius: 2px;
  background-color: #d82035;
  color: #ffffff;
  font-weight: bold;
  font-size: 8px;
  text-align: center;
}

.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;
}


/* =============================================
 SCSS assets
============================================= */
/* =============================================
 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: 500px;
  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;
}

h4 {
  clear: both;
  margin: 14px 0;
  color: #e60039;
  font-weight: bold;
  font-size: 100%;
  line-height: 1.5;
  letter-spacing: 0;
}

.list_title {
  clear: both;
  padding: 16px 0;
  padding-left: 10px;
  border-left: 0;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: .5px;
  text-align: center;
}

.list_title .title {
  padding-bottom: 3px;
  border-bottom: 3px solid #1ab3b1;
  color: #1ab3b1;
  font-weight: bold;
}

.tag_list_description {
  padding: 0 20px;
}

.nextpage-link {
  display: flex;
  align-items: center;
  margin: 0 auto 25px;
  padding: 10px;
  background-color: #1ab3b1;
  color: white;
  font-size: 100%;
  letter-spacing: 1px;
}

.nextpage-link p {
  flex-shrink: 0;
  position: relative;
  width: 96px;
  margin: 0;
}

.nextpage-link p::after {
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid white;
  border-right: 1px solid white;
  content: "";

  -webkit-transform: rotate(45deg);
}

.nextpage-link a {
  color: white;
  text-decoration: underline;
}

.nextpage-link a a:hover {
  text-decoration: none;
}

/* ---------------------
 ページネーション
---------------------- */
.l-pager {
  position: relative;
  padding: 28px 15px 23px;
  font-weight: bold;
  line-height: 26px;
}

.l-pager .anc {
  color: black;
  text-decoration: none;
}

.l-pager_button {
  /* transform: translateY(-50%);
  font-size: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%); */
}

.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;
}

/* ---------------------
 記事 カード型リンク
---------------------- */
.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 .content_item .less_than_no5 {
  display: table-cell;
  position: relative;
  padding: 22px 10px 10px;
  vertical-align: top;
}

.cardArea .category_ranking_block .data {
  padding: 6px 10px 0;
}

.cardArea .category_runningStory_block .data {
  padding: 8px 10px 0;
}

.cardArea .content_item .caption.text_js {
  height: 5em;
}

.cardArea .category_ranking_block .caption {
  margin-bottom: 0;
}

.cardArea .category_runningStory_block .caption {
  margin-bottom: 0;
}

.cardArea .content_item .caption a {
  color: black;
}

.cardArea .content_item .caption a:hover {
  text-decoration: underline;
}

.cardArea .r_box {
  border-left: solid 5px #eeeeee;
}

.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 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;
  align-content: center;
  position: relative;
  width: 90%;
  margin: auto;
  padding: 7px 0;
  border-bottom: 1px solid #e7e7e7;
}

.card.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;
}

.card.card--large .post-meta {
  font-size: 13px;
}

.post-meta {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  flex-wrap: wrap;
  font-size: 10px;
}



.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;
}

.card__imgBox .ribbon {
  position: absolute;
  top: -2%;
  left: 4%;
  width: 22%;
  height: auto;
}

.cardArea.ranking .card {
  width: 100%;
}

.cardArea.ranking .card .card__head.rank {
  position: absolute;
  top: -20px;
  left: -5px;
  z-index: 10;
  width: 30px;
  height: 33px;
  text-align: center;
  line-height: 30px;
}

.cardArea.ranking .card:nth-of-type(1) .card__head.rank {
  background: url(../images/icon_crown_1.png) no-repeat;
  background-size: contain;
}

.cardArea.ranking .card:nth-of-type(2) .card__head.rank {
  background: url(../images/icon_crown_2.png) no-repeat;
  background-size: contain;
}

.cardArea.ranking .card:nth-of-type(3) .card__head.rank {
  background: url(../images/icon_crown_3.png) no-repeat;
  background-size: contain;
}

.cardArea.ranking .card:nth-of-type(n+4):nth-of-type(-n+10) .card__head.rank {
  background: url(../images/icon_crown.png) no-repeat;
  background-size: contain;
}

.cardArea.ranking .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.ranking .card:nth-of-type(1) .card__head.rank::after {
  content: "1";
}

.cardArea.ranking .card:nth-of-type(2) .card__head.rank::after {
  content: "2";
}

.cardArea.ranking .card:nth-of-type(3) .card__head.rank::after {
  content: "3";
}

.cardArea.ranking .card:nth-of-type(4) .card__head.rank::after {
  content: "4";
}

.cardArea.ranking .card:nth-of-type(5) .card__head.rank::after {
  content: "5";
}

.cardArea.ranking .card:nth-of-type(6) .card__head.rank::after {
  content: "6";
}

.cardArea.ranking .card:nth-of-type(7) .card__head.rank::after {
  content: "7";
}

.cardArea.ranking .card:nth-of-type(8) .card__head.rank::after {
  content: "8";
}

.cardArea.ranking .card:nth-of-type(9) .card__head.rank::after {
  content: "9";
}

.cardArea.ranking .card:nth-of-type(10) .card__head.rank::after {
  content: "10";
}


@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__info {}




.card:hover {
  text-decoration: none;
}

.card a:hover {
  text-decoration: none;
}

.card:hover .title {
  text-decoration: underline;
}

.related-posts {
  width: 100%;
  padding: 20px 13px;
  background-color: #e5e5e5;
}

.related-posts__head {
  margin: 0 0 15px 0;
  padding: 0;
  border-left: none;
  color: black;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}

.related-posts .card {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding: 7px 0;
  display: flex;
  align-content: center;
  position: relative;
  margin: 0 0 5px 0;
  border-bottom: none;
  background-color: white;
}

.related-posts .card__info {
  position: absolute;
  bottom: 6%;
  margin: 0;
  color: #6f6e6e;
  font-size: 10px;
  text-align: left;
}


.related-posts .card__info div {
  display: flex;
}

.related-posts .card__info div.tag-list {
  column-gap: 3px;
}

.related-posts .card__info .date {
  padding-right: 10px;
  margin: 0;
  line-height: 1.5;
}

.related-posts .card__info .tag {
  color: inherit;
  font-size: 10px;
  text-decoration: underline;
  line-height: 1.5;
}

.related-posts .card__info .tag:hover {
  color: black;
  opacity: 0.8;
}

.related-posts .card__info .series-link {
  padding-right: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 30px;
  width: 100%;
  font-size: 13px;
  color: black;
  line-height: 1;
  position: relative;
}

.related-posts .card__info .series-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 3px;
  right: 3px;
}

@media screen and (max-width: 360px) {
  .related-posts .card__info .series-link {
    font-size: 12px;
  }
}

.related-posts .page-series .card__text {
  align-items: center;
  margin-top: 0;
}

.related-posts .page-series .card__text .title {
  height: 4rem;
}

.related-posts .card__head,
.card__info .tag {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.related-posts .card__head,
.card__info {
  left: 45%;
  width: 55%;
  padding: 0 10px;
}

.related-posts .card .title {
  margin-bottom: 10px !important;
}

.related-posts .tag-list {
  list-style: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 5px 0 0 0;
  max-height: 15px;
  line-height: 20px;
  overflow: hidden;
}

.related-posts .tag-list .tag {
  border: none !important;
  margin: 0;
}

.related-posts .tag-list .tag a {
  padding: 0 !important;
}

.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 固有
 ============================================= */
/* ---------------------
 トップページ
---------------------- */
.main_img {
  width: 100%;
}

.brandpanel {
  opacity: 0;
  position: relative;
  width: 100vw;
  -webkit-text-size-adjust: 100%;
}

.brandpanel.slick-initialized {
  opacity: 1;
  position: relative;
  transition: opacity .3s linear;
}

@media screen and (min-width: 500px) {
  .brandpanel {
    width: 100%;
    height: 66.7%;
  }
}

.brandpanel .slick-track {
  display: flex;
}

.brandpanel .slick-slide {
  display: inline-block;
  position: relative;
  box-shadow: 0 10px 10px -5px #ebd3c1;
  background: white;
}

.brandpanel .slick-arrow {
  /* 外部読み込みのslick.jsに上書きされないようにimportant */
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 5;
  width: 45px;

  /* スライダーカードの高さに調整 */
  height: calc(100% - 35px);
  margin: auto;
}

.brandpanel .slick-arrow.left::before,
.brandpanel .slick-arrow.right::before {
  color: white;
  font-weight: bold;
  font-size: 24px;
  font-family: "slick";
}

.brandpanel .slick-arrow.left {
  left: 0;
}

.brandpanel .slick-arrow.left::before {
  content: "←";
}

.brandpanel .slick-arrow.right {
  right: 0;
}

.brandpanel .slick-arrow.right::before {
  content: "→";
}

.brandpanel p.sp-layer {
  font-size: 14px;
  line-height: 1.4;
}

.brandpanel img {
  max-width: 100% !important;
  height: auto;
  max-height: 100% !important;
  margin: 0 !important;
}

.brandpanel .caption {
  width: 100%;
  margin: 0;
  padding: 10px;
}

.brandpanel .caption span {
  display: block;
  display: -webkit-box;
  margin: 0 12px 0 0;
  overflow: hidden;
  overflow: hidden;
  color: black;
  font-weight: bold;
  font-size: inherit;
  font-size: 18px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.brandpanel .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.brandpanel .slick-dots {
  display: block;
  list-style: none;
  margin: 10px;
  padding: 0;
  text-align: center;
  height: 25px;
}

.brandpanel .slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.brandpanel .slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  outline: none;
  cursor: pointer;
}

.brandpanel .slick-dots li button:hover,
.brandpanel .slick-dots li button:focus {
  outline: none;
}

.brandpanel .slick-dots li button:hover:before,
.brandpanel .slick-dots li button:focus:before {
  opacity: 1;
}

.brandpanel .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: #d1d1d1;
  font-size: 10px;
  line-height: 20px;
  font-family: "slick";
  text-align: center;
  content: "•";

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.brandpanel .slick-dots li.slick-active button:before {
  color: #e60039;
}


/* ---------------------
 トップページ_連載パネル
---------------------- */
.series {
  background: white;
  padding-top: 1px;
}

.series-panel {
  opacity: 0;
  position: relative;
  width: 100vw;
  -webkit-text-size-adjust: 100%;
}

.series-panel.slick-initialized {
  opacity: 1;
  position: relative;
  transition: opacity .3s linear;
}

@media screen and (min-width: 500px) {
  .series-panel {
    width: 100%;
    height: 66.7%;
  }
}

.series-panel .slick-track {
  display: flex;
}

.series-panel .slick-slide {
  display: inline-block;
  position: relative;
  background: white;
  margin: 0 10px;
}

.series-panel .slick-arrow {
  /* 外部読み込みのslick.jsに上書きされないようにimportant */
  display: flex !important;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  z-index: 5;
  width: 45px;

  /* スライダーカードの高さに調整 */
  height: calc(100% - 35px);
  margin: auto;
}

.series-panel .slick-arrow.left::before,
.series-panel .slick-arrow.right::before {
  color: #e60039;
  font-weight: bold;
  font-size: 24px;
  font-family: "slick";
}

.series-panel .slick-arrow.left {
  left: 0;
}

.series-panel .slick-arrow.left::before {
  content: "←";
}

.series-panel .slick-arrow.right {
  right: 0;
}

.series-panel .slick-arrow.right::before {
  content: "→";
}

.series-panel p.sp-layer {
  font-size: 14px;
  line-height: 1.4;
}

.series-panel img {
  max-width: 100% !important;
  height: auto;
  max-height: 100% !important;
  margin: 0 !important;
}

.series-panel .caption {
  width: 100%;
  margin: 0;
  padding: 10px;
}

.series-panel .caption span {
  display: block;
  display: -webkit-box;
  margin: 0 12px 0 0;
  overflow: hidden;
  overflow: hidden;
  color: black;
  font-weight: bold;
  font-size: inherit;
  font-size: 18px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.series-panel .slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.series-panel .slick-dots {
  display: block;
  list-style: none;
  margin: 10px;
  padding: 0;
  text-align: center;
  height: 25px;
}

.series-panel .slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.series-panel .slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  outline: none;
  cursor: pointer;
}

.series-panel .slick-dots li button:hover,
.series-panel .slick-dots li button:focus {
  outline: none;
}

.series-panel .slick-dots li button:hover:before,
.series-panel .slick-dots li button:focus:before {
  opacity: 1;
}

.series-panel .slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  color: #d1d1d1;
  font-size: 10px;
  line-height: 20px;
  font-family: "slick";
  text-align: center;
  content: "•";

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.series-panel .slick-dots li.slick-active button:before {
  color: #e60039;
}


/* ---------------------
 記事ページ
---------------------- */
[id="single_post"] .title_box {
  width: 100%;
  margin-bottom: 25px;
  padding: 22px 0 5px 0;
  border-bottom: solid 2px #eeeeee;
}

[id="single_post"] .article_date_box {
  margin-bottom: 0;
  overflow: hidden;
}

[id="single_post"] .article_date_box .article_sponsored {
  float: left;
  color: #6f6e6e;
  font-size: 10px;
}

[id="single_post"] .article_date_box .article_date {
  float: right;
  color: black;
  font-size: 15px;
}



[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"] h2 {
  font-size: 18px !important;
  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;
}

[id="single_post"] h2>span {
  font-weight: bold;
}

[id="single_post"] h3 {
  font-size: 17px;
}

[id="single_post"] h4,
[id="single_post"] h5,
[id="single_post"] h6 {
  font-size: 15px;
}

[id="single_post"] .twitter-tweet.twitter-tweet-rendered {
  max-width: 420px !important;
  margin: auto !important;
}

[id="single_post"] .twitter-tweet.twitter-tweet-rendered iframe {
  width: 100% !important;
}

[id="single_post"] .instagram-media {
  width: 100% !important;
  max-width: 420px !important;
  margin: auto !important;
}

[id="single_post"] .fb-post {
  max-width: 420px;
  margin: auto;
}

[id="single_post"] .fb-post span {
  width: 100% !important;
}

[id="single_post"] .fb-post iframe {
  width: 100% !important;
}

[id="single_post"] .tag-list {
  list-style: none;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 5px 0 0 0;
  max-height: 15px;
  line-height: 20px;
  overflow: hidden;
  clear: both;
  max-height: calc(20px + 8px);
  padding: 0;
}

[id="single_post"] .tag-list li {
  margin-right: 8px;
  margin-bottom: 10px;
}

[id="single_post"] .tag-list a {
  color: inherit;
}

.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;
}

.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: "";
}

.twitter-follow:link,
.twitter-follow:visited {
  color: white !important;
}

.share {
  margin: 30px 0 50px 0;
}

.share .twitter-follow {
  margin-bottom: 30px;
}

.share__head {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.share__list {
  display: flex;
  justify-content: space-between;
  width: 92%;
  margin: 0 auto;
  padding: 0;
}

.share li {
  width: 22%;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  background: white no-repeat center center;
  font-size: 11px;
  text-align: center;
}

.share li a {
  display: block;
  height: 27px;
  padding: 3px 0;
  color: white;
  text-decoration: none;
}

.share li.twitter {
  background-image: url(../images/x_logo_black.png);
  background-size: 17px auto;
}

.share li.line {
  background-image: url(../images/line.png);
  background-size: 33.5px auto;
}

.share li.facebook {
  background-image: url(../images/facebook.png);
  background-size: 18.5px auto;
}

.share li.hatena {
  background-image: url(../images/hatebu.png);
  background-size: 17.5px auto;
}

#sp_main_head .date_box .day_ {
  padding: 9px 0 0 0;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0;
}

.category_nav .middle {
  margin: 18px 0 45px 0;
}

.category_top .content_item:first-child {
  margin-top: 6px;
}

.category_top h1 {
  text-align: center;
  margin: 0 0 30px 0;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #e60039;
  color: white;
}

.sp_img {
  margin: 0 auto;
}

.sp_img figcaption {
  margin: 0 0 10px 0;
  padding-left: 5px;
  font-size: 10px;
  line-height: 1.5;
  text-align: left;
}

/* =============================================
 ShortCode
 ============================================= */
/* 目次(TOC) */
[id="toc_container"] {
  margin: 2em 0;
  padding: 1.5em 1em 0 0;
  border: solid 2px #e60039;
  border-radius: 10px;
  background: white;
  font-size: 15px;
}

[id="toc_container"] .toc_title {
  margin: 0 0 0 1em;
  color: black;
  font-weight: bold;
  font-size: 17px;
  text-align: left;
}

[id="toc_container"] ul {
  list-style: none;
  counter-reset: number;
}

[id="toc_container"] ul ul {
  margin-bottom: 5px;
  margin-left: 20px;
}

[id="toc_container"] li {
  line-height: 2;
}

[id="toc_container"] li a {
  display: block;
  padding-left: 23px;
}

[id="toc_container"] ul a::before {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
  content: counter(number) ".";
  counter-increment: number;
}

[id="toc_container"] ul ul a {
  padding-left: 36px;
  font-size: 12px;
}

[id="toc_container"] ul ul a::before {
  content: none;
}


/* ショートコード 記事画像 */
.article-image {
  display: table;
  margin: 10px auto;
  text-align: center;
}

.article-image__imgBox img {
  max-width: 100%;
}

.article-image__caption {
  display: table-caption;
  padding: 5px;
  caption-side: bottom;
}

.article-image__caption p {
  margin: 0;
  text-align: left;
}

.article-image__caption__heading {
  font-weight: bold;
}

.article-image__caption--bg-gray {
  background-color: #eeeeee;
}

.article-image.isResponsive {
  display: block;
}

.article-image.isResponsive .article-image__imgBox {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}

.article-image.isResponsive .article-image__imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.article-image.isResponsive .article-image__caption {
  display: block;
}

/* 連載記事＆ショートコード 連載リンク */
.category-list-link-header {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 18px;
}

.category-list-link {
  margin-bottom: 20px;
  font-size: 17px;
  word-break: break-all;
}

/* ショートコード 連載タイトル */
.series-description {
  margin-bottom: 15px;
  padding: 20px 20px 5px;
  background-image: url(https://woman-type.jp/wt/feature/wp-content/uploads/2015/12/bg_rensai_title.png);
}

.series-description__imgBox {
  margin-bottom: 15px;
}

.series-description__imgBox img {
  max-width: 100%;
}

.series-description__text .shoulder {
  width: 100%;
  color: #ea470b;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.2;
}

.series-description__text .title {
  margin-bottom: 7px;
  color: #ea470b;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.7;
}

.series-description__text .description {
  color: black;
  font-size: 15px;
  line-height: 1.58;
}

.series-description.isResponsive .series-description__imgBox {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}

.series-description.isResponsive .series-description__imgBox img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

/*ショートコード 著者 */
.caption_box {
  display: inline-block;
  clear: both;
  width: 100%;
  margin-bottom: 20px;
  background-color: #eeeeee;
}

.caption_box .caption_pic {
  float: left;
  width: 70px;
  height: auto;
  margin: 12px;
}

.caption_box .text {
  float: left;
  width: 100%;
  padding: 0 12px 12px 12px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.5;
}

.caption_box .title {
  display: table;
  float: left;
  width: 65%;
  height: 70px;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.caption_box .title .title_in {
  display: table-cell;
  font-weight: bold;
  vertical-align: bottom;
}

.editor_interviewee_box {
  width: 100%;
  padding: 12px;
  background-color: #eeeeee;
  font-size: 14px;
  line-height: 1.5;
}

.editor_interviewee_box .editor_bold {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.7;
}

/* ショートコード - フリーボックス */
.editor_free_box {
  width: 100%;
  padding: 12px;
  background-color: #eeeeee;
  font-size: 14px;
  line-height: 1.5;
}

.editor_free_box .editor_bold {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.7;
}

.news_pic {
  margin-bottom: 15px;
}

.news_pic figure {
  display: table;
  width: 1px;
  width: auto;
}

.news_pic figure img {
  max-width: 300px;
}

@media screen and (min-width: 500px) {
  .news_pic figure img {
    max-width: 500px;
  }
}

@media screen and (min-width: 413px) and (max-width: 414px) {
  .news_pic figure img {
    max-width: 388px;
  }
}

@media screen and (min-width: 400px) {
  .news_pic figure img {
    max-width: 380px;
  }
}

@media screen and (max-width: 320px) {
  .news_pic figure img {
    max-width: 290px;
  }
}

@media screen and (min-width: 360px) {
  .news_pic figure img {
    max-width: 334px;
  }
}

@media screen and (min-width: 374px) and (max-width: 375px) {
  .news_pic figure img {
    max-width: 349px;
  }
}

/* ショートコード balloon */
.balloon-block {
  margin: 0;
  padding: 10px 0;
  overflow: hidden;
  color: black;
  line-height: 1.5;
}

.balloon-block>.balloon-type-left::after,
.balloon-block>.balloon-type-right::after {
  display: block;
  clear: both;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-speaker {
  float: left;
  width: 70px;
  margin-right: -70px;
}

.balloon-block>.balloon-type-right>.balloon-speaker {
  float: right;
  width: 70px;
  margin-left: -70px;
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-icon,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-icon {
  height: 60px;
  text-align: center;
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-icon>img.balloon-icon,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-icon>img.balloon-icon {
  width: 59px;
  height: 59px;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc;
  border-radius: 50%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
}

.balloon-block>.balloon-type-left>.balloon-speaker>.balloon-speaker-name,
.balloon-block>.balloon-type-right>.balloon-speaker>.balloon-speaker-name {
  padding: 0;
  overflow: hidden;
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 721px) {
  .balloon-block>.balloon-type-left>.balloon-area {
    position: relative;
    float: left;
    margin-right: 80px;
    margin-left: 80px;
  }
}

@media screen and (max-width: 720px) {
  .balloon-block>.balloon-type-left>.balloon-area {
    position: relative;
    float: left;
    margin-left: 80px;
  }
}

.balloon-block>.balloon-type-left>.balloon-area::before {
  position: absolute;
  top: 9px;
  left: -6px;
  z-index: 1;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid solid solid none;
  border-color: transparent #cccccc;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-area::after {
  position: absolute;
  top: 9px;
  left: -5px;
  z-index: 3;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid solid solid none;
  border-color: transparent white;
  content: "";
}

@media screen and (min-width: 721px) {
  .balloon-block>.balloon-type-right>.balloon-area {
    position: relative;
    float: right;
    margin-right: 80px;
    margin-left: 80px;
  }
}

@media screen and (max-width: 720px) {
  .balloon-block>.balloon-type-right>.balloon-area {
    position: relative;
    float: right;
    margin-right: 80px;
  }
}

.balloon-block>.balloon-type-right>.balloon-area::before {
  position: absolute;
  top: 9px;
  right: -6px;
  z-index: 1;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid none solid solid;
  border-color: transparent #cccccc;
  content: "";
}

.balloon-block>.balloon-type-right>.balloon-area::after {
  position: absolute;
  top: 9px;
  right: -5px;
  z-index: 3;
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid none solid solid;
  border-color: transparent white;
  content: "";
}

.balloon-block>.balloon-type-left>.balloon-area>.balloon-text,
.balloon-block>.balloon-type-right>.balloon-area>.balloon-text {
  position: relative;
  z-index: 2;
  padding: 15px 17px;
  border-width: 1px;
  border-style: solid;
  border-color: #cccccc;
  border-radius: 5px;
  background-color: white;
  color: #333333;
  font-size: 15px;
  line-height: 1.58;
  word-break: break-word;
  word-wrap: break-word;
}

/* ショートコード ボックス */
.box1 {
  margin: 2em 0;
  padding: 1em;
  border: solid 3px #e60039;
}

.box1 p {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 15px;
}

.box2 {
  margin: 2em 0;
  padding: 1em;
  border: solid 3px #e60039;
  border-radius: 10px;
  background: white;
  font-size: 15px;
}

.box2 p {
  margin: 0 !important;
  padding: 0;
}

.box3 {
  position: relative;
  margin: 3em 0 2em;
  padding: 1em;
  border: solid 3px #e60039;
  font-size: 15px;
}

.box3 .box-title {
  display: inline-block;
  position: absolute;
  top: -27px;
  left: -3px;
  height: 25px;
  padding: 0 9px;
  border-radius: 5px 5px 0 0;
  background: #e60039;
  color: white;
  font-weight: bold;
  line-height: 25px;
}

.box3 p {
  margin: 0 !important;
  padding: 0;
}

.box4 {
  margin: 2em 0;
  background: #fbe8eb;
  font-size: 15px;
}

.box4 .box-title {
  padding: 4px;
  background: #e60039;
  color: white;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
}

.box4 p {
  padding: 15px 20px !important;
}

/* =============================================
 クイックタグ
 ============================================= */
.marker_yellow {
  background: linear-gradient(transparent 80%, #f8e81c 0);
  font-weight: 700;
}

.youtube-wrap {
  position: relative;
  height: 0;
  margin: 1em auto;

  /*アスペクト比 16:9の場合の縦幅*/
  padding-bottom: 56.25%;
  overflow: hidden;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =============================================
 SNS記事埋め込み
 ============================================= */
.twitter-tweet.twitter-tweet-rendered {
  width: 100% !important;
}

.instagram-media {
  width: 414px !important;
  min-width: initial !important;
  max-width: 100% !important;
}

/* =============================================
 未整理
 ============================================= */
.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;
}

.page-posts .banner {
  margin: 10px 20px;
}

.page-series .banner {
  margin: 10px 20px;
}

.page-sitemap h2 {
  margin: 16px 5% !important;
}

.page-sitemap .menu ul {
  margin: 0;
  padding: 0;
}

.page-sitemap .menu li {
  max-height: 0;
  overflow-y: hidden;
  transition: all .5s;

  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
}

.page-sitemap input.accordion {
  display: none;
}

.page-sitemap .accordion_set {
  width: 90%;
  margin: auto;
  text-align: center;
}

.page-sitemap span.accordion_title {
  display: inline-block;
  width: 92%;
  height: 2.68em;
  padding: .3em 0;
  border-bottom-width: .2em;
  border-bottom-style: solid;
  background-color: #1ab3b1;
  color: white;
  vertical-align: bottom;
}

.page-sitemap a.accordion_title {
  display: inline-block;
  width: 92%;
  height: 35px;
  margin-bottom: .2em;
  padding: .3em 0;
  background-color: #1ab3b1;
  color: white;
  line-height: 28px;
  text-decoration: none;
  vertical-align: bottom;
}

.page-sitemap label.button {
  display: inline-block;
  width: 8%;
  height: 35px;
  margin-bottom: .2em;
  padding: .3em 0;
  background: #1ab3b1;
  color: white;
  line-height: 26px;
  vertical-align: bottom;
  cursor: pointer;
}

.page-sitemap #menu_bar01:checked~#links01 li,
.page-sitemap #menu_bar02:checked~#links02 li,
.page-sitemap #menu_bar03:checked~#links03 li,
.page-sitemap #menu_bar04:checked~#links04 li,
.page-sitemap #menu_bar05:checked~#links05 li,
.page-sitemap #menu_bar06:checked~#links06 li,
.page-sitemap #menu_bar07:checked~#links07 li,
.page-sitemap #menu_bar08:checked~#links08 li,
.page-sitemap #menu_bar09:checked~#links09 li,
.page-sitemap #menu_bar010:checked~#links010 li,
.page-sitemap #menu_bar011:checked~#links011 li,
.page-sitemap #menu_bar012:checked~#links012 li {
  opacity: 1;
  max-height: 46px;
}

.page-404 {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

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;
}


/* ショートコード - 関連記事 */
.related-post {
  display: flex;
  width: 100%;
  height: 90px;
  margin: 30px auto;
  overflow: hidden;
  border: 1px solid #e8e9ea;
  border-radius: 4px;
}

.related-post-link {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none !important;
}

.related-post-image {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.related-post-image img {
  display: block;

  /* 固定幅 */
  width: 90px;

  /* 固定高さ */
  height: 90px;

  object-fit: cover;
  object-position: center;
}

.related-post-text {
  /* カードサイズ - 画像幅 */
  width: calc(100% - 90px);
  padding: 10px;
  background-color: #ffffff;
  color: #333333;
  word-break: break-word;
}

.related-post-text strong {
  display: -webkit-box;
  margin-bottom: 5px;
  overflow: hidden;
  color: #000000;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.related-post-text em {
  display: -webkit-box;
  overflow: hidden;
  color: #666666;
  font-size: 9px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.related-post:hover {
  border: 1.5px solid #888888;
}

/* =============================================
 トップページ_おすすめタグ
 ============================================= */
.recommend-tag-area {
  margin: 20px;
}

.recommend-tag-area p {
  color: #333333;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.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;
}

/* 連載一覧ページ切り戻し用 */

.category_series {
  background: white;
}

.category_series .card {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding: 7px 0;
  display: flex;
  align-content: center;
  position: relative;
}

.category_series .card>a:not(.card__head) {
  display: flex;
  width: 100%;
}

.category_series .card__imgBox {
  width: 45%;
  margin: auto;
  padding-left: 5px;
  position: relative;
}

.category_series .card__imgBox figure {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(460 / 690 * 100%);
}

.category_series .card__imgBox figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.category_series .card__imgBox figure img {
  bottom: 0;
  margin: auto;
}

.category_series .card__imgBox .ribbon {
  position: absolute;
  width: 22%;
  height: auto;
  top: -2%;
  left: 4%;
}

.category_series .card__head {
  position: absolute;
  top: 8%;
  margin-bottom: 4px;
  color: #1ab3b1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4em;
}

@media screen and (max-width: 360px) {
  .category_series .card__head {
    top: 9%;
    font-size: 12px;
  }
}

.category_series .card__head.rank::before {
  content: "";
  background: url(../images/icon_ranking.png) no-repeat;
  background-size: 100%;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin: 0 4px 0 0;
  padding-top: 0;
  vertical-align: middle;
}

.category_series .card__text {
  padding: 0 5px 0 10px;
  width: 55%;
  height: 100%;
  display: flex;
  align-items: center;
}

.category_series .card__text .title {
  margin: 0;
  height: 4.8em;
  color: black;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 360px) {
  .category_series .card__text .title {
    font-size: 12px;
    height: 54px;
  }
}

.category_series .card__info {
  position: absolute;
  bottom: 6%;
  margin: 0;
  color: #6f6e6e;
  font-size: 10px;
  text-align: left;
}

.category_series .card__info div {
  display: flex;
}

.category_series .card__info div.tag-list {
  column-gap: 3px;
}

.category_series .card__info ul.tag-list {
  column-gap: 3px;
}

.category_series .card__info .date {
  padding-right: 10px;
  margin: 0;
  line-height: 1.5;
}

.category_series .card__info li.tag {
  color: inherit;
  font-size: 10px;
  text-decoration: underline;
  line-height: 1.5;
}

.category_series .card__info li.tag:hover {
  color: black;
  opacity: 0.8;
}

.category_series .card__info .series-link {
  padding-right: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 30px;
  width: 100%;
  font-size: 13px;
  color: black;
  line-height: 1;
  position: relative;
}

.category_series .card__info .series-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 3px;
  right: 3px;
}

@media screen and (max-width: 360px) {
  .category_series .card__info .series-link {
    font-size: 12px;
  }
}

.category_series .page-series .card__text {
  align-items: center;
  margin-top: 0;
}

.category_series .page-series .card__text .title {
  height: 4rem;
}

.category_series .card__head,
.card__info .tag {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.category_series .card__head,
.card__info {
  left: 45%;
  width: 55%;
  padding: 0 10px;
}

.category_series .card:hover {
  text-decoration: none;
}

.category_series .card:hover .title {
  text-decoration: underline;
}



/* 連載詳細ページ切り戻し用 */

.category_series_detail {
  background: white;
}

.category_series_detail .card {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding: 7px 0;
  display: flex;
  align-content: center;
  position: relative;
}

.category_series_detail .card>a:not(.card__head) {
  display: flex;
  width: 100%;
}

.category_series_detail .card__imgBox {
  width: 45%;
  margin: auto;
  padding-left: 5px;
  position: relative;
}

.category_series_detail .card__imgBox figure {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
  padding-top: calc(460 / 690 * 100%);
}

.category_series_detail .card__imgBox figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.category_series_detail .card__imgBox figure img {
  bottom: 0;
  margin: auto;
}

.category_series_detail .card__imgBox .ribbon {
  position: absolute;
  width: 22%;
  height: auto;
  top: -2%;
  left: 4%;
}

.category_series_detail .card__head {
  position: absolute;
  top: 8%;
  margin-bottom: 4px;
  color: #1ab3b1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4em;
}

@media screen and (max-width: 360px) {
  .category_series_detail .card__head {
    top: 9%;
    font-size: 12px;
  }
}

.category_series_detail .card__head.rank::before {
  content: "";
  background: url(../images/icon_ranking.png) no-repeat;
  background-size: 100%;
  width: 17px;
  height: 17px;
  display: inline-block;
  margin: 0 4px 0 0;
  padding-top: 0;
  vertical-align: middle;
}

.category_series_detail .card__text {
  padding: 0 5px 0 10px;
  width: 55%;
  height: 100%;
  display: flex;
}

.category_series_detail .card__text .title {
  margin: 0;
  height: 4.8em;
  color: black;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media screen and (max-width: 360px) {
  .category_series_detail .card__text .title {
    font-size: 12px;
    height: 54px;
  }
}

.category_series_detail .card__info {
  position: absolute;
  bottom: 6%;
  margin: 0;
  color: #6f6e6e;
  font-size: 10px;
  text-align: left;
}

.category_series_detail .card__info div {
  display: flex;
}

.category_series_detail .card__info div.tag-list {
  column-gap: 3px !important;
  flex-wrap: nowrap !important;
}

.category_series_detail .card__info .date {
  padding-right: 10px;
  margin: 0;
  line-height: 1.5;
}

.category_series_detail .card__info .tag {
  color: inherit;
  font-size: 10px;
  border: none !important;
  text-decoration: underline;
  line-height: 1.5;
}

.category_series_detail .card__info .tag:hover {
  color: black;
  opacity: 0.8;
}

.category_series_detail .card__info .series-link {
  padding-right: 12px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 30px;
  width: 100%;
  font-size: 13px;
  color: black;
  line-height: 1;
  position: relative;
}

.category_series_detail .card__info .series-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: 3px;
  right: 3px;
}

@media screen and (max-width: 360px) {
  .category_series_detail .card__info .series-link {
    font-size: 12px;
  }
}

.category_series_detail .page-series .card__text {
  align-items: center;
  margin-top: 0;
}

.category_series_detail .page-series .card__text .title {
  height: 4rem;
}

.category_series_detail .card__head,
.card__info .tag {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.category_series_detail .card__head,
.card__info {
  left: 45%;
  width: 55%;
  padding: 0 10px;
}

.category_series_detail .card:hover {
  text-decoration: none;
}

.category_series_detail .card:hover .title {
  text-decoration: underline;
}

/* ショートコード - 会員限定コンテンツ */
.uki-member-card {
  background-image: repeating-linear-gradient(45deg, #f9f1eb, #f9f1eb 3px, #fff6f6 3px, #fff6f6 5px);
  border-radius: 6px;
  border: solid 1px #d7d7d7;
  padding: 12px 0px;
  text-align: center;
  box-shadow: 3px 4px 3px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  margin: 20px auto;
  position: relative;
}

.uki-member-card::before {
  content: "";
  width: 102%;
  height: 43px;
  display: block;
  /* 上ほど透明、下に向かってやや白く */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.4) 10%,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 1) 40%);
  position: absolute;
  top: -44px;
  left: -1%;
}

.uki-member-card__title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 7px;
  position: relative;
  padding-left: 25px;
  display: inline-block;
  height: 26px;
  line-height: 26px;
}

.uki-member-card__title::before {
  background: url(../images/icon_member_content.png) no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
}

.uki-member-card__text {
  font-size: 14px;
  line-height: 1.3;
}

.uki-member-card__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.uki-member-card .uki-member-card__btn {
  width: calc(45% - 5px);
  height: 50px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  display: block;
  color: #fff;
  transition: background 0.2s ease;
}

.uki-member-card__btn--login {
  background: linear-gradient(180deg, #EF406D 0%, #EF406D 50.47%, #ED0A59 50.49%, #ED0A59 100%);
  line-height: 50px;
}

.uki-member-card__btn:hover,
.uki-member-card__btn:active {
  opacity: .7;
}

.uki-member-card__btn--register {
  background: linear-gradient(180deg, #32BBB9 0%, #32BBB9 50%, #3FCAC8 50.48%, #1BB3B1 100%);
  padding-top: 6px;
}

.uki-member-card__btn--register span {
  background: white;
  font-size: 10px;
  display: block;
  width: 50px;
  line-height: 15px;
  color: rgba(39, 183, 181, 1);
  border-radius: 10px;
  padding: 1px 5px;
  margin: 0 auto;
  letter-spacing: 0;
  font-weight: 400;
}

.uki-member-card__link {
  margin-top: 10px;
}

.uki-member-card__about {
  font-size: 14px;
  color: #555;
  text-decoration: underline;
}

.uki-member-card .tt-wrap {
  position: relative;
  display: inline-block;
}

.uki-tooltip {
  position: absolute;
  top: 20px;
  left: -15vw;
  background: #000;
  opacity: 0.86;
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  width: 80vw;
  display: none;
  z-index: 10;
  text-align: left;
}

.uki-tooltip .tt-title {
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 13px;
}

.uki-tooltip .tt-text {
  font-size: 14px;
  line-height: 1.4;
}

.tt-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 21px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.uki-tooltip.show {
  display: block;
}

.uki-member-card .tt-btn {
  cursor: pointer;
  user-select: none;
}