@charset "UTF-8";
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* ===========
==============全体 =============== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #353535;
  background-color: #fff;
}
body.is-open {
  overflow: hidden;
}

.l-main-wrapper,
.l-main-sub__wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: stretch;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 750px) {
  .l-main-wrapper,
  .l-main-sub__wrapper {
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
  }
}

.l-main {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 32px;
  flex-shrink: 1;
  order: 2;
  padding-left: 40px;
}
@media screen and (max-width: 750px) {
  .l-main {
    padding-left: 2.9333333333vw;
    row-gap: 4.2666666667vw;
  }
}

.l-main-sub {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 8px;
  flex-shrink: 1;
  order: 2;
  padding-left: 40px;
}
@media screen and (max-width: 750px) {
  .l-main-sub {
    padding-left: 2.9333333333vw;
    row-gap: 1.0666666667vw;
  }
}

.l-sidebar-left {
  width: 300px;
  flex-shrink: 0;
  order: 1;
}

.l-main-body,
.l-main-sub__body {
  width: 100%;
  min-width: 768px;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding-right: 40px;
}
@media screen and (max-width: 1200px) {
  .l-main-body,
  .l-main-sub__body {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 20px;
    min-width: 0;
  }
}
@media screen and (max-width: 750px) {
  .l-main-body,
  .l-main-sub__body {
    padding-right: 2.9333333333vw;
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
  }
}

.l-main-content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  flex-grow: 1;
}

.l-main-content-sub {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 16px;
}
@media screen and (max-width: 750px) {
  .l-main-content-sub {
    padding-top: 2.6666666667vw;
  }
}
.l-main-content-sub .c-filters__buttons {
  margin-bottom: 2.1333333333vw;
}

.l-main-sidebar {
  width: 360px;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
}
@media screen and (max-width: 1600px) {
  .l-main-sidebar {
    min-width: 240px;
    max-width: 360px;
    width: 360px;
    height: -moz-fit-content;
    height: fit-content;
    flex-shrink: 1;
    flex-grow: 0;
  }
}
@media screen and (max-width: 1200px) {
  .l-main-sidebar {
    width: 100%;
    max-width: 100%;
  }
}

.l-main-sub .l-main-sidebar {
  padding-top: 32px;
}

.pc-only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc-only {
    display: none;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-none {
    display: block;
  }
}

/* ===========
==============font =============== */
.serifReg {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

/* ===========
==============見出し =============== */
.c-logo {
  display: block;
  width: 223px;
  aspect-ratio: 233/65;
  transition: opacity 0.3s ease-in-out;
}
.c-logo:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .c-logo:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .c-logo {
    width: 29.7333333333vw;
    aspect-ratio: 223/65;
  }
}
.c-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-main-content__h2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: baseline;
  -moz-column-gap: 11px;
       column-gap: 11px;
  padding-left: 22px;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 750px) {
  .c-main-content__h2 {
    -moz-column-gap: 1.4666666667vw;
         column-gap: 1.4666666667vw;
    padding-left: 2.9333333333vw;
    border-bottom: 0.1333333333vw solid #DDDDDD;
  }
}
.c-main-content__h2 span:first-child {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .c-main-content__h2 span:first-child {
    font-size: 6vw;
  }
}
.c-main-content__h2 span:last-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .c-main-content__h2 span:last-child {
    font-size: 2.1333333333vw;
  }
}

.c-main-sidebar__h2 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: baseline;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding-left: 19px;
  border-bottom: 1px solid #DDDDDD;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .c-main-sidebar__h2 {
    -moz-column-gap: 2vw;
         column-gap: 2vw;
    padding-left: 2.5333333333vw;
    border-bottom: 0.1333333333vw solid #DDDDDD;
  }
}
.c-main-sidebar__h2 span:first-child {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.44;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .c-main-sidebar__h2 span:first-child {
    font-size: 4.2666666667vw;
  }
}
.c-main-sidebar__h2 span:last-child {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .c-main-sidebar__h2 span:last-child {
    font-size: 2.1333333333vw;
  }
}

/* ===========
==============共通部品 =============== */
.c-search-box {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  padding: 0 12px;
}
@media screen and (max-width: 750px) {
  .c-search-box {
    width: 100%;
    height: 8.1333333333vw;
    padding: 0 1.6vw;
    border-radius: 0.6666666667vw;
  }
}
.c-search-box input {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  background-color: transparent;
  flex-shrink: 1;
}
@media screen and (max-width: 750px) {
  .c-search-box input {
    font-size: 2.8vw;
    line-height: 1.44;
  }
}
.c-search-box input::-moz-placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  color: #969696;
}
.c-search-box input::placeholder {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-search-box input::-moz-placeholder {
    font-size: 2.8vw;
    line-height: 1.44;
  }
  .c-search-box input::placeholder {
    font-size: 2.8vw;
    line-height: 1.44;
  }
}
.c-search-box input:focus {
  outline: none;
}
.c-search-box button {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  flex-shrink: 0;
}
.c-search-box button img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-search-box button img {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
  }
}

