@charset "UTF-8";
/* ========================================================
config - サイト共通設定
======================================================== */
/*  共通カラー変数
/* -------------------------------------------------------- */
/* サイト別 */
/* モノトーン */
/* ========================================================
base.css - サイト全体のベーススタイル
======================================================== */
/* reset
-------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=M+PLUS+Rounded+1c&display=swap");
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* root
-------------------------------------------------------- */
body,
html {
  margin: 0;
}

html {
  font-size: 10px;
}

body {
  position: relative;
  color: #2F2F2F;
  font-weight: 500;
  font-style: normal;
  word-break: break-all;
  letter-spacing: 0.2px;
}

/* link
-------------------------------------------------------- */
a {
  color: #fff;
  text-decoration: none;
}

a:active,
a:focus,
a:hover {
  text-decoration: none;
  opacity: 0.6;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}

.clearfix:after {
  clear: both;
}

/* ==============================
	base
============================== */
a {
  color: #2f2f2f;
}

img {
  transition: 0.2s;
}

.bg-theme.header-bg:before {
  height: 460px;
  background: url(../images/header_bg_pc.png?f3222e3…) 50% no-repeat;
  background-size: 100% 100%;
}

.breadcrumb .breadcrumb-list li:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px;
  height: 8.8px;
  background: url(../images/small_arrow_icon.png?b34de84…) no-repeat 50%;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.icon-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 32px;
  height: 32px;
  border: 1px solid #404040;
  box-sizing: border-box;
  background: #ebfffb;
  content: "";
  transform: translateY(-50%);
  transition: all 0.4s;
  border-radius: 50%;
}
@media screen and (max-width: 480px) {
  .icon-arrow {
    right: 0;
    width: 22px;
    height: 22px;
  }
}
.icon-arrow span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.icon-arrow span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  width: 12px;
  height: 11px;
  background: url(../images/large_arrow_icon.png?c1fdaba…) no-repeat 50%;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .icon-arrow span::before {
    background: url(../images/large_arrow_icon.png?c1fdaba…) no-repeat 50%;
    background-size: 8px;
  }
}

.ttl {
  position: relative;
  margin-bottom: 6.4rem;
  padding-bottom: 2.4rem;
  font-size: 3.2rem;
  font-weight: 500;
  text-align: center;
  font-family: Zen Maru Gothic, M PLUS Rounded\ 1c, sans-serif;
}
@media screen and (max-width: 480px) {
  .ttl {
    font-size: 18px;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
}
.ttl::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: #404040;
  content: "";
  transform: translateX(-50%);
  border-radius: 100px;
}

/* ==============================
    一覧ページ
============================== */
.column__list {
  margin-bottom: 80px;
}
.column__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #a5a5a5;
}
.column__item:last-child {
  border-bottom: none;
}
.column__img {
  width: 20%;
  position: relative;
}
@media screen and (max-width: 480px) {
  .column__img {
    width: 30%;
  }
}
.column__img img {
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .column__img img {
    border-radius: 5px;
  }
}
.column__img .rank {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 35px;
  height: 35px;
  background-color: #f1ab4f;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .column__img .rank {
    width: 28px;
    height: 28px;
  }
}
.column__txt {
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .column__txt {
    width: 65%;
  }
}
.column__title {
  margin-bottom: 15px;
  position: relative;
}
.column__title--inner {
  width: 90%;
  display: block;
}
@media screen and (max-width: 480px) {
  .column__title--inner {
    font-size: 15px;
  }
}
.column__title--link:hover {
  opacity: 1;
}
.column__title--link:hover .icon-arrow {
  right: 0;
}
.column__info {
  display: flex;
  justify-content: space-between;
}
.column__cate {
  display: inline-block;
  background-color: #fefff5;
  border: 1px solid #111;
  border-radius: 10px;
  padding: 5px 15px;
}
@media screen and (max-width: 480px) {
  .column__cate {
    font-size: 12px;
    padding: 3px 12px;
  }
}
.column__date {
  font-size: 12px;
}
@media screen and (max-width: 480px) {
  .column__date {
    font-size: 10px;
  }
}

.sec__popular {
  position: relative;
  margin-bottom: 80px;
}
.sec__popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 460px;
  width: 100%;
  background: url(../images/pink_bg_pc.png) 50% no-repeat;
  background-size: 100% 100%;
  z-index: 0;
}
.sec__popular--inner {
  position: relative;
}

.sec__cate {
  margin-bottom: 6.4rem;
}

.column__cate--item {
  position: relative;
  border-bottom: 1px solid #404040;
}
.column__cate--item a {
  padding: 1.6rem 6.5rem 1.6rem 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 480px) {
  .column__cate--item a {
    padding-left: 0;
    font-size: 15px;
  }
}
.column__cate--item:hover .icon-arrow {
  right: 0;
}

/* ==============================
    ページネーション
============================== */
.wp-pagenavi {
  text-align: center;
  margin-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0 0.4rem;
  box-sizing: border-box;
  color: #2f2f2f;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  font-family: Lato, sans-serif;
  border-radius: 50%;
}
.wp-pagenavi a:last-child, .wp-pagenavi span:last-child {
  margin-right: 0;
}

.wp-pagenavi a {
  box-shadow: 1px 1px 0 #404040;
}

.wp-pagenavi span.current {
  background: #ebfffb;
  border: none;
  box-shadow: none;
}

.nextpostslink,
.previouspostslink {
  background: #f9ffd5;
  background: none;
  border: none !important;
  width: auto !important;
  box-shadow: none !important;
}