@charset "UTF-8";
/* CSS for new design 2023.07.28 */
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
* {
  box-sizing: border-box;
}

body {
  color: #616161;
  font-size: 15px;
}
@media screen and (max-width: 1060px) {
  body {
    font-size: 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 2.8645833333vw;
  }
}
@media screen and (max-width: 428px) {
  body {
    font-size: 3.6458333333vw;
  }
}

p {
  font-size: 15px;
}
@media screen and (max-width: 1060px) {
  p {
    font-size: 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 2.8645833333vw;
  }
}
@media screen and (max-width: 428px) {
  p {
    font-size: 3.6458333333vw;
  }
}

a {
  color: #616161;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

.archive h1,
.page h1 {
  font-size: 26px;
  margin-top: 0;
}
@media screen and (max-width: 1060px) {
  .archive h1,
.page h1 {
    font-size: 2.4528301887vw;
  }
}
@media screen and (max-width: 768px) {
  .archive h1,
.page h1 {
    font-size: 5.7291666667vw;
  }
}

section .inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 60px 30px;
}
@media screen and (max-width: 1060px) {
  section .inner {
    max-width: 100vw;
    padding: 5.6603773585vw 2.8301886792vw;
  }
}
@media screen and (max-width: 768px) {
  section .inner {
    max-width: 100%;
    padding: 5.2083333333vw 3.90625vw;
  }
}

main {
  padding-top: 95px;
}
@media screen and (max-width: 1060px) {
  main {
    padding-top: 8.9622641509vw;
  }
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 13.0208333333vw;
  }
}

img {
  vertical-align: bottom;
}

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px 30px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  height: 95px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1060px) {
  header {
    padding: 1.8867924528vw 2.8301886792vw;
    height: 8.9622641509vw;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 2.6041666667vw 3.90625vw;
    height: 13.0208333333vw;
  }
}
@media screen and (max-width: 428px) {
  header {
    padding: 3.90625vw 5.2083333333vw;
  }
}
header ul {
  list-style-type: none;
}
header #logo {
  width: 250px;
  margin: 0;
  font-size: 1em;
}
@media screen and (max-width: 1060px) {
  header #logo {
    width: 23.5849056604vw;
  }
}
@media screen and (max-width: 768px) {
  header #logo {
    width: 32.5520833333vw;
  }
}
header ul {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}
@media screen and (max-width: 1060px) {
  header ul {
    gap: 1.1320754717vw;
  }
}
@media screen and (max-width: 768px) {
  header ul {
    gap: 2.6041666667vw;
  }
}
header ul li {
  margin-bottom: 0;
  cursor: pointer;
  line-height: 1;
}
header .search-icon {
  font-size: 30px;
  cursor: pointer;
}
@media screen and (max-width: 1060px) {
  header .search-icon {
    font-size: 4.7169811321vw;
  }
}
@media screen and (max-width: 768px) {
  header .search-icon {
    font-size: 5.2083333333vw;
  }
}
@media screen and (max-width: 428px) {
  header .search-icon {
    font-size: 6.5104166667vw;
  }
}
header .burger-icon {
  width: 40px;
  position: relative;
  height: 20px;
  z-index: 1000;
  cursor: pointer;
}
@media screen and (max-width: 1060px) {
  header .burger-icon {
    width: 5.6603773585vw;
    height: 2.8301886792vw;
  }
}
@media screen and (max-width: 768px) {
  header .burger-icon {
    width: 6.5104166667vw;
    height: 3.90625vw;
  }
}
@media screen and (max-width: 428px) {
  header .burger-icon {
    width: 9.1145833333vw;
    height: 5.2083333333vw;
  }
}
header .burger-icon span {
  height: 1px;
  width: 100%;
  background-color: #616161;
  position: absolute;
  transition: 0.3s;
  left: 0;
}
header .burger-icon span:nth-of-type(1) {
  top: 0;
}
header .burger-icon span:nth-of-type(2) {
  top: 50%;
}
@media screen and (max-width: 1060px) {
  header .burger-icon span:nth-of-type(2) {
    top: calc(50% - 1px);
  }
}
header .burger-icon span:nth-of-type(3) {
  bottom: 0;
}
.menu-open header .burger-icon span:nth-of-type(1) {
  transform: rotate(45deg) translateY(13px);
  left: 6px;
}
@media screen and (max-width: 1060px) {
  .menu-open header .burger-icon span:nth-of-type(1) {
    transform: rotate(45deg) translateY(1.7924528302vw);
    left: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .menu-open header .burger-icon span:nth-of-type(1) {
    transform: rotate(45deg) translateY(2.4739583333vw);
    left: 1.8229166667vw;
  }
}
@media screen and (max-width: 428px) {
  .menu-open header .burger-icon span:nth-of-type(1) {
    transform: rotate(45deg) translateY(3.3854166667vw);
    left: 1.8229166667vw;
  }
}
.menu-open header .burger-icon span:nth-of-type(2) {
  transform: scaleX(0);
}
.menu-open header .burger-icon span:nth-of-type(3) {
  transform: rotate(-45deg) translateY(-13px);
  left: 6px;
}
@media screen and (max-width: 1060px) {
  .menu-open header .burger-icon span:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-1.7924528302vw);
    left: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .menu-open header .burger-icon span:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-2.4739583333vw);
    left: 1.8229166667vw;
  }
}
@media screen and (max-width: 428px) {
  .menu-open header .burger-icon span:nth-of-type(3) {
    transform: rotate(-45deg) translateY(-3.3854166667vw);
    left: 1.8229166667vw;
  }
}