.c-sns {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-sns__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 31px;
       column-gap: 31px;
}
@media screen and (max-width: 750px) {
  .c-sns__list {
    -moz-column-gap: 4.1333333333vw;
         column-gap: 4.1333333333vw;
    justify-content: flex-start;
  }
}

.c-sns__item {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
}
.c-sns__item a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
}
.c-sns__item img {
  width: 33px;
  height: 33px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-sns__item img {
    width: 4.4vw;
    height: 4.4vw;
  }
}

.c-ads--tall {
  width: 100%;
  height: auto;
  background-color: #f7f7f7;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .c-ads--tall {
    height: auto;
  }
  .c-ads--tall .ad-google-slot-wrapper {
    height: auto;
  }
}
@media screen and (max-width: 750px) {
  .c-ads--tall {
    width: 94.6666666667vw;
    margin: 0 -0.2666666667vw;
  }
}
.c-ads--tall .adsbygoogle {
  width: 100% !important;
  height: 100% !important;
}
.c-ads--tall .adsbygoogle.tall-ad-responsive {
  min-height: 250px;
}
.c-ads--tall ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.c-ads--short {
  width: 100%;
  aspect-ratio: 360/360;
  background-color: #f7f7f7;
}
@media screen and (max-width: 750px) {
  .c-ads--short {
    width: 94.6666666667vw;
    margin: 0 -0.2666666667vw;
  }
}
.c-ads--short img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-breadcrumbs {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs {
    -moz-column-gap: 2.1333333333vw;
         column-gap: 2.1333333333vw;
  }
}
.c-breadcrumbs li {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.66;
  color: #969696;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs li {
    font-size: 1.6vw;
  }
}
.c-breadcrumbs li a {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.66;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs li a {
    font-size: 1.6vw;
  }
}
.c-breadcrumbs li:first-child {
  padding-left: 18px;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs li:first-child {
    padding-left: 2.4vw;
  }
}
.c-breadcrumbs li:first-child:before {
  content: "";
  background-image: url(../images/icon-home.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 16px;
  height: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs li:first-child:before {
    width: 2.1333333333vw;
    height: 2vw;
  }
}
.c-breadcrumbs li:not(:first-child):before {
  content: ">";
  position: absolute;
  left: -10px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.66;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-breadcrumbs li:not(:first-child):before {
    font-size: 1.6vw;
    left: -1.3333333333vw;
  }
}

/* ===========
==============ボタン関連 =============== */
.c-button__wrapper--large {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}
@media screen and (max-width: 750px) {
  .c-button__wrapper--large {
    padding-top: 0.5333333333vw;
  }
}

.c-button--large {
  width: 284px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.5;
  color: #353535;
  background-color: #fff;
  border-radius: 100px;
  border: 1px solid #353535;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .c-button--large {
    width: 52.4vw;
    height: 11.4666666667vw;
    font-size: 2.8vw;
    line-height: 1.5;
    border-radius: 13.3333333333vw;
  }
}
.c-button--large::after {
  content: "";
  background-color: #353535;
  -webkit-mask-image: url(../images/arrow-right.svg);
          mask-image: url(../images/arrow-right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  position: absolute;
  width: 7.21px;
  height: 12px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 16px;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .c-button--large::after {
    width: 1.3333333333vw;
    height: 2.2666666667vw;
    right: 2.6666666667vw;
  }
}
.c-button--large:hover {
  background-color: #353535;
  color: #fff;
}
.c-button--large:hover::after {
  background-color: #fff;
}

/* ===========
==============カード関連 =============== */
.c-filters__buttons {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  border: 1px solid #707070;
}
@media screen and (max-width: 750px) {
  .c-filters__buttons {
    border: 0.1333333333vw solid #707070;
    align-items: stretch;
  }
}

.c-filters__button {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.c-filters__button button,
.c-filters__button a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3.86;
  border-right: 1px solid #707070;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .c-filters__button button,
  .c-filters__button a {
    min-height: 55px;
    font-size: 1.4rem;
    line-height: 1.45;
    padding: 7px 16px;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .c-filters__button button,
  .c-filters__button a {
    height: 100%;
    font-size: 2.1333333333vw;
    line-height: 1.26;
    min-height: 11.4666666667vw;
    text-align: center;
    padding: 1.8666666667vw;
  }
}
.c-filters__button button::after,
.c-filters__button a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: -1;
  transition: height 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-filters__button button::after,
  .c-filters__button a::after {
    height: 0.8vw;
  }
}
.c-filters__button button:hover,
.c-filters__button a:hover,
.c-filters__button button.is-selected,
.c-filters__button a.is-selected {
  color: #fff !important;
}
.c-filters__button button:hover::after,
.c-filters__button a:hover::after,
.c-filters__button button.is-selected::after,
.c-filters__button a.is-selected::after {
  height: 100%;
}
.c-filters__button:first-child button {
  color: #353535;
}
.c-filters__button:first-child button::after {
  background-color: #353535;
}
.c-filters__button:first-child a {
  color: #353535;
}
.c-filters__button:first-child a::after {
  background-color: #353535;
}
.c-filters__button:last-child button {
  border-right: none;
}

.c-card__list--headline {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
}
@media screen and (max-width: 750px) {
  .c-card__list--headline {
    row-gap: 3.2vw;
  }
}

.c-card__item--headline {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 90px 0 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline {
    padding: 0 0 0 2.6666666667vw;
  }
}
.c-card__item--headline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #353535;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline::before {
    left: 0vw;
    width: 1.0666666667vw;
    height: 1.0666666667vw;
  }
}
.c-card__item--headline::after {
  content: "";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.333;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  width: 66px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline::after {
    font-size: 1.8666666667vw;
    width: 8.8vw;
    height: 2.6666666667vw;
    border-radius: 1.3333333333vw;
    right: 17.3333333333vw;
  }
}
.c-card__item--headline.new::after {
  content: "new";
  background-color: #E63535;
}
.c-card__item--headline.hot::after {
  content: "話題";
  background-color: #EA8340;
}
.c-card__item--headline.read-more::before {
  display: none;
}
.c-card__item--headline a {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  -moz-column-gap: 24px;
       column-gap: 24px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline a {
    -moz-column-gap: 12vw;
         column-gap: 12vw;
  }
}
.c-card__item--headline a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline a:hover {
    opacity: 1;
  }
}
.c-card__item--headline .c-card__item-title--headline {
  width: 73.25%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline .c-card__item-title--headline {
    font-size: 2.8vw;
    line-height: 1.375;
  }
}
.c-card__item--headline .c-card__item-date--headline {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-card__item--headline .c-card__item-date--headline {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.8vw;
    line-height: 1.375;
  }
}

