@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

:where(figure) {
  margin: 0;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

address {
  font-style: normal;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

@font-face {
  font-family: "ヒラギノ角ゴ Std W4";
  src: url("../fonts/hiragino-kaku-gothic.woff2") format("opentype");
}


.entry-content a {
	text-decoration:underline;
}

.entry-content h2{
color: #fff;/*文字色*/
  background: #FC8143;/*背景色*/
  padding: 0.5em;/*文字まわり（上下左右）の余白*/
}

.entry-content h3{
padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #494949;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #FC8143;/*左線*/
  color: #494949;/*文字色*/
}

.entry-content h4 {
  /*線の種類（点線）2px 線色*/
  border-bottom: dashed 2px #FC8143;
}


/*内部リンク＊記事ページ*/
.entry-content a.linkto.table{
border:solid 3px #1587D7;
    background:none;
    transition: .3s;
}
.entry-content a.linkto.table img{
    box-shadow:none;
}

.entry-content a.linkto.table:hover{
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    opacity: 0.7 ;
}
.entry-content a.linkto {
    position: relative;
    max-width: 100%;
}
.entry-content a.linkto:before {
    position: absolute;
content: " 関連記事";
    top: -17px;
    left: 5px;
    display: inline-block;
    width: 75px;
    height: 27px;
    text-align: center;
    vertical-align: middle;
    background: #fff;
 font-size: 14px;
	font-weight:bold;
    line-height: 28px;
    color: #1587D7;
    letter-spacing: 3px;
    padding-left: 3px;
    border-radius: 0px;
}
.entry-content a.linkto:after {
    position: absolute;
    display: flex;
    height: 15%;
    padding: 2px 15px;
content: ">>続きを読む";
	font-weight:bold;
    bottom: 5px;
    right: 5px;
    font-size: 13px;
    color: #fff;
    background:#FEEA5C;
    font-weight:bold;
    text-decoration:none;
    align-items: center;
}
.entry-content a.linkto .tbtext {
    padding: 15px 0px 0px 10px;
	margin: 0.2em 0 0.5em;
padding: 15px 0px 0px 10px;
    vertical-align: top;
    font-size: 16px!important;
    color:#333;
	font-weight:bold;
}

.button {
	text-align: center;
	margin-bottom: 0.8em;
}
.button a {
 font-size: 18px;
 display: inline-block;
 position: relative;
 z-index: 2;
 overflow: hidden;
 width: 85%;
 font-weight: bold ;
 background-image: linear-gradient(45deg, #0D61B5 0%, #2F99D5 100%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #0D61B5;
border-radius: 10px;
 color: #fff !important;
 padding: 12px 0;
 text-align: center;
 text-decoration: none;
 transition: .25s linear;
 -webkit-transition: .25s linear;
 -moz-transition: .25s linear;
}
.button a:hover {
 -ms-transform: translateY(4px);
 -webkit-transform: translateY(4px);
 transform: translateY(4px);/*下に動く*/
 border-bottom: none;/*線を消す*/
}

.button :active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}

/* スクロールモーダルメニュー */
#appeal-link-scroll-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.appeal-link-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    width: 90%;
   	max-width: 500px;
}

#appeal-link-close-modal {
    position: absolute;
    top: -40px;
    right: -6px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}
body:has(.js-open) {
  overflow: hidden;
}
body:has(.js-open)::before {
  opacity: 0.3;
  visibility: visible;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 80;
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.sp-hidden {
  display: none;
}
@media (width >= 768px) {
  .sp-hidden {
    display: block;
  }
}

.sp-hidden--lg {
  display: none;
}
@media (width >= 900px) {
  .sp-hidden--lg {
    display: block;
  }
}

@media (width >= 768px) {
  .pc-hidden {
    display: none;
  }
}

@media (width >= 600px) {
  .pc-hidden--sm {
    display: none;
  }
}

@media (width >= 900px) {
  .pc-hidden--lg {
    display: none;
  }
}

@media (width >= 1200px) {
  .pc-hidden--xl {
    display: none;
  }
}

@media (width >= 1400px) {
  .pc-hidden--xxl {
    display: none;
  }
}

main {
  overflow: visible;
}
main.main-front-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 73px;
}
@media (width >= 768px) {
  main {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  main.main-front-page {
    width: clamp(420px, 249.985px + 22.137vw, 449px);
    gap: 65px;
  }
  main .section__inner {
    width: min(792px, 100%);
    padding-inline: 0;
    margin-inline: 0;
  }
}
@media (width >= 900px) {
  main.main-front-page {
    width: clamp(531px, 96px + 48.333vw, 792px);
  }
}

#container.container--renew {
  background-color: #F8F8F8;
}