#gnav {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: -1;
  left: 0;
  top: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #gnav {
    padding: 5.2083333333vw 2.6041666667vw;
  }
}
.menu-open #gnav {
  opacity: 1;
  z-index: 100;
}
#gnav > ul {
  width: 570px;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1060px) {
  #gnav > ul {
    width: 53.7735849057vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav > ul {
    width: 100%;
  }
}
#gnav > ul li {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 1060px) {
  #gnav > ul li {
    font-size: 2.0754716981vw;
    margin-bottom: 1.8867924528vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav > ul li {
    font-size: 5.7291666667vw;
    margin-bottom: 2.6041666667vw;
  }
}
#gnav > ul li span {
  width: 30px;
  margin-right: 10px;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 1060px) {
  #gnav > ul li span {
    width: 2.8301886792vw;
    margin-right: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav > ul li span {
    width: 7.8125vw;
    margin-right: 2.6041666667vw;
  }
}
#gnav > ul li i {
  font-size: 30px;
}
@media screen and (max-width: 1060px) {
  #gnav > ul li i {
    font-size: 2.8301886792vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav > ul li i {
    font-size: 7.8125vw;
  }
}
#gnav .sub-menu {
  font-size: 0;
  margin-top: 10px;
  margin-left: 40px;
}
@media screen and (max-width: 1060px) {
  #gnav .sub-menu {
    margin-top: 0.9433962264vw;
    margin-left: 3.7735849057vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav .sub-menu {
    margin-top: 2.6041666667vw;
    margin-left: 10.4166666667vw;
  }
}
#gnav .sub-menu li {
  display: inline-block;
  font-weight: normal;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1060px) {
  #gnav .sub-menu li {
    margin-right: 0.9433962264vw;
    margin-bottom: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav .sub-menu li {
    margin-right: 1.953125vw;
    margin-bottom: 1.953125vw;
  }
}
#gnav .sub-menu li a {
  font-size: 12px;
  display: block;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 50px;
  border: 1px solid #616161;
}
@media screen and (max-width: 1060px) {
  #gnav .sub-menu li a {
    font-size: 1.1320754717vw;
    padding: 0.4716981132vw 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  #gnav .sub-menu li a {
    font-size: 3.125vw;
    padding: 1.3020833333vw 2.6041666667vw;
  }
}
#gnav .sub-menu li a:hover {
  background-color: #616161;
  color: #fff;
}

.search-form {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  width: 100%;
  top: -200px;
  left: 0;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  transition: 0.3s;
}
main .search-form {
  position: static;
  padding-bottom: 40px;
}
.search-open .search-form {
  top: 95px;
}
@media screen and (max-width: 1060px) {
  .search-open .search-form {
    top: 8.9622641509vw;
  }
}
@media screen and (max-width: 768px) {
  .search-open .search-form {
    top: 13.0208333333vw;
  }
}
.search-form form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 740px;
}
@media screen and (max-width: 1060px) {
  .search-form form {
    gap: 1.8867924528vw;
    max-width: 69.8113207547vw;
  }
}
@media screen and (max-width: 768px) {
  .search-form form {
    max-width: 100%;
    gap: 1.953125vw;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 428px) {
  .search-form form {
    gap: 2.6041666667vw;
  }
}
.search-form form input[type=text] {
  height: 40px;
  width: 180px;
  border-radius: 20px;
  border: 1px solid #616161;
}
@media screen and (max-width: 1060px) {
  .search-form form input[type=text] {
    height: 3.7735849057vw;
    width: 16.9811320755vw;
    border-radius: 1.8867924528vw;
  }
}
@media screen and (max-width: 768px) {
  .search-form form input[type=text] {
    height: 5.2083333333vw;
    width: 31.25vw;
    border-radius: 2.6041666667vw;
  }
}
@media screen and (max-width: 428px) {
  .search-form form input[type=text] {
    height: 7.8125vw;
    width: 52.0833333333vw;
    border-radius: 5.2083333333vw;
  }
}
main .search-form form {
  max-width: 100%;
}
.search-form ul {
  font-size: 0;
  max-width: 470px;
  margin: 5px 0 0 0;
  padding: 0;
}
@media screen and (max-width: 1060px) {
  .search-form ul {
    max-width: 44.3396226415vw;
    margin: 0.4716981132vw 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .search-form ul {
    max-width: 100%;
    margin: 0;
    text-align: center;
  }
}
@media screen and (max-width: 428px) {
  .search-form ul {
    text-align: left;
  }
}
.search-form ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}
@media screen and (max-width: 1060px) {
  .search-form ul li {
    margin-right: 0.9433962264vw;
    margin-bottom: 0.9433962264vw;
    font-size: 1.1320754717vw;
  }
}
@media screen and (max-width: 768px) {
  .search-form ul li {
    margin-right: 1.3020833333vw;
    margin-bottom: 1.3020833333vw;
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 428px) {
  .search-form ul li {
    font-size: 3.125vw;
  }
}
.search-form ul li.other span {
  border: 1px solid #b46f6f;
  color: #b46f6f;
}
.search-form ul li.other-categories {
  display: none;
}
.search-form ul li span {
  cursor: pointer;
  line-height: 1;
  display: block;
  border: 1px solid #616161;
  padding: 3px 10px;
  border-radius: 50px;
  transition: 0.3s;
}
@media screen and (max-width: 1060px) {
  .search-form ul li span {
    padding: 0.2830188679vw 0.9433962264vw;
    border-radius: 4.7169811321vw;
  }
}
@media screen and (max-width: 768px) {
  .search-form ul li span {
    padding: 0.78125vw 2.6041666667vw;
    border-radius: 13.0208333333vw;
  }
}
@media screen and (max-width: 428px) {
  .search-form ul li span {
    padding: 1.0416666667vw 3.90625vw;
    border-radius: 13.0208333333vw;
  }
}
.search-form ul li.included span {
  color: #fff;
  background-color: #616161;
}
main .search-form ul {
  max-width: 660px;
  margin: 0;
}
.search-form.all li.other-categories {
  display: inline-block;
}
.search-form.all li.other span {
  color: #fff;
  background-color: #b46f6f;
}
.search-form .submit-btn {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  border-radius: 40px;
  background-color: #616161;
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .search-form .submit-btn {
    width: 3.7735849057vw;
    height: 3.7735849057vw;
    font-size: 1.9811320755vw;
    border-radius: 3.7735849057vw;
  }
}
@media screen and (max-width: 768px) {
  .search-form .submit-btn {
    width: 5.2083333333vw;
    height: 5.2083333333vw;
    font-size: 2.734375vw;
    border-radius: 5.2083333333vw;
  }
}
@media screen and (max-width: 428px) {
  .search-form .submit-btn {
    width: 7.8125vw;
    height: 7.8125vw;
    font-size: 3.90625vw;
  }
}

#about-tadayomi {
  background: url(images/common/footer-bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
@media screen and (max-width: 428px) {
  #about-tadayomi {
    background-position: calc(50% - 15.625vw) top;
  }
}
#about-tadayomi .inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 1060px) {
  #about-tadayomi .inner {
    padding-bottom: 9.4339622642vw;
  }
}
@media screen and (max-width: 768px) {
  #about-tadayomi .inner {
    padding-bottom: 13.0208333333vw;
  }
}
#about-tadayomi .inner p {
  max-width: 600px;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 1060px) {
  #about-tadayomi .inner p {
    max-width: 56.6037735849vw;
  }
}
@media screen and (max-width: 768px) {
  #about-tadayomi .inner p {
    max-width: 100%;
  }
}