.c-card__vertical {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.c-card__vertical a {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 8px;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .c-card__vertical a {
    flex-direction: row;
    row-gap: 0;
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
  }
}
.c-card__vertical a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .c-card__vertical a:hover {
    opacity: 1;
  }
}
.c-card__vertical a:hover .c-card__vertical-visual img {
  transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .c-card__vertical a:hover .c-card__vertical-visual img {
    transform: scale(1);
  }
}

.c-card__vertical-visual {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-card__vertical-visual {
    width: 28.16%;
  }
}
.c-card__vertical-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.c-card__vertical-bottom {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 0;
}
@media screen and (max-width: 1024px) {
  .c-card__vertical-bottom {
    flex-grow: 1;
  }
}

.c-card__vertical-date {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.71;
  color: #969696;
}
@media screen and (max-width: 1024px) {
  .c-card__vertical-date {
    font-size: 2.1333333333vw;
    line-height: 1.71;
  }
}

.c-card__vertical-title {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .c-card__vertical-title {
    font-size: 2.8vw;
    line-height: 1.5;
  }
}

.c-card-main__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0 5px;
}
@media screen and (max-width: 750px) {
  .c-card-main__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2.6666666667vw;
  }
}

.c-card-main__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 9px 8px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 750px) {
  .c-card-main__item {
    padding: 1.2vw 1.0666666667vw;
  }
}
.c-card-main__item a {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: stretch;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-card-main__item a {
    justify-content: flex-start;
    -moz-column-gap: 1.2vw;
         column-gap: 1.2vw;
  }
}
.c-card-main__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .c-card-main__item a:hover {
    opacity: 1;
  }
}
.c-card-main__item a:hover .c-card-main__visual img {
  transform: scale(1.05);
}
@media screen and (max-width: 750px) {
  .c-card-main__item a:hover .c-card-main__visual img {
    transform: scale(1);
  }
}

.c-card-main__visual {
  width: 44%;
  aspect-ratio: 170/96;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-card-main__visual {
    width: 24.079%;
  }
}
.c-card-main__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.c-card-main__block--right {
  width: 51.5%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-card-main__block--right {
    flex-grow: 1;
  }
}

.c-card-main__block--right-top {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 0;
}

.c-card-main__date {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.71;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-card-main__date {
    font-size: 1.3333333333vw;
    line-height: 1.71;
  }
}

.c-card-main__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .c-card-main__title {
    font-size: 2.9333333333vw;
    line-height: 1.375;
  }
}