.section__inner {
  width: min(630px, 100%);
  padding-inline: 15px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .section__inner {
    width: min(1440px, 100%);
    padding-inline: 32px;
    margin-inline: auto;
  }
}
@media (width >= 900px) {
  .section__inner {
    padding-inline: clamp(32px, -131.333px + 18.148vw, 130px);
  }
}

.section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 6.514px + 0.381vw, 12px);
  padding-bottom: 9px;
  border-bottom: 1px solid #B5B5B5;
}

.section__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(32px, 29.029px + 0.762vw, 40px);
  font-weight: 700;
  letter-spacing: clamp(1.28px, 1.161px + 0.03vw, 1.6px);
  line-height: 1.2;
}

.section__title {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.12px;
  padding-top: clamp(9px, 8.257px + 0.19vw, 11px);
}

.section__body {
  margin-top: clamp(23px, 19.657px + 0.857vw, 32px);
  padding-bottom: clamp(31px, 28.4px + 0.667vw, 38px);
  border-bottom: 1px solid #B5B5B5;
}

.article__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
.article__list.partners__list--archive {
  padding-bottom: clamp(31px, 28.4px + 0.667vw, 38px);
  border-bottom: 1px solid #B5B5B5;
  gap: 24px;
}
@media (width >= 900px) {
  .article__list.partners__list--archive {
    gap: 40px 24px;
  }
}
@media (width >= 768px) {
  .article__list {
    gap: 24px;
  }
}
@media (width >= 900px) {
  .article__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
}

.article__item {
  position: relative;
  z-index: 1;
  border-radius: 5px;
  background: #FFF;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-rows: subgrid;
  grid-area: span 4;
  gap: clamp(12px, 10.143px + 0.476vw, 17px);
  padding-bottom: clamp(18px, 16.886px + 0.286vw, 21px);
}
@media (width >= 768px) {
  .article__item {
    border-radius: 10px;
  }
}
@media (any-hover: hover) {
  .article__item:hover {
    cursor: pointer;
  }
  .article__item:hover .article__item-img img {
    scale: 1.1;
  }
  .article__item:hover .article__item-title {
    color: #7B7B7B;
  }
}
.article__item:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.article__item:active .article__item-img::before {
  opacity: 0.2;
}
.article__item:active .article__item-img img {
  scale: 1.1;
}
.article__item:active .article__item-title {
  color: #7B7B7B;
}

.article__item-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.article__item-link span {
  opacity: 0;
  visibility: hidden;
}

.article__item-img {
  border-radius: 5px;
  margin-bottom: calc(-1 * clamp(1px, -0.857px + 0.476vw, 6px));
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.article__item-img::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}
.article__item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 359/207;
  border-radius: 5px;
  -webkit-transition: scale 0.3s ease-in-out !important;
  transition: scale 0.3s ease-in-out !important;
}
@media (width >= 768px) {
  .article__item-img {
    border-radius: 10px 10px 0 0;
  }
  .article__item-img img {
    aspect-ratio: 384/222;
    border-radius: 10px 10px 0 0;
  }
}

.article__item-cat,
.article__item-title,
.article__item-date,
.article__item-text {
  margin-inline: 18px;
}
@media (width >= 900px) {
  .article__item-cat,
  .article__item-title,
  .article__item-date,
  .article__item-text {
    margin-inline: clamp(12px, 2px + 1.111vw, 18px);
  }
}

.article__item-cat {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.article__item-cat::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: linear-gradient(93deg, #FF1F00 10.34%, #FF8A00 89.66%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
  border-radius: 32px;
}
@media (any-hover: hover) {
  .article__item-cat:hover {
    cursor: pointer;
  }
  .article__item-cat:hover::before {
    opacity: 1;
  }
  .article__item-cat:hover .article__item-cat-link {
    background-color: transparent;
  }
}
.article__item-cat:active .article__item-cat-link {
  background-color: #FFCA8B;
}

.article__item-cat-link {
  margin: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  padding-block: 6px;
  padding-inline: 34px 14px;
  border-radius: 32px;
  background-color: #FFA051;
  color: #FFF;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  z-index: 6;
  -webkit-transition: all 0.3s ease-in-out !important;
  transition: all 0.3s ease-in-out !important;
}
.article__item-cat-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  translate: 0 -50%;
  width: 15px;
  height: 15px;
  background: url(../img/front-page/icon-tag.svg) no-repeat center center/cover;
}
@media (width >= 768px) {
  .article__item-cat-link {
    padding-block: 6px 4px;
  }
}
@media (width >= 900px) {
  .article__item-cat-link {
    font-size: clamp(11px, 6px + 0.556vw, 14px);
    padding-inline: clamp(23px, -7px + 3.333vw, 41px) 14px;
  }
  .article__item-cat-link::before {
    left: clamp(5px, -16.667px + 2.407vw, 18px);
  }
}