#fukidashi .inner {
  padding-top: 0;
}

#about-us {
  background-color: #bdbdbd;
}
#about-us .inner {
  display: flex;
  padding-bottom: 100px;
}
@media screen and (max-width: 1060px) {
  #about-us .inner {
    padding-bottom: 9.4339622642vw;
  }
}
@media screen and (max-width: 768px) {
  #about-us .inner {
    display: block;
    padding-bottom: 13.0208333333vw;
  }
}
@media screen and (max-width: 428px) {
  #about-us .inner {
    display: block;
  }
}
#about-us .inner > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about-us .inner > div {
    width: 100%;
  }
}
#about-us .inner p {
  margin-bottom: 1.5em;
}

#copyright {
  background-color: #616161;
  color: #fff;
  text-align: center;
  margin: 0;
  padding: 10px;
}
@media screen and (max-width: 1060px) {
  #copyright {
    padding: 0.9433962264vw;
  }
}

footer.new-footer #fukidashi {
  text-align: center;
}
footer.new-footer #fukidashi h2 {
  background: url(images/common/fukidashi.png) no-repeat;
  background-position: center;
  background-size: 525px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 1060px) {
  footer.new-footer #fukidashi h2 {
    background-size: 49.5283018868vw;
    font-size: 2.0754716981vw;
  }
}
@media screen and (max-width: 768px) {
  footer.new-footer #fukidashi h2 {
    background-size: 80.7291666667vw;
    font-size: 3.3854166667vw;
  }
}

#home .h2-whatsnew {
  text-align: center;
  margin: 60px 0;
  line-height: 1;
}
@media screen and (max-width: 1060px) {
  #home .h2-whatsnew {
    margin: 5.6603773585vw 0;
  }
}
@media screen and (max-width: 768px) {
  #home .h2-whatsnew {
    margin: 6.5104166667vw 0 7.8125vw;
  }
}
#home .h2-whatsnew img {
  width: 265px;
}
@media screen and (max-width: 1060px) {
  #home .h2-whatsnew img {
    width: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #home .h2-whatsnew img {
    width: 59.8958333333vw;
  }
}
#home #content .inner {
  padding-top: 0;
}

#campaign .inner {
  padding: 0 30px;
}
@media screen and (max-width: 1060px) {
  #campaign .inner {
    padding: 0 2.8301886792vw;
  }
}
@media screen and (max-width: 768px) {
  #campaign .inner {
    padding: 0 3.90625vw;
  }
}