.c-card-main__property {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
@media screen and (max-width: 750px) {
  .c-card-main__property {
    -moz-column-gap: 1.4666666667vw;
         column-gap: 1.4666666667vw;
  }
}

.c-card-main__news {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-card-main__news {
    font-size: 1.3333333333vw;
  }
}
.c-card-main__news.ai-tool {
  color: #4481B5;
}
.c-card-main__news.business {
  color: #335E6E;
}
.c-card-main__news.education {
  color: #EA8340;
}
.c-card-main__news.creative {
  color: #A460B7;
}
.c-card-main__news.medical {
  color: #5EBC9B;
}
.c-card-main__news.case {
  color: #D8B33E;
}

.c-card_main__list-tags {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .c-card_main__list-tags {
    -moz-column-gap: 0.8vw;
         column-gap: 0.8vw;
  }
}

.c-card_main__tag {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-card_main__tag {
    font-size: 1.3333333333vw;
  }
}

.c-card-slide__wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.c-card-slide__wrapper .splide__arrow {
  background-color: transparent;
}
.c-card-slide__wrapper .splide__arrow--prev {
  width: 13px;
  height: 22px;
  left: -36px;
  transition: opacity 0.3s ease-in-out;
}
.c-card-slide__wrapper .splide__arrow--prev:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .c-card-slide__wrapper .splide__arrow--prev:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .c-card-slide__wrapper .splide__arrow--prev {
    width: 1.7333333333vw;
    height: 2.9333333333vw;
    left: 6.4vw;
  }
}
.c-card-slide__wrapper .splide__arrow--next {
  width: 13px;
  height: 22px;
  right: -36px;
  transition: opacity 0.3s ease-in-out;
}
.c-card-slide__wrapper .splide__arrow--next:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .c-card-slide__wrapper .splide__arrow--next:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .c-card-slide__wrapper .splide__arrow--next {
    width: 1.7333333333vw;
    height: 2.9333333333vw;
    right: 6.4vw;
  }
}

.c-card-slide__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.c-card-slide__item {
  width: 225px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 5px;
}
@media screen and (max-width: 750px) {
  .c-card-slide__item {
    width: auto;
  }
}
.c-card-slide__item a {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #f7f7f7;
  transition: opacity 0.3s ease-in-out;
  overflow: hidden;
}
.c-card-slide__item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .c-card-slide__item a:hover {
    opacity: 1;
  }
}
.c-card-slide__item a:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .c-card-slide__item a:hover img {
    transform: scale(1);
  }
}

.c-card-slide__visual {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.c-card-slide__visual img {
  width: 100%;
  aspect-ratio: 240/136;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.c-card-slide__block--bottom {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 0;
}
@media screen and (max-width: 750px) {
  .c-card-slide__block--bottom {
    padding: 2.6666666667vw 3.8666666667vw;
    row-gap: 1.8666666667vw;
  }
}

.c-card-slide__date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-card-slide__date {
    font-size: 2.9333333333vw;
  }
}

.c-card-slide__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .c-card-slide__title {
    font-size: 2.8vw;
  }
}

.c-tags__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 0 15px;
}
@media screen and (max-width: 750px) {
  .c-tags__list {
    -moz-column-gap: 2.1333333333vw;
         column-gap: 2.1333333333vw;
    padding: 0 2vw;
  }
}

.c-tags__item {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-tags__item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #969696;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-tags__item a {
    font-size: 2.8vw;
    line-height: 2;
  }
}
.c-tags__item a:hover {
  color: #353535;
}
@media screen and (max-width: 1024px) {
  .c-tags__item a:hover {
    color: #969696;
  }
}

.c-tags__item--more {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #969696;
  padding: 0 15px;
  transition: color 0.3s ease-in-out;
}
.c-tags__item--more:hover {
  color: #353535;
}
@media screen and (max-width: 1024px) {
  .c-tags__item--more:hover {
    color: #969696;
  }
}
@media screen and (max-width: 750px) {
  .c-tags__item--more {
    font-size: 2.8vw;
    line-height: 2;
    padding: 0 2vw;
  }
}

.c-cards-sidebar__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 10px;
  padding: 0 15px;
}
@media screen and (max-width: 750px) {
  .c-cards-sidebar__list {
    padding: 0 2px;
    row-gap: 2.6666666667vw;
  }
}

.c-cards-sidebar__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 750px) {
  .c-cards-sidebar__item {
    padding: 1.0666666667vw 1.3333333333vw;
  }
}
.c-cards-sidebar__item a {
  display: block;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: stretch;
  -moz-column-gap: 15px;
       column-gap: 15px;
  transition: opacity 0.3s ease-in-out;
}
.c-cards-sidebar__item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .c-cards-sidebar__item a:hover {
    opacity: 1;
  }
}
.c-cards-sidebar__item a:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .c-cards-sidebar__item a:hover img {
    transform: scale(1);
  }
}
@media screen and (max-width: 1200px) {
  .c-cards-sidebar__item a {
    flex-direction: row-reverse;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
  }
}

.c-cards-sidebar__block--left {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 0;
  flex-grow: 1;
  flex-shrink: 1;
}

.c-cards-sidebar__date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.4;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-cards-sidebar__date {
    font-size: 1.3333333333vw;
    line-height: 2.4;
  }
}

.c-cards-sidebar__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.71;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}
@media screen and (max-width: 750px) {
  .c-cards-sidebar__title {
    font-size: 2.8vw;
    line-height: 1.43;
  }
}

.c-cards-sidebar__visual {
  width: 26.66%;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .c-cards-sidebar__visual {
    width: 13.54%;
  }
}
.c-cards-sidebar__visual img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.c-cards-sub__wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 16px;
  padding: 16px 0;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__wrapper {
    padding: 16px 2px;
  }
}

.c-cards-sub__wrapper.with-header {
  padding: 4px 0;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__wrapper.with-header {
    padding: 0.5333333333vw 0;
  }
}