.article__item-title {
  color: #31241F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.44px;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
@media (width >= 900px) {
  .article__item-title {
    font-size: clamp(18px, 14.667px + 0.37vw, 20px);
    letter-spacing: clamp(1.44px, 1.173px + 0.03vw, 1.6px);
  }
}

.article__item-date {
  display: inline-block;
  padding-left: 16px;
  color: #C6C6C6;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.12px;
  position: relative;
}
.article__item-date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 11px;
  height: 14px;
  background: url(../img/front-page/icon-date.svg) no-repeat center center/cover;
}

.article__link {
  text-align: right;
}

.article__link-text {
  display: inline-block;
  padding-right: 19px;
  color: #000;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.2px;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.article__link-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 9px;
  height: 9px;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .article__link-text:hover {
    cursor: pointer;
    color: #7B7B7B;
  }
}
.article__link-text:active {
  color: #FC8143;
}

#breadcrumb {
  background: transparent;
}

#inner-content:has(.main-front-page) {
  padding-block: clamp(55px, 54.629px + 0.095vw, 56px) clamp(55px, 30.486px + 6.286vw, 121px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 93px;
}
@media (width >= 768px) {
  #inner-content:has(.main-front-page) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: clamp(24px, 12.571px + 1.488vw, 34px);
    width: min(1440px, 100%);
    padding-inline: 32px;
    margin-inline: auto;
  }
}
@media (width >= 900px) {
  #inner-content:has(.main-front-page) {
    padding-inline: clamp(32px, -131.333px + 18.148vw, 130px);
  }
}

.c_linkto {
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08) !important;
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08) !important;
}
@media (width >= 900px) {
  .c_linkto {
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08) !important;
            box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08) !important;
  }
}

.archive-header {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05) !important;
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05) !important;
}
@media (width >= 900px) {
  .archive-header {
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05) !important;
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05) !important;
  }
}

.header {
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  z-index: 100;
  padding-block: 10px 8px;
  background-color: #fff;
  border-bottom: 1px solid #CECECE;
}
@media (width >= 768px) {
  .header {
    padding-block: 23px 23px;
  }
}

.header__inner {
  width: min(636px, 100%);
  padding-inline: 18px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width >= 768px) {
  .header__inner {
    width: min(1440px, 100%);
    padding-inline: clamp(0px, -405.143px + 52.753vw, 354.5px);
    margin-inline: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
}

.header__logo {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  margin-top: -6px;
}
.header__logo img {
  width: 200px;
}
@media (width >= 768px) {
  .header__logo img {
    width: 272px;
  }
}
@media (any-hover: hover) {
  .header__logo:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.header__logo-link {
  display: block;
}

.header__nav {
  display: none;
}
@media (width >= 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}

.header__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  color: #31241F;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.header__nav-link.header__nav-link--concept {
  text-align: center;
  position: relative;
  padding-right: 19px;
}
.header__nav-link.header__nav-link--concept::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 9px;
  height: 9px;
  background: url(../img/header/icon1.svg) no-repeat center center/cover;
}
.header__nav-link.header__nav-link--partner {
  text-align: right;
  position: relative;
  padding-right: 19px;
}
.header__nav-link.header__nav-link--partner::after {
  content: "";
  position: absolute;
  top: calc(50% + 8px);
  right: 0;
  translate: 0 -50%;
  width: 9px;
  height: 9px;
  background: url(../img/header/icon1.svg) no-repeat center center/cover;
}
.header__nav-link.header__nav-link--platform {
  text-align: center;
}
.header__nav-link.header__nav-link--platform .header__nav-link--body {
  position: relative;
  padding-right: 23px;
}
.header__nav-link.header__nav-link--platform .header__nav-link--body::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33px;
  translate: 0 -50%;
  width: 12px;
  height: 12px;
  background: url(../img/header/icon2.svg) no-repeat center center/cover;
}
.header__nav-link.header__nav-link--magazine {
  text-align: right;
  padding-right: 22px;
  position: relative;
}
.header__nav-link.header__nav-link--magazine::after {
  content: "";
  position: absolute;
  top: calc(50% + 8px);
  right: 0;
  translate: 0 -50%;
  width: 12px;
  height: 12px;
  background: url(../img/header/icon2.svg) no-repeat center center/cover;
}
.header__nav-link.header__nav-link--magazine .header__nav-link--head {
  padding-right: 5px;
}
.header__nav-link:active {
  color: #FFA051;
}
@media (any-hover: hover) {
  .header__nav-link:hover {
    cursor: pointer;
    color: #7B7B7B;
  }
}

.header__nav-link--head {
  display: inline-block;
  color: inherit;
  font-family: "Hiragino Sans";
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.8px;
  line-height: 1;
  white-space: nowrap;
}

.header__nav-link--body {
  display: inline-block;
  color: inherit;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  line-height: 1;
  white-space: nowrap;
}