.campaign-slider {
  opacity: 0;
  padding-left: 0;
}
.campaign-slider.slick-initialized {
  opacity: 1;
  transition: 0.5s;
}
.campaign-slider li {
  margin-bottom: 0;
}
.campaign-slider .slick-slide img {
  margin: 0 auto;
}
.campaign-slider .slide-arrow {
  position: absolute;
  background-color: #fff;
  width: 70px;
  height: 24px;
  bottom: 20px;
  z-index: 1;
  cursor: pointer;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1060px) {
  .campaign-slider .slide-arrow {
    width: 6.6037735849vw;
    height: 2.2641509434vw;
    bottom: 1.8867924528vw;
    box-shadow: 0.1886792453vw 0.1886792453vw 0.3773584906vw rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .campaign-slider .slide-arrow {
    width: 15.625vw;
    height: 4.6875vw;
    bottom: 3.90625vw;
    box-shadow: 0.2604166667vw 0.2604166667vw 0.5208333333vw rgba(0, 0, 0, 0.3);
  }
}
.campaign-slider .slide-arrow.prev-arrow {
  right: 90px;
  border-radius: 12px 0 0 12px;
}
@media screen and (max-width: 1060px) {
  .campaign-slider .slide-arrow.prev-arrow {
    right: 8.4905660377vw;
    border-radius: 1.1320754717vw 0 0 1.1320754717vw;
  }
}
@media screen and (max-width: 768px) {
  .campaign-slider .slide-arrow.prev-arrow {
    right: 19.53125vw;
    border-radius: 2.34375vw 0 0 2.34375vw;
  }
}
.campaign-slider .slide-arrow.next-arrow {
  right: 10px;
  border-radius: 0 12px 12px 0;
}
@media screen and (max-width: 1060px) {
  .campaign-slider .slide-arrow.next-arrow {
    right: 0.9433962264vw;
    border-radius: 0 1.1320754717vw 1.1320754717vw 0;
  }
}
@media screen and (max-width: 768px) {
  .campaign-slider .slide-arrow.next-arrow {
    right: 2.6041666667vw;
    border-radius: 0 2.34375vw 2.34375vw 0;
  }
}

.magazine-slider {
  padding-left: 0;
  height: 450px;
  overflow: hidden;
  opacity: 0;
}
@media screen and (max-width: 1060px) {
  .magazine-slider {
    height: 42.4528301887vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider {
    height: 58.59375vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider {
    height: 78.125vw;
  }
}
.magazine-slider.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
@media screen and (max-width: 1060px) {
  .magazine-slider.slick-dotted.slick-slider {
    margin-bottom: 2.8301886792vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider.slick-dotted.slick-slider {
    margin-bottom: 3.90625vw;
  }
}
.magazine-slider.slick-initialized {
  opacity: 1;
  transition: 0.5s;
}
.magazine-slider .slick-slide {
  height: 450px !important;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide {
    height: 42.4528301887vw !important;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide {
    height: 58.59375vw !important;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide {
    height: 78.125vw !important;
  }
}
.magazine-slider .slick-slide > div > li {
  height: 450px;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li {
    height: 42.4528301887vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li {
    height: 58.59375vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide > div > li {
    height: 78.125vw;
  }
}
.magazine-slider .slick-slide > div > li a {
  color: #fff;
}
.magazine-slider .slick-slide > div > li .thumb {
  position: absolute;
  width: 100%;
  height: 450px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .thumb {
    height: 42.4528301887vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .thumb {
    height: 58.59375vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide > div > li .thumb {
    height: 78.125vw;
  }
}
.magazine-slider .slick-slide > div > li .thumb img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .thumb img {
    height: 42.4528301887vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .thumb img {
    height: 58.59375vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide > div > li .thumb img {
    height: 78.125vw;
  }
}
.magazine-slider .slick-slide > div > li .text {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px 110px;
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 810px;
  text-align: center;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .text {
    padding: 1.8867924528vw 10.3773584906vw;
    width: 76.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .text {
    padding: 3.90625vw 10.4166666667vw;
    width: 88.5416666667vw;
  }
}
.magazine-slider .slick-slide > div > li .text span,
.magazine-slider .slick-slide > div > li .text time {
  margin-right: 10px;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .text span,
.magazine-slider .slick-slide > div > li .text time {
    margin-right: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .text span,
.magazine-slider .slick-slide > div > li .text time {
    margin-right: 1.3020833333vw;
  }
}
.magazine-slider .slick-slide > div > li .text .title {
  text-align: left;
  font-size: 24px;
  margin: 10px 0;
  line-height: 1.3;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .text .title {
    font-size: 2.2641509434vw;
    margin: 0.9433962264vw 0;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .text .title {
    font-size: 3.125vw;
    margin: 1.3020833333vw 0;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide > div > li .text .title {
    font-size: 3.6458333333vw;
    margin: 1.3020833333vw 0;
  }
}
.magazine-slider .slick-slide > div > li .text .cat-list {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.magazine-slider .slick-slide > div > li .text .cat-list li {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 3px 5px;
  line-height: 1;
  border: 1px solid #fff;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .text .cat-list li {
    margin: 0 0.9433962264vw 0 0;
    padding: 0.2830188679vw 0.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .text .cat-list li {
    margin: 0 1.3020833333vw 0 0;
    padding: 0.390625vw 0.6510416667vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide > div > li .text .cat-list li {
    font-size: 2.8645833333vw;
  }
}
.magazine-slider .slick-slide > div > li .magazine-buttons {
  width: 310px;
  margin: 0 auto;
  text-align: left;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-slide > div > li .magazine-buttons {
    width: 29.2452830189vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-slide > div > li .magazine-buttons {
    width: 40.3645833333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-slider .slick-slide > div > li .magazine-buttons {
    width: 100%;
  }
}
.magazine-slider .slick-dots {
  bottom: 10px;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-dots {
    bottom: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-dots {
    bottom: 1.3020833333vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-dots li {
    width: 6.5104166667vw;
    height: 6.5104166667vw;
  }
}
.magazine-slider .slick-dots li button:before {
  font-size: 20px;
  opacity: 1;
  color: #fff;
  text-shadow: 0 0 3px rgba(190, 190, 190, 0.8);
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-dots li button:before {
    font-size: 1.8867924528vw;
    text-shadow: 0 0 0.2830188679vw rgba(190, 190, 190, 0.8);
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-dots li button:before {
    font-size: 4.6875vw;
    text-shadow: 0 0 0.390625vw rgba(190, 190, 190, 0.8);
  }
}
.magazine-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #bdbdbd;
  text-shadow: 0 0 3px rgba(190, 190, 190, 0.8);
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slick-dots li.slick-active button:before {
    text-shadow: 0 0 0.2830188679vw rgba(190, 190, 190, 0.8);
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slick-dots li.slick-active button:before {
    text-shadow: 0 0 0.390625vw rgba(190, 190, 190, 0.8);
  }
}
.magazine-slider .slide-arrow {
  position: absolute;
  border: 1px solid #fff;
  border-radius: 50px;
  width: 46px;
  height: 46px;
  top: calc(50% - 23px);
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slide-arrow {
    border-radius: 4.7169811321vw;
    width: 4.3396226415vw;
    height: 4.3396226415vw;
    top: calc(50% - 2.1698113208vw);
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slide-arrow {
    border-radius: 6.5104166667vw;
    width: 5.9895833333vw;
    height: 5.9895833333vw;
    top: calc(50% - 2.9947916667vw);
  }
}
.magazine-slider .slide-arrow:after {
  content: "";
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 15px;
  left: 8px;
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slide-arrow:after {
    width: 1.8867924528vw;
    height: 1.8867924528vw;
    top: 1.4150943396vw;
    left: 0.7547169811vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slide-arrow:after {
    width: 2.6041666667vw;
    height: 2.6041666667vw;
    top: 1.6927083333vw;
    left: 1.0416666667vw;
  }
}
.magazine-slider .slide-arrow.prev-arrow {
  left: calc(50% - 370px);
  transform: rotate(-135deg);
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slide-arrow.prev-arrow {
    left: calc(50% - 34.9056603774vw);
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slide-arrow.prev-arrow {
    left: calc(50% - 41.6666666667vw);
  }
}
.magazine-slider .slide-arrow.next-arrow {
  right: calc(50% - 370px);
  transform: rotate(45deg);
}
@media screen and (max-width: 1060px) {
  .magazine-slider .slide-arrow.next-arrow {
    right: calc(50% - 34.9056603774vw);
  }
}
@media screen and (max-width: 768px) {
  .magazine-slider .slide-arrow.next-arrow {
    right: calc(50% - 41.6666666667vw);
  }
}

.magazine-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 35px;
  padding-left: 0;
  list-style-type: none;
  margin: 0;
}
@media screen and (max-width: 1060px) {
  .magazine-list {
    gap: 4.7169811321vw 3.3018867925vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list {
    gap: 6.5104166667vw 3.90625vw;
    justify-content: center;
  }
}
.magazine-list > li {
  width: 310px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li {
    width: 29.2452830189vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li {
    width: calc(50% - 2.0182291667vw);
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li {
    width: 100%;
  }
}
.magazine-list > li .thumb {
  height: 210px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li .thumb {
    height: 19.8113207547vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li .thumb {
    height: 28.6458333333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li .thumb {
    height: 52.0833333333vw;
  }
}
.magazine-list > li .thumb img {
  object-fit: cover;
  width: 310px;
  height: 210px;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li .thumb img {
    width: 29.2452830189vw;
    height: 19.8113207547vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li .thumb img {
    width: 100%;
    height: 28.6458333333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li .thumb img {
    height: 52.0833333333vw;
  }
}
.magazine-list > li.gravure .thumb img {
  object-fit: inherit;
  width: auto;
}
.magazine-list > li .text {
  background-color: #f5f0f0;
  font-size: 12px;
  padding: 10px;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li .text {
    font-size: 1.1320754717vw;
    padding: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li .text {
    font-size: 1.5625vw;
    padding: 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li .text {
    font-size: 3.125vw;
    padding: 2.34375vw;
  }
}
.magazine-list > li .text .title {
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 15px;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li .text .title {
    font-size: 1.4150943396vw;
    margin-bottom: 0.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li .text .title {
    font-size: 1.953125vw;
    margin-bottom: 0.6510416667vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li .text .title {
    font-size: 3.6458333333vw;
    margin-bottom: 1.3020833333vw;
  }
}
.magazine-list > li .text span {
  background-color: #757575;
  color: #fff;
  margin-right: 5px;
  padding: 3px 10px;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li .text span {
    margin-right: 0.4716981132vw;
    padding: 0.2830188679vw 0.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li .text span {
    margin-right: 0.6510416667vw;
    padding: 0.390625vw 0.6510416667vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li .text span {
    margin-right: 1.3020833333vw;
    padding: 0.78125vw 1.3020833333vw;
  }
}
.magazine-list > li .text time {
  margin-right: 5px;
}
@media screen and (max-width: 1060px) {
  .magazine-list > li .text time {
    margin-right: 0.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list > li .text time {
    margin-right: 0.6510416667vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list > li .text time {
    margin-right: 1.3020833333vw;
  }
}
.magazine-list .cat-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0;
  z-index: 1;
}
.magazine-list .cat-list li {
  background-color: #616161;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1060px) {
  .magazine-list .cat-list li {
    margin-right: 0.4716981132vw;
    margin-bottom: 0.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list .cat-list li {
    margin-right: 0.6510416667vw;
    margin-bottom: 0.6510416667vw;
  }
}
.magazine-list .cat-list li a {
  color: #fff;
  font-size: 10px;
  display: block;
  padding: 3px 10px;
  text-decoration: none;
}
@media screen and (max-width: 1060px) {
  .magazine-list .cat-list li a {
    font-size: 0.9433962264vw;
    padding: 0.2830188679vw 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list .cat-list li a {
    font-size: 1.5625vw;
    padding: 0.390625vw 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list .cat-list li a {
    font-size: 3.125vw;
    padding: 0.6510416667vw 2.34375vw;
  }
}
.magazine-list .view-count {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
  background-color: #616161;
  color: #fff;
  padding: 3px 10px;
}
@media screen and (max-width: 1060px) {
  .magazine-list .view-count {
    font-size: 0.9433962264vw;
    padding: 0.2830188679vw 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-list .view-count {
    font-size: 1.5625vw;
    padding: 0.390625vw 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-list .view-count {
    font-size: 3.125vw;
    padding: 0.6510416667vw 2.34375vw;
  }
}

.magazine-buttons {
  display: flex;
}
.magazine-buttons .magazine-button {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  width: 33.333%;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 1060px) {
  .magazine-buttons .magazine-button {
    font-size: 1.2264150943vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-buttons .magazine-button {
    font-size: 1.6927083333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-buttons .magazine-button {
    font-size: 2.8645833333vw;
  }
}
.magazine-buttons .magazine-button:nth-of-type(1) {
  background-color: #b46f6f;
}
.magazine-buttons .magazine-button:nth-of-type(2) {
  background-color: #b4ae8d;
}
.magazine-buttons .magazine-button:nth-of-type(3) {
  background-color: #6db5b5;
}
.magazine-buttons .magazine-button.no-url {
  background-color: #bdbdbd;
}
.magazine-buttons .magazine-button.no-url a {
  pointer-events: none;
}
.magazine-buttons .magazine-button a {
  padding: 7px 10px;
  display: block;
  color: #fff;
}
@media screen and (max-width: 1060px) {
  .magazine-buttons .magazine-button a {
    padding: 0.6603773585vw 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-buttons .magazine-button a {
    padding: 0.9114583333vw 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-buttons .magazine-button a {
    padding: 1.8229166667vw 2.6041666667vw;
  }
}
.magazine-buttons .magazine-button button {
  background-color: #b4ae8d;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: bold;
  padding: 7px 10px;
  width: 100%;
  text-align: left;
  line-height: 1.8;
}
@media screen and (max-width: 1060px) {
  .magazine-buttons .magazine-button button {
    font-size: 1.2264150943vw;
    padding: 0.6603773585vw 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-buttons .magazine-button button {
    font-size: 1.8229166667vw;
    padding: 0.9114583333vw 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-buttons .magazine-button button {
    font-size: 2.8645833333vw;
    padding: 1.8229166667vw 2.6041666667vw;
    line-height: 1.8;
  }
}
.magazine-buttons .magazine-button button:hover {
  opacity: 0.8;
}
.magazine-buttons .magazine-button i {
  position: absolute;
  right: 10px;
  top: 11px;
}
@media screen and (max-width: 1060px) {
  .magazine-buttons .magazine-button i {
    right: 0.9433962264vw;
    top: 1.0377358491vw;
  }
}
@media screen and (max-width: 768px) {
  .magazine-buttons .magazine-button i {
    right: 1.3020833333vw;
    top: 1.6927083333vw;
  }
}
@media screen and (max-width: 428px) {
  .magazine-buttons .magazine-button i {
    right: 2.6041666667vw;
    top: 3.125vw;
  }
}
.magazine-buttons .magazine-button .simplefavorite-button.active {
  opacity: 1;
}
.magazine-buttons .magazine-button .simplefavorite-button.active:hover {
  opacity: 0.8;
}

/* All Categories */
.all-categories {
  font-size: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .all-categories {
    gap: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .all-categories {
    gap: 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .all-categories {
    gap: 1.953125vw;
  }
}
.all-categories li {
  display: inline-block;
}
.all-categories li a {
  line-height: 1;
  font-size: 15px;
  border: 1px solid #616161;
  display: block;
  border-radius: 100px;
  padding: 5px 20px;
  transition: 0.3s;
}
@media screen and (max-width: 1060px) {
  .all-categories li a {
    font-size: 1.4150943396vw;
    border-radius: 9.4339622642vw;
    padding: 0.4716981132vw 1.8867924528vw;
  }
}
@media screen and (max-width: 768px) {
  .all-categories li a {
    font-size: 2.8645833333vw;
    border-radius: 26.0416666667vw;
    padding: 1.0416666667vw 3.90625vw;
  }
}
@media screen and (max-width: 428px) {
  .all-categories li a {
    font-size: 3.6458333333vw;
    border-radius: 26.0416666667vw;
    padding: 1.0416666667vw 3.90625vw;
  }
}
.all-categories li a:hover {
  background-color: #616161;
  color: #fff;
}
.all-categories li:nth-of-type(-n + 12) a {
  font-size: 28px;
  padding: 8px 30px;
  font-weight: bold;
}
@media screen and (max-width: 1060px) {
  .all-categories li:nth-of-type(-n + 12) a {
    font-size: 2.4528301887vw;
    padding: 0.7547169811vw 2.8301886792vw;
  }
}
@media screen and (max-width: 768px) {
  .all-categories li:nth-of-type(-n + 12) a {
    font-size: 4.1666666667vw;
    padding: 1.5625vw 5.2083333333vw;
  }
}

/* All Categories */
.all-magazines {
  font-size: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1060px) {
  .all-magazines {
    gap: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .all-magazines {
    gap: 1.3020833333vw;
  }
}
@media screen and (max-width: 428px) {
  .all-magazines {
    gap: 1.953125vw;
  }
}
.all-magazines li {
  display: inline-block;
}
.all-magazines li a {
  line-height: 1;
  font-size: 15px;
  border: 1px solid #616161;
  display: block;
  border-radius: 100px;
  padding: 5px 20px;
  transition: 0.3s;
}
@media screen and (max-width: 1060px) {
  .all-magazines li a {
    font-size: 1.4150943396vw;
    border-radius: 9.4339622642vw;
    padding: 0.4716981132vw 1.8867924528vw;
  }
}
@media screen and (max-width: 768px) {
  .all-magazines li a {
    font-size: 2.8645833333vw;
    border-radius: 26.0416666667vw;
    padding: 1.0416666667vw 3.90625vw;
  }
}
@media screen and (max-width: 428px) {
  .all-magazines li a {
    font-size: 3.6458333333vw;
    border-radius: 26.0416666667vw;
    padding: 1.0416666667vw 3.90625vw;
  }
}
.all-magazines li a:hover {
  background-color: #616161;
  color: #fff;
}

/* 後から読む */
.favorites-list {
  padding-left: 0;
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 1060px) {
  .favorites-list {
    width: 75.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .favorites-list {
    width: 100%;
  }
}
.favorites-list li {
  border-top: none !important;
  padding: 0 !important;
}
.favorites-list li:nth-of-type(2n) {
  background-color: #f5f0f0;
}
.favorites-list li p {
  margin: 0;
}
.favorites-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 1.4;
  font-weight: bold;
  padding: 10px;
  padding-right: 130px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .favorites-list li a {
    font-size: 1.8867924528vw;
    padding: 0.9433962264vw;
    padding-right: 12.2641509434vw;
  }
}
@media screen and (max-width: 768px) {
  .favorites-list li a {
    font-size: 3.3854166667vw;
    padding: 1.953125vw;
    padding-right: 22.1354166667vw;
  }
}
.favorites-list li a img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 1060px) {
  .favorites-list li a img {
    width: 9.4339622642vw;
    height: 9.4339622642vw;
  }
}
@media screen and (max-width: 768px) {
  .favorites-list li a img {
    width: 19.53125vw;
    height: 19.53125vw;
  }
}
.favorites-list .simplefavorite-button {
  background-color: #b4ae8d;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: bold;
  padding: 7px 10px;
  text-align: left;
  position: absolute;
  right: 10px;
  width: 100px;
}
@media screen and (max-width: 1060px) {
  .favorites-list .simplefavorite-button {
    font-size: 1.320754717vw;
    padding: 0.6603773585vw 0.9433962264vw;
    width: 9.4339622642vw;
  }
}
@media screen and (max-width: 768px) {
  .favorites-list .simplefavorite-button {
    font-size: 2.8645833333vw;
    padding: 1.3020833333vw 1.953125vw;
    width: 18.2291666667vw;
  }
}
@media screen and (max-width: 428px) {
  .favorites-list .simplefavorite-button {
    padding: 1.8229166667vw 2.6041666667vw;
    line-height: 1.8;
  }
}
.favorites-list .simplefavorite-button:hover {
  opacity: 0.8;
}
.favorites-list .simplefavorite-button i {
  position: absolute;
  right: 10px;
  top: 11px;
}
@media screen and (max-width: 1060px) {
  .favorites-list .simplefavorite-button i {
    right: 0.9433962264vw;
    top: 1.0377358491vw;
  }
}
@media screen and (max-width: 768px) {
  .favorites-list .simplefavorite-button i {
    right: 1.953125vw;
    top: 2.0833333333vw;
  }
}
@media screen and (max-width: 428px) {
  .favorites-list .simplefavorite-button i {
    right: 2.6041666667vw;
    top: 3.125vw;
  }
}
.favorites-list .simplefavorite-button.active {
  opacity: 1;
}
.favorites-list .simplefavorite-button.active:hover {
  opacity: 0.8;
}

.pagination ul.page-numbers > li a {
  border-radius: inherit;
  box-shadow: inherit;
  color: #616161;
}
.pagination ul.page-numbers > li .current,
.pagination ul.page-numbers > li a:hover {
  background-color: #616161;
  border-radius: inherit;
}

/* Button */
.new-btn {
  display: inline-block;
}
.new-btn a {
  border-radius: 30px;
  display: block;
  padding: 10px 35px;
}
@media screen and (max-width: 1060px) {
  .new-btn a {
    border-radius: 2.8301886792vw;
    padding: 0.9433962264vw 3.3018867925vw;
  }
}
@media screen and (max-width: 768px) {
  .new-btn a {
    border-radius: 5.2083333333vw;
    padding: 1.3020833333vw 4.5572916667vw;
  }
}

.btn-white a {
  color: #616161;
  background-color: #fff;
}

.btn-gray a {
  color: #fff;
  background-color: #616161;
}

/* Sidebar */
.sidebar {
  padding-top: 95px;
}
@media screen and (max-width: 1060px) {
  .sidebar {
    padding-top: 8.9622641509vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    padding-top: 13.0208333333vw;
  }
}
.sidebar .widgettitle {
  background: none;
  font-weight: bold;
  color: #616161;
  font-size: 1.4em;
  padding: 0;
  margin-bottom: 1em;
}
.sidebar .widgettitle:before {
  content: inherit;
}
.sidebar .widget {
  margin-top: 0;
}
.sidebar .sidebar_popular ul li {
  border: none;
  position: relative;
}
.sidebar .sidebar_popular ul li a {
  display: flex;
  line-height: 1.4;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 15px;
}
@media screen and (max-width: 1060px) {
  .sidebar .sidebar_popular ul li a {
    padding: 0.9433962264vw 0;
    font-size: 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar_popular ul li a {
    padding: 2.6041666667vw 0;
    font-size: 3.3854166667vw;
  }
}
.sidebar .sidebar_popular ul li a:after {
  content: inherit;
}
.sidebar .sidebar_popular ul li a .thumb {
  width: 60px;
  height: 60px;
  background-color: #f5f0f0;
}
@media screen and (max-width: 1060px) {
  .sidebar .sidebar_popular ul li a .thumb {
    width: 5.6603773585vw;
    height: 5.6603773585vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar_popular ul li a .thumb {
    width: 15.625vw;
    height: 15.625vw;
  }
}
.sidebar .sidebar_popular ul li a .thumb img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
@media screen and (max-width: 1060px) {
  .sidebar .sidebar_popular ul li a .thumb img {
    width: 5.6603773585vw;
    height: 5.6603773585vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar_popular ul li a .thumb img {
    width: 15.625vw;
    height: 15.625vw;
  }
}
.sidebar .sidebar_popular ul li a .text {
  width: calc(100% - 80px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 2.8em;
}
@media screen and (max-width: 1060px) {
  .sidebar .sidebar_popular ul li a .text {
    width: calc(100% - 7.5471698113vw);
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar_popular ul li a .text {
    width: calc(100% - 20.8333333333vw);
  }
}
.sidebar .sidebar_popular ul li a .view {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #616161;
  font-weight: bold;
  font-size: 15px;
}
@media screen and (max-width: 1060px) {
  .sidebar .sidebar_popular ul li a .view {
    bottom: 0.9433962264vw;
    font-size: 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar .sidebar_popular ul li a .view {
    bottom: 2.6041666667vw;
    font-size: 3.3854166667vw;
  }
}
.sidebar select {
  border: 1px solid #616161;
  height: 40px;
  border-radius: 50px;
  font-size: 15px;
  padding: 10px;
  webkit-appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: 96% center;
}
@media screen and (max-width: 1060px) {
  .sidebar select {
    height: 3.7735849057vw;
    border-radius: 4.7169811321vw;
    font-size: 1.4150943396vw;
    padding: 0.9433962264vw;
    background-size: 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  .sidebar select {
    height: 7.8125vw;
    border-radius: 5.2083333333vw;
    font-size: 2.8645833333vw;
    padding: 2.0833333333vw;
    background-size: 3.3854166667vw;
  }
}

/* Single */
.single section#content .inner {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .single section#content .inner {
    display: block;
  }
}
.single section#content .inner main {
  width: 670px;
}
@media screen and (max-width: 1060px) {
  .single section#content .inner main {
    width: 63.2075471698vw;
  }
}
@media screen and (max-width: 768px) {
  .single section#content .inner main {
    width: 100%;
  }
}
.single section#content .inner .sidebar {
  width: 270px;
  float: none;
}
@media screen and (max-width: 1060px) {
  .single section#content .inner .sidebar {
    width: 25.4716981132vw;
  }
}
@media screen and (max-width: 768px) {
  .single section#content .inner .sidebar {
    width: 100%;
  }
}
.single .entry-content .info-wrap_single .single-title {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .info-wrap_single .single-title {
    font-size: 2.4528301887vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .info-wrap_single .single-title {
    font-size: 4.5283018868vw;
  }
}
.single .entry-content .info-wrap_single .date-wrap {
  display: inline-block;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .info-wrap_single .date-wrap {
    margin: 0 0 0.9433962264vw 0;
  }
}
.single .entry-content .info-wrap_single .date-wrap .label {
  background-color: #616161;
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  line-height: 1;
  padding: 5px 15px;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .info-wrap_single .date-wrap .label {
    font-size: 1.1320754717vw;
    border-radius: 1.8867924528vw;
    padding: 0.4716981132vw 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .info-wrap_single .date-wrap .label {
    font-size: 2.8645833333vw;
    padding: 0.78125vw 2.6041666667vw;
    border-radius: 5.2083333333vw;
  }
}
.single .entry-content .info-wrap_single .date-wrap ul li {
  margin-right: 10px;
  display: inline-block;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .info-wrap_single .date-wrap ul li {
    margin-right: 0.9433962264vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .info-wrap_single .date-wrap ul li {
    margin-right: 2.0833333333vw;
    font-size: 2.8645833333vw;
  }
}
.single .entry-content .info-wrap_single .cat-wrap {
  display: inline-block;
}
.single .entry-content .info-wrap_single .cat-wrap .cat-list_single {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 10px 0;
  gap: 10px;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .info-wrap_single .cat-wrap .cat-list_single {
    margin: 0 0 0.9433962264vw 0;
    gap: 0.9433962264vw;
  }
}
.single .entry-content .info-wrap_single .cat-wrap .cat-list_single li {
  display: inline-block;
  margin: 0;
}
.single .entry-content .info-wrap_single .cat-wrap .cat-list_single li a {
  line-height: 1;
  font-size: 12px;
  border: 1px solid #616161;
  line-height: 1;
  padding: 5px 15px;
  color: #616161;
  display: block;
  border-radius: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .info-wrap_single .cat-wrap .cat-list_single li a {
    font-size: 1.1320754717vw;
    padding: 0.4716981132vw 1.4150943396vw;
    border-radius: 1.8867924528vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .info-wrap_single .cat-wrap .cat-list_single li a {
    font-size: 2.8645833333vw;
    padding: 0.78125vw 2.6041666667vw;
    border-radius: 5.2083333333vw;
  }
}
.single .entry-content .info-wrap_single .cat-wrap .cat-list_single li a:hover {
  background-color: #616161;
  color: #fff;
  opacity: 1;
}
.single .entry-content .content-wrap_single {
  margin-top: 60px;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .content-wrap_single {
    margin-top: 5.6603773585vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .content-wrap_single {
    margin-top: 10.4166666667vw;
  }
}
.single .entry-content .content-wrap_single > h2 {
  background: inherit;
  color: #616161;
  font-size: 1.6em;
  font-weight: bold;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .single .entry-content .content-wrap_single > h2 {
    font-size: 1.3em;
    line-height: 1.4;
  }
}
.single .entry-content .content-wrap_single > h2:before {
  content: inherit;
}
.single .entry-content .content-wrap_single > h3 {
  padding: 0 0 0.5em 0;
  color: #616161;
  font-weight: bold;
  border-bottom: 1px solid #616161;
}
.single .entry-content .content-wrap_single > h3:before {
  content: inherit;
}
.single .entry-content .content-wrap_single > h4 {
  color: #616161;
  font-size: 1em;
  font-weight: bold;
}
.single .entry-content .content-wrap_single a {
  text-decoration: underline;
}
.single .entry-content .tadayomi-section {
  text-align: center;
}
@media screen and (max-width: 428px) {
  .single .entry-content .tadayomi-section p {
    font-size: 2.8645833333vw;
  }
}
.single .entry-content .post-head {
  max-width: 500px;
  margin: 40px auto 0;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .post-head {
    max-width: 47.1698113208vw;
    margin: 3.7735849057vw auto 0;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .post-head {
    max-width: 100%;
  }
}
.single .entry-content .eyecatch {
  width: 400px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .eyecatch {
    width: 37.7358490566vw;
    margin: 0 auto 3.7735849057vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .eyecatch {
    width: 90%;
  }
}
.single .entry-content .magazine-buttons {
  margin: 0 auto;
  max-width: 460px;
}
@media screen and (max-width: 1060px) {
  .single .entry-content .magazine-buttons {
    max-width: 43.3962264151vw;
  }
}
@media screen and (max-width: 768px) {
  .single .entry-content .magazine-buttons {
    max-width: 57.2916666667vw;
  }
}
@media screen and (max-width: 428px) {
  .single .entry-content .magazine-buttons {
    max-width: 67.7083333333vw;
  }
}
.single .hash-tags h2 {
  margin-bottom: 0;
}
.single .hash-tags .tag-list_single {
  margin-top: 60px;
}
@media screen and (max-width: 1060px) {
  .single .hash-tags .tag-list_single {
    margin-top: 5.6603773585vw;
  }
}
@media screen and (max-width: 768px) {
  .single .hash-tags .tag-list_single {
    margin-top: 10.4166666667vw;
  }
}
.single .hash-tags .tag-list_single li a {
  border: inherit;
  color: #616161;
  transition: 0.3s;
  border-radius: 20px;
  font-size: 15px;
  text-decoration: underline;
}
@media screen and (max-width: 1060px) {
  .single .hash-tags .tag-list_single li a {
    border-radius: 1.8867924528vw;
    font-size: 1.4150943396vw;
  }
}
@media screen and (max-width: 768px) {
  .single .hash-tags .tag-list_single li a {
    font-size: 2.8645833333vw;
    border-radius: 5.2083333333vw;
  }
}
.single .hash-tags .tag-list_single li a:hover {
  background-color: #616161;
  color: #fff;
  opacity: 1;
}
.single .entry-content .tadayomi-section01 {
  margin-bottom: 0;
}

/* 人気の記事 */
#popular-post .inner {
  padding-top: 0;
}

/* Page Top */
#page_top a {
  background-color: #616161;
  color: #fff;
}
#page_top a:hover {
  color: #616161;
}