.c-cards-sub__header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 40px;
  padding-bottom: 24px;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__header {
    row-gap: 5.3333333333vw;
    padding-bottom: 3.2vw;
  }
}

.c-cards-sub__title-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 24px;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__title-wrapper {
    padding: 1.6vw 3.2vw;
    border-top: 0.1333333333vw solid #DDDDDD;
    border-bottom: 0.1333333333vw solid #DDDDDD;
  }
}

.c-cards-sub__h2 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__h2 {
    font-size: 4.5333333333vw;
  }
}

.c-cards-sub__description-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 24px;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__description-wrapper {
    padding: 0 3.2vw;
  }
}

.c-cards-sub__description {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__description {
    font-size: 2.8vw;
  }
}

.c-cards-sub__page-info {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  padding: 0 24px;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__page-info {
    padding: 0 2px;
    -moz-column-gap: 1.0666666667vw;
         column-gap: 1.0666666667vw;
  }
}
.c-cards-sub__page-info p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__page-info p {
    font-size: 2.1333333333vw;
  }
}

.c-cards-sub__page-current,
.c-cards-sub__page-total,
.c-cards-sub__page-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 2px;
       column-gap: 2px;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__page-current,
  .c-cards-sub__page-total,
  .c-cards-sub__page-separator {
    -moz-column-gap: 0.2666666667vw;
         column-gap: 0.2666666667vw;
  }
}

.c-cards-sub__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 10px;
  padding: 0 24px;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__list {
    padding: 0 2px;
    row-gap: 2.6666666667vw;
  }
}

.c-cards-sub__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-cards-sub__link {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: stretch;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 9px 8px;
  background-color: #f7f7f7;
  transition: opacity 0.3s ease-in-out;
}
.c-cards-sub__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .c-cards-sub__link:hover {
    opacity: 1;
  }
}
.c-cards-sub__link:hover img {
  transform: scale(1.05);
}
@media screen and (max-width: 1024px) {
  .c-cards-sub__link:hover img {
    transform: scale(1);
  }
}
@media screen and (max-width: 750px) {
  .c-cards-sub__link {
    padding: 1.2vw 1.0666666667vw;
    -moz-column-gap: 1.3333333333vw;
         column-gap: 1.3333333333vw;
  }
}

.c-cards-sub__visual {
  width: 22.3%;
  aspect-ratio: 170/96;
  overflow: hidden;
  flex-shrink: 0;
  flex-grow: 0;
  overflow: hidden;
}
.c-cards-sub__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.c-cards-sub__block--right {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  justify-content: space-between;
  row-gap: 0;
  flex-shrink: 1;
  flex-grow: 1;
}

.c-cards-sub__date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #969696;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__date {
    font-size: 1.3333333333vw;
    line-height: 1.5;
  }
}

.c-cards-sub__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (max-width: 750px) {
  .c-cards-sub__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    font-size: 2.8vw;
  }
}

.c-card-sub__property {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 11px;
       column-gap: 11px;
}
@media screen and (max-width: 750px) {
  .c-card-sub__property {
    -moz-column-gap: 1.4666666667vw;
         column-gap: 1.4666666667vw;
  }
}

.c-card-sub__news {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-card-sub__news {
    font-size: 1.3333333333vw;
    line-height: 1.6;
  }
}
.c-card-sub__news.ai-tool {
  color: #4481B5;
}
.c-card-sub__news.business {
  color: #335E6E;
}
.c-card-sub__news.education {
  color: #EA8340;
}
.c-card-sub__news.creative {
  color: #A460B7;
}
.c-card-sub__news.medical {
  color: #5EBC9B;
}
.c-card-sub__news.case {
  color: #D8B33E;
}

.c-card_sub__list-tags {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .c-card_sub__list-tags {
    -moz-column-gap: 0.8vw;
         column-gap: 0.8vw;
  }
}

.c-card_sub__tag {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .c-card_sub__tag {
    font-size: 1.3333333333vw;
    line-height: 1.6;
  }
}

.c-wide-ads {
  width: 100%;
  height: auto;
  margin: 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .c-wide-ads {
    margin: 2.6666666667vw 0;
  }
}
.c-wide-ads img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-wide-ads .adsbygoogle {
  width: 100% !important;
  height: 100% !important;
}
.c-wide-ads .adsbygoogle.wide-ad-responsive {
  min-height: 90px;
}
.c-wide-ads ins.adsbygoogle {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.pagination-wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: center;
  padding: 32px 0;
}
@media screen and (max-width: 750px) {
  .pagination-wrapper {
    padding: 4.2666666667vw 0;
  }
}
.pagination-wrapper .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0 4px;
  padding: 8px 12px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: #353535;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 750px) {
  .pagination-wrapper .page-numbers {
    min-width: 5.3333333333vw;
    font-size: 3.4666666667vw;
    height: 6.6666666667vw;
    padding: 1.0666666667vw 1.6vw;
    border: 0.1333333333vw solid #ddd;
  }
}
.pagination-wrapper .page-numbers:hover {
  background-color: #353535;
  color: #fff;
  border-color: #353535;
}
.pagination-wrapper .page-numbers.current {
  background-color: #353535;
  color: #fff;
  border-color: #353535;
}
.pagination-wrapper .page-numbers.prev, .pagination-wrapper .page-numbers.next {
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .pagination-wrapper .page-numbers.prev, .pagination-wrapper .page-numbers.next {
    padding: 1.0666666667vw 0.8vw;
  }
}
.pagination-wrapper .page-numbers.dots {
  border: none;
  background: none;
  cursor: default;
}
.pagination-wrapper .page-numbers.dots:hover {
  background: none;
  color: #353535;
}