.drawer-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3px;
  background-color: #000;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.drawer-icon.js-open .drawer-icon__bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 2px;
}
.drawer-icon.js-open .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.js-open .drawer-icon__bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -2px;
}
@media (hover: hover) {
  .drawer-icon:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media (width >= 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon__bar {
  display: block;
  width: 15.625px;
  height: 1.875px;
  background-color: #FFF;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.drawer {
  overflow-y: scroll;
  position: fixed;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 98px 48px;
  border-radius: 0 0 0 32px;
  background: #F8F8F8;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
  translate: 101%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.drawer.js-open {
  translate: 0;
}

.drawer__inner {
  width: min(663px, 100%);
  padding-inline: 31.5px;
  margin-inline: auto;
}

.drawer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.drawer__nav-item {
  position: relative;
}
.drawer__nav-item::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(93deg, #FF1F00 5.72%, #FF8A00 94.28%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}
@media (any-hover: hover) {
  .drawer__nav-item:hover {
    cursor: pointer;
  }
  .drawer__nav-item:hover::before {
    opacity: 1;
  }
  .drawer__nav-item:hover .drawer__nav-link {
    background-color: transparent;
    color: #FFF;
  }
  .drawer__nav-item:hover .drawer__nav-link.drawer__nav-link--concept::after {
    background: url(../img/header/icon1-hover.svg) no-repeat center center/cover;
  }
  .drawer__nav-item:hover .drawer__nav-link.drawer__nav-link--partner::after {
    background: url(../img/header/icon2-hover.svg) no-repeat center center/cover;
  }
  .drawer__nav-item:hover .drawer__nav-link.drawer__nav-link--magazine::after {
    background: url(../img/header/icon2-hover.svg) no-repeat center center/cover;
  }
  .drawer__nav-item:hover .drawer__nav-link .drawer__nav-link--head {
    color: #FFF;
  }
  .drawer__nav-item:hover .drawer__nav-link .drawer__nav-link--body {
    color: #FFF;
  }
}
.drawer__nav-item:active::before {
  opacity: 1;
}
.drawer__nav-item:active .drawer__nav-link {
  background-color: transparent;
  color: #FFF;
}
.drawer__nav-item:active .drawer__nav-link.drawer__nav-link--concept::after {
  background: url(../img/header/icon1-hover.svg) no-repeat center center/cover;
}
.drawer__nav-item:active .drawer__nav-link.drawer__nav-link--partner::after {
  background: url(../img/header/icon2-hover.svg) no-repeat center center/cover;
}
.drawer__nav-item:active .drawer__nav-link.drawer__nav-link--magazine::after {
  background: url(../img/header/icon2-hover.svg) no-repeat center center/cover;
}
.drawer__nav-item:active .drawer__nav-link .drawer__nav-link--head {
  color: #FFF;
}
.drawer__nav-item:active .drawer__nav-link .drawer__nav-link--body {
  color: #FFF;
}
@media (width >= 768px) {
  .drawer__nav-item:active .drawer__nav-link {
    background-color: #FC8143;
  }
  .drawer__nav-item:active .drawer__nav-link.drawer__nav-link--concept::after {
    background: url(../img/header/icon1-hover.svg) no-repeat center center/cover;
  }
  .drawer__nav-item:active .drawer__nav-link.drawer__nav-link--partner::after {
    background: url(../img/header/icon2-hover.svg) no-repeat center center/cover;
  }
  .drawer__nav-item:active .drawer__nav-link.drawer__nav-link--magazine::after {
    background: url(../img/header/icon2-hover.svg) no-repeat center center/cover;
  }
  .drawer__nav-item:active .drawer__nav-link .drawer__nav-link--head {
    color: #FFF;
  }
  .drawer__nav-item:active .drawer__nav-link .drawer__nav-link--body {
    color: #FFF;
  }
}

.drawer__nav-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  width: 100%;
  padding-block: 18.5px 18px;
  border-radius: 10px;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  -webkit-transition: background-color 0.3s ease-in-out !important;
  transition: background-color 0.3s ease-in-out !important;
  position: relative;
  z-index: 5;
}
.drawer__nav-link.drawer__nav-link--concept::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 16px;
  width: 9px;
  height: 9px;
  background: url(../img/header/icon1.svg) no-repeat center center/cover;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.drawer__nav-link.drawer__nav-link--partner::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 16px;
  width: 12px;
  height: 12px;
  background: url(../img/header/icon2.svg) no-repeat center center/cover;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.drawer__nav-link.drawer__nav-link--magazine::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 16px;
  width: 12px;
  height: 12px;
  background: url(../img/header/icon2.svg) no-repeat center center/cover;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.drawer__nav-link .drawer__nav-link--head {
  display: inline-block;
  color: #FE4C00;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.04px;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.drawer__nav-link .drawer__nav-link--body {
  display: inline-block;
  color: #FE4C00;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.44px;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}

.footer {
  background-color: #000 !important;
  color: #fff !important;
  padding-block: clamp(48px, 40.2px + 2vw, 69px);
}

.footer__inner {
  width: min(662px, 100%);
  padding-inline: 31px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .footer__inner {
    width: min(1440px, 100%);
    padding-inline: clamp(32px, -45.714px + 10.119vw, 100px);
    margin-inline: auto;
  }
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 46px;
  padding-bottom: 62px;
  border-bottom: 1px solid #FFF;
}
@media (width >= 768px) {
  .footer__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
    padding-bottom: 35px;
  }
}

.footer__top-list:has(p) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 33px;
}
@media (width >= 768px) {
  .footer__top-list:has(p) {
    gap: 19px clamp(33px, -24.143px + 7.44vw, 83px);
  }
}
.footer__top-list:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 0.5px;
  gap: 22px;
}
@media (width >= 768px) {
  .footer__top-list:has(img) {
    margin-top: 2px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-inline: 0;
  }
}

.footer__top-item:has(p) {
  position: relative;
  overflow: hidden;
}
.footer__top-item:has(p) span {
  display: block;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.28px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.footer__top-item:has(p) .textwidget {
  opacity: 0;
  visibility: hidden;
}
.footer__top-item:has(p) p {
  margin: 0 !important;
}
.footer__top-item:has(p) a {
  position: absolute;
  opacity: 0;
  visibility: visible;
  display: block;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .footer__top-item:has(p):hover {
    cursor: pointer;
    color: #CBCBCB !important;
  }
}
.footer__top-item:has(p):active {
  color: #7B7B7B !important;
}
.footer__top-item:has(img) span {
  display: none;
}
.footer__top-item:has(img) a {
  display: block;
  overflow: hidden;
  position: relative;
}
.footer__top-item:has(img) a img {
  width: 100%;
  height: auto;
  aspect-ratio: 327/114;
  border-radius: 10px;
}
.footer__top-item:has(img) a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  border-radius: 10px;
  background-color: #000;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}
.footer__top-item:has(img) a:active::after {
  opacity: 0.32;
}
@media (any-hover: hover) {
  .footer__top-item:has(img) a:hover {
    cursor: pointer;
  }
  .footer__top-item:has(img) a:hover::after {
    opacity: 0.2;
  }
}
@media (width >= 768px) {
  .footer__top-item:has(img) a {
    width: 300px;
    height: auto;
    aspect-ratio: 300/105;
  }
}

.footer__bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 29px;
}
@media (width >= 768px) {
  .footer__bottom {
    margin-top: 22px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

.footer__bottom-list:has(p) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px 25px;
}
@media (width >= 768px) {
  .footer__bottom-list:has(p) {
    padding-right: clamp(0px, -26.286px + 3.423vw, 23px);
  }
}
.footer__bottom-list:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.footer__bottom-item:has(p) {
  position: relative;
  overflow: hidden;
}
.footer__bottom-item:has(p) span {
  display: block;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.2px;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.footer__bottom-item:has(p) .textwidget {
  opacity: 0;
  visibility: hidden;
}
.footer__bottom-item:has(p) p {
  margin: 0;
}
.footer__bottom-item:has(p) a {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: visible;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (any-hover: hover) {
  .footer__bottom-item:has(p):hover {
    cursor: pointer;
    color: #CBCBCB !important;
  }
}
.footer__bottom-item:has(p):active {
  color: #7B7B7B !important;
}
.footer__bottom-item:has(img) {
  -webkit-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}
.footer__bottom-item:has(img) span {
  display: none;
}
.footer__bottom-item:has(img) a {
  display: block;
  width: 150px;
}
.footer__bottom-item:has(img) a img {
  width: 100%;
}
@media (width >= 768px) {
  .footer__bottom-item:has(img) a {
    width: 165px;
  }
}
@media (any-hover: hover) {
  .footer__bottom-item:has(img):hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.search-form {
  position: relative;
}

.search-form__inner {
  width: min(632px, 100%);
  padding-inline: 16px;
  margin-inline: auto;
}
@media (width >= 768px) {
  .search-form__inner {
    width: 100%;
    padding-inline: 0;
    margin-inline: 0;
  }
}

.search-form__submit {
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  top: 50%;
  left: 19px;
  translate: 0 -50%;
  background: url(../img/common/search-icon.svg) no-repeat center center/cover;
  -webkit-transition: background 0.3s ease-in-out !important;
  transition: background 0.3s ease-in-out !important;
}
@media (any-hover: hover) {
  .search-form__submit:hover {
    cursor: pointer;
    background: url(../img/common/search-icon-hover.svg) no-repeat center center/cover;
  }
}
.search-form__submit:active + .search-form__field {
  color: #B2B2B2 !important;
}

.search-form__field {
  margin: 0 !important;
  padding-block: 13px 12px !important;
  padding-inline: 46px 12px !important;
  border-radius: 10px !important;
  background: #FFF !important;
  -webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 1px 4px 0 rgba(0, 0, 0, 0.08) inset !important;
          box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.05), 0 1px 4px 0 rgba(0, 0, 0, 0.08) inset !important;
  color: #000 !important;
  font-size: 16px !important;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-weight: 400;
  letter-spacing: 1.28px;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.search-form__field::-webkit-input-placeholder {
  color: #7B7B7B;
}
.search-form__field::-moz-placeholder {
  color: #7B7B7B;
}
.search-form__field:-ms-input-placeholder {
  color: #7B7B7B;
}
.search-form__field::-ms-input-placeholder {
  color: #7B7B7B;
}
.search-form__field::placeholder {
  color: #7B7B7B;
}
@media (width >= 768px) {
  .search-form__field {
    font-size: clamp(14px, 2.275px + 1.527vw, 16px) !important;
  }
}
@media (width >= 900px) {
  .search-form__field {
    font-size: 16px !important;
    letter-spacing: 1.1px;
    padding-block: 11px 9px !important;
  }
}

@media (width >= 768px) {
  .sidebar {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (width >= 768px) {
  .sidebar .section__inner {
    width: clamp(260px, 152.571px + 13.988vw, 354px);
    padding: 0;
    margin: 0;
  }
}

@media (width >= 768px) {
  .sidebar__inner {
    width: clamp(260px, 152.571px + 13.988vw, 354px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-inline: 0;
    margin-inline: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 43px;
  }
}

.side-category__head {
  gap: 13px;
}

.side-category__subtitle {
  background: -webkit-gradient(linear, left top, left bottom, from(#FF1F00), to(#FF8A00));
  background: linear-gradient(180deg, #FF1F00 0%, #FF8A00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (width >= 768px) {
  .side-category__subtitle {
    font-size: clamp(32px, 22.857px + 1.19vw, 40px);
  }
}

.side-category__body {
  margin-top: clamp(24px, 23.629px + 0.095vw, 25px);
  background-color: #fff;
}
@media (width >= 768px) {
  .side-category__body {
    border-radius: 10px;
    padding-block: 25px;
  }
}
@media (width >= 900px) {
  .side-category__body {
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.05);
  }
}

@media (width >= 768px) {
  .side-category__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
  }
}

.side-category__link {
  padding-block: 17px 16px;
  padding-inline: 32px 24px;
  line-height: 1;
  display: block;
  border-bottom: 1px solid #E8E8E8;
  color: #616161;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.side-category__link::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: 12px;
  translate: 0 -50%;
  width: clamp(15px, 14.257px + 0.19vw, 17px);
  height: clamp(15px, 14.257px + 0.19vw, 17px);
  background: url(../img/common/icon-tag.svg) no-repeat center center/cover;
}
.side-category__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 9px;
  height: 9px;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .side-category__link:hover {
    cursor: pointer;
    color: #B2B2B2;
  }
}
.side-category__link:active {
  color: #FC8143;
}
@media (width >= 768px) {
  .side-category__link {
    height: auto;
    padding-inline: 32px 12px;
    padding-block: 10px;
    border-bottom: none;
    line-height: 1;
  }
  .side-category__link::after {
    display: none;
  }
}
@media (width >= 1200px) {
  .side-category__link {
    padding-inline: 57px 12px;
  }
  .side-category__link::before {
    left: 34px;
    width: 17px;
    height: 17px;
  }
}

.side-category__name {
  color: inherit;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.12px;
}
@media (width >= 1200px) {
  .side-category__name {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1.28px;
  }
}

.side-category__count {
  color: inherit;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0px;
}
.side-category__count span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (width >= 1200px) {
  .side-category__count {
    font-size: 16px;
  }
}

.top-container {
  padding-top: 32px;
}
@media (width >= 768px) {
  .top-container {
    padding-top: 23px;
  }
}

.recommend {
  margin-top: 35px;
  overflow: hidden;
}

.recommend__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(15px, 13.143px + 0.476vw, 20px);
}

.recommend__head {
  display: contents;
}
@media (width >= 768px) {
  .recommend__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.recommend__headline {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 6.514px + 0.381vw, 12px);
  padding-bottom: 8px;
  border-bottom: 1px solid #B5B5B5;
}
@media (width >= 768px) {
  .recommend__headline {
    padding: 0;
    border-bottom: none;
  }
}

.recommend__subtitle {
  background: linear-gradient(114deg, #FF1F00 28.38%, #FF8A00 71.62%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.recommend__subtitle::after {
  content: "";
  display: inline-block;
  width: clamp(20px, 18.143px + 0.476vw, 25px);
  height: clamp(40px, 36.286px + 0.952vw, 50px);
  background: url(../img/front-page/recommend-title.webp) no-repeat center center/cover;
  background-blend-mode: multiply;
  background-color: #F8F8F8;
}

.recommend__archive {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 4px;
  text-align: center;
}
@media (width >= 768px) {
  .recommend__archive {
    margin-top: -2px;
  }
}

.recommend__archive-link {
  display: inline-block;
  color: #000;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.2px;
  padding-right: 19px;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out !important;
  transition: color 0.3s ease-in-out !important;
}
.recommend__archive-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  width: 9px;
  height: 9px;
  background: url(../img/common/icon-arrow.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .recommend__archive-link:hover {
    cursor: pointer;
    color: #7B7B7B;
  }
}
.recommend__archive-link:active {
  color: #FFA051;
}

.recommend__swiper-container,
.recommend__swiper,
.recommend__swiper-wrapper,
.recommend__swiper-slide {
  position: relative;
}

.recommend__swiper-container {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  /* swiper読み込み前は非表示にしてレイアウトシフトを防ぐ */
}
.recommend__swiper-container.swiper-loading {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.recommend__swiper {
  overflow: visible !important;
}
@media (width >= 768px) {
  .recommend__swiper {
    overflow: hidden !important;
    padding: 8px !important;
    margin: -8px !important;
  }
}

.recommend__swiper-slide {
  border-radius: 5px;
}
@media (width >= 768px) {
  .recommend__swiper-slide {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.08);
  }
}

.recommend__slide-img {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.recommend__slide-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out !important;
  transition: opacity 0.3s ease-in-out !important;
}
.recommend__slide-img img {
  border-radius: 5px;
  width: 100%;
  aspect-ratio: 225/130;
  -webkit-transition: scale 0.3s ease-in-out !important;
  transition: scale 0.3s ease-in-out !important;
}
@media (width >= 768px) {
  .recommend__slide-img {
    border-radius: 10px;
  }
  .recommend__slide-img img {
    position: relative;
    z-index: 1;
    aspect-ratio: 384/221;
    border-radius: 10px;
  }
}
@media (any-hover: hover) {
  .recommend__slide-img:hover {
    cursor: pointer;
  }
  .recommend__slide-img:hover img {
    scale: 1.1;
  }
}
.recommend__slide-img:active::before {
  opacity: 0.2;
}

.recommend__slide-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.recommend__slide-link span {
  opacity: 0;
  visibility: hidden;
}

.recommend__button-prev,
.recommend__button-next {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.recommend__button-prev::after,
.recommend__button-next::after {
  content: "";
}

.recommend__button-prev,
.recommend__button-next {
  position: relative !important;
  inset: 0 !important;
  margin: 0 !important;
  width: 45px !important;
  height: 45px !important;
}
.recommend__button-prev::after,
.recommend__button-next::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background 0.3s ease-in-out !important;
  transition: background 0.3s ease-in-out !important;
}

.recommend__button-prev::after {
  background: url(../img/front-page/swiper-btn-prev.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .recommend__button-prev:hover::after {
    background: url(../img/front-page/swiper-btn-prev-hover.svg) no-repeat center center/cover;
  }
}
.recommend__button-prev:active::after {
  background: url(../img/front-page/swiper-btn-prev-active.svg) no-repeat center center/cover;
}

.recommend__button-next::after {
  background: url(../img/front-page/swiper-btn-next.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .recommend__button-next:hover::after {
    background: url(../img/front-page/swiper-btn-next-hover.svg) no-repeat center center/cover;
  }
}
.recommend__button-next:active::after {
  background: url(../img/front-page/swiper-btn-next-active.svg) no-repeat center center/cover;
}

.recommend__items {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (width >= 768px) {
  .recommend__items {
    padding-right: 32px;
    margin-top: 17px;
  }
}
@media (width >= 900px) {
  .recommend__items {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

.recommend__pagination {
  /* 分数表示の部分 */
  /* デフォルトの / を消す */
}
.recommend__pagination.swiper-pagination-custom {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  inset: 0;
  gap: 13px;
  /* "/" の部分 */
}
.recommend__pagination.swiper-pagination-custom::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 6px);
  translate: -50% -50%;
  width: 1px;
  height: 14px;
  background-color: #767676;
}
.recommend__pagination .swiper-pagination-separator {
  opacity: 0;
}
.recommend__pagination .swiper-pagination-current,
.recommend__pagination .swiper-pagination-total {
  display: inline-block;
  color: #31241F;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.04px;
}

.popular__subtitle {
  background: linear-gradient(117deg, #FF1F00 30.23%, #FF8A00 69.77%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.popular__list {
  gap: 40px;
}
@media (width >= 768px) {
  .popular__list {
    gap: 24px;
  }
}
@media (width >= 900px) {
  .popular__list {
    gap: clamp(24px, -2.667px + 2.963vw, 40px) clamp(18px, 8px + 1.111vw, 24px);
  }
}

.latest__subtitle {
  background: linear-gradient(125deg, #FF1F00 24.22%, #FF8A00 75.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest__body {
  margin-top: clamp(25px, 22.4px + 0.667vw, 32px);
  padding-bottom: clamp(27px, 24.4px + 0.667vw, 34px);
}

.latest__list {
  gap: 24px;
}
@media (width >= 900px) {
  .latest__list {
    gap: clamp(24px, -2.667px + 2.963vw, 40px) clamp(18px, 8px + 1.111vw, 24px);
  }
}

.partners__subtitle {
  background: linear-gradient(125deg, #FF1F00 24.22%, #FF8A00 75.78%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partners__body {
  margin-top: clamp(21px, 17.286px + 0.952vw, 31px);
  padding-bottom: clamp(27px, 20.686px + 1.619vw, 44px);
}

.partners__swiper-container,
.partners__swiper,
.partners__swiper-wrapper,
.partners__swiper-slide {
  position: relative;
}

@media (width >= 768px) {
  .partners__swiper {
    padding: 8px !important;
    margin: -8px !important;
  }
}

.partners__swiper-wrapper {
  height: 100%;
}

.partners__swiper-slide {
  height: auto;
}

.partners__item {
  border-radius: 10px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding-bottom: 21px;
}

.partners__item-img {
  margin-bottom: -4px;
  border-radius: 10px 10px 0 0;
}
.partners__item-img img {
  border-radius: 10px 10px 0 0;
}

.partners__item-cat {
  margin-inline: 20px;
}

.partners__item-cat-link {
  font-size: 14px;
}
@media (width >= 900px) {
  .partners__item-cat-link {
    font-size: clamp(11px, 6px + 0.556vw, 14px);
  }
}

.partners__item-text {
  margin-inline: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #616161;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Helvetica Neue", Arial, "ヒラギノ角ゴ Std W4", "Meiryo", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.28px;
}
@media (width >= 900px) {
  .partners__item-text {
    font-size: clamp(14px, 10.667px + 0.37vw, 16px);
  }
}

.partners__item-title {
  margin-inline: 20px;
  color: #31241F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.6px;
}
@media (width >= 900px) {
  .partners__item-title {
    margin-top: -16px;
    font-size: clamp(18px, 14.667px + 0.37vw, 20px);
  }
}

.partners__items {
  margin-top: clamp(21px, 15.8px + 1.333vw, 35px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.partners__button-prev,
.partners__button-next {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

.partners__button-prev::after,
.partners__button-next::after {
  content: "";
}

.partners__button-prev,
.partners__button-next {
  position: relative !important;
  inset: 0 !important;
  margin: 0 !important;
  width: 45px !important;
  height: 45px !important;
}
.partners__button-prev::after,
.partners__button-next::after {
  content: "" !important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background 0.3s ease-in-out !important;
  transition: background 0.3s ease-in-out !important;
}

.partners__button-prev::after {
  background: url(../img/front-page/swiper-btn-prev.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .partners__button-prev:hover::after {
    background: url(../img/front-page/swiper-btn-prev-hover.svg) no-repeat center center/cover;
  }
}
.partners__button-prev:active::after {
  background: url(../img/front-page/swiper-btn-prev-active.svg) no-repeat center center/cover;
}

.partners__button-next::after {
  background: url(../img/front-page/swiper-btn-next.svg) no-repeat center center/cover;
}
@media (any-hover: hover) {
  .partners__button-next:hover::after {
    background: url(../img/front-page/swiper-btn-next-hover.svg) no-repeat center center/cover;
  }
}
.partners__button-next:active::after {
  background: url(../img/front-page/swiper-btn-next-active.svg) no-repeat center center/cover;
}

.partners__pagination {
  /* 分数表示の部分 */
  /* デフォルトの / を消す */
}
.partners__pagination.swiper-pagination-custom {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 !important;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  inset: 0;
  color: transparent;
  gap: 13px;
  /* "/" の部分 */
}
.partners__pagination.swiper-pagination-custom::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 6px);
  translate: -50% -50%;
  width: 1px;
  height: 14px;
  background-color: #767676;
}
.partners__pagination .swiper-pagination-separator {
  opacity: 0;
}
.partners__pagination .swiper-pagination-current,
.partners__pagination .swiper-pagination-total {
  display: inline-block;
  color: #31241F;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.04px;
}

.partners__link {
  margin-top: 30px;
}
@media (width >= 900px) {
  .partners__link {
    margin-top: 14px;
  }
}