.c-related-tags {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 12px;
  padding: 44px 24px 0;
}
@media screen and (max-width: 750px) {
  .c-related-tags {
    padding: 5.8666666667vw 0 0;
    row-gap: 1.6vw;
  }
}

.c-related-tags__title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid #DDDDDD;
  padding: 8px 24px;
}
@media screen and (max-width: 750px) {
  .c-related-tags__title {
    font-size: 4.2666666667vw;
    padding: 1.0666666667vw 1.0666666667vw;
  }
}

.c-related-tags__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 0 24px;
}
@media screen and (max-width: 750px) {
  .c-related-tags__list {
    -moz-column-gap: 2.1333333333vw;
         column-gap: 2.1333333333vw;
    padding: 0 1.0666666667vw;
  }
}

.c-related-tags__item {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.c-related-tags__link {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #969696;
  transition: color 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .c-related-tags__link {
    font-size: 2.8vw;
  }
}
.c-related-tags__link:hover {
  color: #353535;
}

.c-button--top {
  width: 60px;
  height: 60px;
  background-color: #353535;
  border-radius: 50%;
  position: fixed;
  bottom: 230px;
  right: 50px;
  z-index: 100;
  cursor: pointer;
  transition: opacity 0.3s ease-in-out;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .c-button--top {
    width: 8vw;
    height: 8vw;
    bottom: 30.6666666667vw;
    right: 2.9333333333vw;
  }
}
.c-button--top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===========
==============フォント =============== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../lib/NotoSansJP-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../lib/NotoSansJP-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../lib/NotoSansJP-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Noto Serif JP";
  src: url("../lib/NotoSerifJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
.l-header {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: stretch;
}
@media screen and (max-width: 750px) {
  .l-header {
    margin-bottom: 12vw;
  }
}

.l-header__burger {
  width: 100%;
  max-width: 99px;
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #353535;
  flex-shrink: 0;
  display: none;
}
@media screen and (max-width: 1440px) {
  .l-header__burger {
    display: flex;
  }
}
@media screen and (max-width: 750px) {
  .l-header__burger {
    width: 10.6666666667vw;
    max-width: 10.6666666667vw;
  }
}

.l-header__burger-button {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
}
@media screen and (max-width: 750px) {
  .l-header__burger-button {
    row-gap: 1.0666666667vw;
  }
}

.l-header__burger-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 7px;
}
@media screen and (max-width: 750px) {
  .l-header__burger-wrapper {
    row-gap: 0.9333333333vw;
  }
}

.l-header__burger-line {
  display: block;
  width: 50%;
  height: 4px;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}
@media screen and (max-width: 750px) {
  .l-header__burger-line {
    height: 0.5333333333vw;
  }
}
.l-header__burger.active .l-header__burger-line:first-child {
  transform: rotate(45deg) translateY(11px);
}
.l-header__burger.active .l-header__burger-line:nth-child(2) {
  opacity: 0;
}
.l-header__burger.active .l-header__burger-line:last-child {
  transform: rotate(-45deg) translateY(-11px);
}

.l-header__burger-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.44;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .l-header__burger-text {
    font-size: 1.8666666667vw;
    line-height: 1.44;
  }
}

.l-header__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7px 40px 0 0;
}
@media screen and (max-width: 750px) {
  .l-header__inner {
    padding: 0.9333333333vw 2.6666666667vw 0 0;
  }
}

.l-header__upper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}

.l-header__upper--left {
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.428;
}
@media screen and (max-width: 750px) {
  .l-header__upper--left {
    font-size: 1.6vw;
    line-height: 1.428;
  }
}

.l-header__upper--right {
  width: -moz-fit-content;
  width: fit-content;
}
.l-header__upper--right a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.428;
}
@media screen and (max-width: 1440px) {
  .l-header__upper--right {
    display: none;
  }
}

.l-header__lower {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: flex-end;
  -moz-column-gap: 43px;
       column-gap: 43px;
}
@media screen and (max-width: 750px) {
  .l-header__lower {
    position: relative;
    -moz-column-gap: 2.6666666667vw;
         column-gap: 2.6666666667vw;
  }
}

.l-header__lower--left {
  width: -moz-fit-content;
  width: fit-content;
}

.l-header__lower--right {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  -moz-column-gap: 43px;
       column-gap: 43px;
  flex-grow: 1;
}
@media screen and (max-width: 750px) {
  .l-header__lower--right {
    position: absolute;
    bottom: -12vw;
    left: 0;
    width: 94.6666666667vw;
    height: 8.1333333333vw;
  }
}

.l-header__menu {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .l-header__menu {
    display: none;
  }
}

.l-header__list-menu {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  flex-grow: 1;
}

.l-header__item-menu {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}
.l-header__item-menu a {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
}
.l-header__item-menu:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .l-header__item-menu:hover {
    opacity: 1;
  }
}

.l-header__item-menu.is-selected {
  position: relative;
}
.l-header__item-menu.is-selected::after {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #353535;
  border-radius: 50%;
}

.l-header__search {
  width: 228px;
  background-color: #F8f8f8;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .l-header__search {
    width: 100%;
    height: 100%;
  }
}

.l-sidebar-left {
  background-color: #353535;
  position: sticky;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 100vh;
}
@media screen and (max-width: 1440px) {
  .l-sidebar-left {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: flex-end;
    align-items: flex-start;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    background-color: transparent;
  }
}

.l-sidebar-left__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 60px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 45px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1440px) {
  .l-sidebar-left__inner {
    transform: translateX(100%);
    max-width: 360px;
    background-color: #353535;
  }
}
@media screen and (max-width: 1200px) {
  .l-sidebar-left__inner {
    min-height: 100vh;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__inner {
    max-width: 100%;
    padding: 10.6666666667vw 32px 4.8vw;
  }
}

.l-sidebar-left.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  overflow-y: scroll;
  background-color: rgba(53, 53, 53, 0.5);
}
@media screen and (max-width: 1440px) {
  .l-sidebar-left.is-open .l-sidebar-left__inner {
    transform: translateX(0);
  }
}

.l-sidebar-left__header {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-end;
  row-gap: 24px;
}

.l-sidebar-left__close {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 8px;
  right: 8px;
  display: none;
  z-index: 101;
}
@media screen and (max-width: 1440px) {
  .l-sidebar-left__close {
    display: flex;
  }
}
@media screen and (max-width: 1024px) {
  .l-sidebar-left__close {
    width: 40px;
    top: 0;
    right: 5px;
  }
}

.l-sidebar-left__close-wrapper {
  width: 45px;
  height: 45px;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__close-wrapper {
    width: 6vw;
    height: 6vw;
  }
}

.l-sidebar-left__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__close-line {
    width: 5.3333333333vw;
    height: 0.5333333333vw;
  }
}
.l-sidebar-left__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-sidebar-left__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-sidebar-left__form {
  width: 100%;
  background-color: #fff;
}

.l-sidebar-left__menu {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 24px;
       column-gap: 24px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .l-sidebar-left__menu {
    display: flex;
  }
}

.l-sidebar-left__list-menu {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
  display: none;
}
@media screen and (max-width: 1200px) {
  .l-sidebar-left__list-menu {
    display: flex;
  }
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__list-menu {
    row-gap: 3.2vw;
  }
}

.l-sidebar-left__item-menu {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.l-sidebar-left__item-menu a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__item-menu a {
    font-size: 3.2vw;
  }
}

.l-sidebar-left__accordion-title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__accordion-title {
    font-size: 3.2vw;
  }
}
.l-sidebar-left__accordion-title .accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
.l-sidebar-left__accordion-title .accordion-icon__minus,
.l-sidebar-left__accordion-title .accordion-icon__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 24px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__accordion-title .accordion-icon__minus,
  .l-sidebar-left__accordion-title .accordion-icon__plus {
    width: 2.5333333333vw;
    height: 3.7333333333vw;
    font-size: 3.2vw;
  }
}
.l-sidebar-left__accordion-title .accordion-icon__minus {
  display: none;
}
.l-sidebar-left__accordion-title .accordion-icon__plus {
  display: flex;
}
.l-sidebar-left__accordion-title.is-open .accordion-icon__minus {
  display: flex;
}
.l-sidebar-left__accordion-title.is-open .accordion-icon__plus {
  display: none;
}

.l-sidebar-left__block-menu {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 21px;
}
@media screen and (max-width: 1200px) {
  .l-sidebar-left__block-menu:not(.l-sidebar-left__block-menu--footer) {
    display: none;
  }
}

.l-sidebar-left__h2 {
  font-size: 2rem;
  color: #A7A7A7;
  line-height: 1.44;
  text-transform: uppercase;
}

.l-sidebar-left__list {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__list {
    row-gap: 3.2vw;
  }
}

.l-sidebar-left__list.tb-only {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
  display: none;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__list.tb-only {
    row-gap: 3.2vw;
  }
}
.l-sidebar-left__list.tb-only.is-open {
  display: flex;
  margin-top: 24px;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__list.tb-only.is-open {
    margin-top: 3.2vw;
  }
}
.l-sidebar-left__list.tb-only .l-sidebar-left__item span {
  margin-left: 2rem;
  margin-right: 2rem;
}

.l-sidebar-left__item {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
}
.l-sidebar-left__item a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  transition: opacity 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__item a {
    font-size: 3.2vw;
  }
}
.l-sidebar-left__item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 750px) {
  .l-sidebar-left__item a:hover {
    opacity: 1;
  }
}

.l-sidebar-left__h3 {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.l-sidebar-left__h3 .accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
.l-sidebar-left__h3 .accordion-icon__minus,
.l-sidebar-left__h3 .accordion-icon__plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 24px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  flex-shrink: 0;
}
.l-sidebar-left__h3 .accordion-icon__minus {
  display: none;
}
.l-sidebar-left__h3 .accordion-icon__plus {
  display: flex;
}
.l-sidebar-left__h3.is-open .accordion-icon__minus {
  display: flex;
}
.l-sidebar-left__h3.is-open .accordion-icon__plus {
  display: none;
}

.l-sidebar-left__list-sub {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 24px;
}
.l-sidebar-left__list-sub:not(.is-open) {
  display: none;
}

.l-sidebar-left__item-sub {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.l-sidebar-left__item-sub a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}
.l-sidebar-left__item-sub a span {
  margin-right: 8px;
}

.l-footer {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #f7f7f7;
  padding: 40px 0 26px;
}
@media screen and (max-width: 750px) {
  .l-footer {
    padding: 5.3333333333vw 0 3.4666666667vw;
  }
}

.l-footer__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 38px;
}
@media screen and (max-width: 750px) {
  .l-footer__inner {
    row-gap: 5.0666666667vw;
  }
}

.l-footer__copyright {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.428;
  color: #707070;
}
@media screen and (max-width: 750px) {
  .l-footer__copyright {
    font-size: 1.8666666667vw;
  }
}

.l-footer__logo {
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .l-footer__logo {
    font-size: 6vw;
  }
}

.l-main-sidebar {
  row-gap: 33px;
  position: sticky;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 73px;
}

.l-main-sidebar__inner {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 33px;
}

.l-main-sidebar__tags,
.l-main-sidebar__trend,
.l-main-sidebar__column {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  row-gap: 13px;
}

.c-index__wrapper {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 40px;
}
@media screen and (max-width: 750px) {
  .c-index__wrapper {
    padding: 0;
  }
}

.c-index {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 750px) {
  .c-index {
    padding: 0;
    margin: 0;
    border-top: 0.1333333333vw solid #707070;
    border-bottom: 0.1333333333vw solid #707070;
  }
}
.c-index .c-index__title {
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  color: #353535;
  padding: 16px 0;
  text-align: center;
  position: relative;
}
.c-index .c-index__title::after {
  content: "";
  background-image: url(../images/arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .c-index .c-index__title::after {
    width: 2.6666666667vw;
    height: 1.6vw;
    right: 2.6666666667vw;
  }
}
.c-index .c-index__title.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (max-width: 750px) {
  .c-index .c-index__title {
    font-size: 2.8vw;
    font-size: 3.2vw;
    padding: 1.6vw 0;
    border-bottom: 0.1333333333vw dotted #707070;
  }
}

.c-index__list {
  width: 100% !important;
  padding: 21px 32px;
  border-top: 1px dotted #707070;
  list-style: none;
  display: none;
}
@media screen and (max-width: 750px) {
  .c-index__list {
    padding: 3.6vw 3.0666666667vw;
  }
}
.c-index__list.is-open {
  display: block;
}
.c-index__list .c-index__item {
  margin: 0;
  padding: 0;
}
.c-index__list .c-index__item:before {
  display: none;
}
.c-index__list .c-index__item a {
  text-decoration: none !important;
}
.c-index__list .c-index__item--h2 {
  margin: 0 0 8px 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 750px) {
  .c-index__list .c-index__item--h2 {
    margin-bottom: 0vw;
    font-size: 2.8vw;
  }
}
.c-index__list .c-index__item--h3 {
  margin: 0 0 6px 0 !important;
  padding: 0 0 0 30px !important;
  position: relative;
}
@media screen and (max-width: 750px) {
  .c-index__list .c-index__item--h3 {
    margin-bottom: 0vw;
    font-size: 2.8vw;
  }
}
.c-index__list .c-index__item--h3::before {
  content: "・";
  display: block;
  font-size: 1.6rem;
  width: 16px;
  height: auto;
  color: #353535;
  position: absolute;
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .c-index__list .c-index__item--h3::before {
    left: 3.4666666667vw;
    font-size: 2.1333333333vw;
    width: 2.1333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .c-index__list .c-index__item--h3 {
    margin-left: 2.6666666667vw;
    margin-bottom: 0vw;
  }
}
.c-index__list .c-index__link {
  display: inline-block;
  color: #353535;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-index__list .c-index__link {
    font-size: 2.1333333333vw;
    padding: 0;
  }
}
.c-index__list .c-index__link:hover {
  color: #353535;
  text-decoration: none;
}
.c-index__list .c-index__link:focus {
  outline-offset: 2px;
}
@media screen and (max-width: 750px) {
  .c-index__list .c-index__link {
    font-size: 2.8vw;
    padding: 0;
  }
}
.c-index__list .c-index__item--h2 .c-index__link {
  font-weight: 600;
  color: #353535;
}
.c-index__list .c-index__item--h3 .c-index__link {
  font-weight: 500;
}/*# sourceMappingURL=common.css.map */