/*------------------------------
	reset
------------------------------*/
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
    overflow-wrap: anywhere;
    min-height: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
    font-size: 0;
    line-height: 0;
    border: 0;
}
img.cslFixImg {
    width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
/*------------------------------
	root
------------------------------*/
html,
body {
    font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #333;
    background-color: #F5F5F5;
}
/*------------------------------
	共通
------------------------------*/
.PC {
    display: block !important;
}
.SP {
    display: none !important;
}
/* リンク */
a {
    color: #4B6AB4;
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}
a:visited {
    color: #999;
}
/* 見出し */
.sectionTitle {
    font-size: clamp(1.25rem, 1rem + 1.25vw, 2rem);
    font-weight: 900;
    background-size: 100% 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
}
.sectionTitle.bgcolor_blu {
    padding: 16px;
    color: #fff;
    background-color: #3E58B8;
    background-image: url("../images/sectionTitle_bg-blu.png");
}
.sectionTitle.bgcolor_orn {
    padding: 16px;
    color: #fff;
    background-color: #EA6000;
    background-image: url("../images/sectionTitle_bg-orn.png");
}
/* ラベル */
.label {
    padding: 0 clamp(0.5rem, 0.333rem + 0.83vw, 1rem);
    display: block;
    max-width: 100%;
    font-size: clamp(0.5rem, 0.417rem + 0.42vw, 0.75rem);
    line-height: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #FFF !important;
    background-color: #FF0404;
}
/* 更新日時 */
*[class$="_date"] {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 12px;
    line-height: 12px;
    white-space: nowrap;
    color: #808080;
}
*[class$="_date"] svg {
    margin-top: -1.5px;
    width: 12px;
    height: 12px;
    fill: #808080;
}
/*------------------------------
	カコミ
------------------------------*/
.container {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    background-color: #fff;
    overflow: hidden;
}
.container_inner {
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
    height: auto;
    position: relative;
}
.main_container {
    padding: 0 16px;
    width: 70%;
    min-width: 672px;
    height: auto;
    border-left: solid 1px #b4b4b4;
    overflow-y: scroll;
}
.aside_container {
    padding: 16px 16px 0;
    width: 30%;
    min-width: 288px;
    height: auto;
    overflow-y: scroll;
}
.main_container > :first-child,
.aside_container > :first-child,
.article_contentBox > :first-child {
    margin-top: 0;
}
.sectionBox {
    margin: 16px auto;
}
.show {
    display: block !important;
}
/*------------------------------
	ヘッダー
------------------------------*/
.headerBox {
    margin: 0 auto;
    width: 100%;
    position: relative;
    top: 0;
    z-index: 9990;
}
.headerBox_inner {
    padding: 4px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    width: 100%;
    background-color: #1f2c5c;
}
.headerBox_txt {
    font-size: 14px;
    text-align: right;
    color: #fff;
    order: 1;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-right: calc(50% + 100px);
}
.headerBox_logo {
    flex: 1 1 20%;
    order: 3;
    height: 56px;
    text-align: center;
}
.headerBox_logo a,
.headerBox_logo img {
    display: inline-block;
    height: 100%;
}
.headerBox_logo a:hover {
    opacity: 1;
}
.headerBox_menu,
.headerBox_search {
    flex: 0 1 56px;
    flex: 0 1 320px;
    height: 56px;
    position: relative;
}
.headerBox_menu {
    order: 2;
}
.headerBox_search {
    order: 4;
}
.headerBox_menu_btn,
.headerBox_search_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 56px;
    cursor: pointer;
    position: absolute;
    /*bottom: 4px;*/
    top: 0;
}
.headerBox_menu_btn {
    left: 0;
}
.headerBox_search_btn {
    right: 0;
}
.headerBox_menu_btn:hover,
.headerBox_search_btn:hover {
    opacity: 0.8;
}
.headerBox_menu_btn svg,
.headerBox_search_btn svg.icon-close {
    width: 40px;
    height: 40px;
    fill: #fff;
}
.headerBox_search_btn svg {
    width: 36px;
    height: 36px;
    fill: #fff;
}
.headerBox_menu_btn.active,
.headerBox_search_btn.active {
    z-index: 9999;
}
.headerBox_menu_btn .icon-close,
.headerBox_menu_btn.active .icon-menu,
.headerBox_search_btn .icon-close,
.headerBox_search_btn.active .icon-search {
    display: none;
}
.headerBox_menu_btn.active .icon-close,
.headerBox_search_btn.active .icon-close {
    display: block;
}
/* ハンバーガーメニュー */
.headerBox_menu_list {
    padding: 64px 24px 0;
    width: 320px;
    height: 100%;
    background-color: #000;
    position: fixed;
    top: 0;
    left: -640px;
    transition: 1s;
    z-index: 9998;
    opacity: 0;
}
.headerBox_menu_list.open {
    left: 0;
    transition: 0.5s;
    opacity: 1;
}
.headerBox_menu_list > ul {
    padding-bottom: 24px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.headerBox_menu_list ul::-webkit-scrollbar {
    display: none;
}
.headerBox_menu_list li {
    margin: 16px 0;
}
.headerBox_menu_list > ul > li:first-child {
    margin-bottom: 32px;
}
.headerBox_menu_list a {
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
}
.headerBox_menu_list a::before {
    content: "";
    margin-right: 1em;
    width: 6px;
    height: 6px;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.headerBox_menu_overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	z-index: 9997;
}
.headerBox_menu_list.open + .headerBox_menu_overlay {
	display: block;
}
/* ハンバーガーメニュー内アコーディオン */
.headerBox_menu_list_accordion .accordion_header {
    padding: 8px 0 8px 3px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
}
@media(min-width: 961px){
    .headerBox_menu_list_accordion .accordion_header:hover {
        opacity: 0.8;
    }
}
.headerBox_menu_list_accordion .accordion_header::before {
    content: "";
    margin-top: -4px;
    margin-right: calc(1em - 3px);
    width: 6px;
    height: 6px;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    transition: all 0.3s ease-in-out;
    transform: rotate(135deg);
}
.headerBox_menu_list_accordion .accordion_header.open::before {
    margin-top: 4px;
    transform: rotate(-45deg);
}
.headerBox_menu_list_accordion .accordion_body {
    margin-left: 1.5em;
    display: none;
}
.headerBox_menu_list_accordion .accordion_body {
    margin-left: 1.5em;
    display: none;
}
.headerBox_menu_list_accordion .accordion_body li:last-child {
    margin-bottom: 0;
}
/* 検索オーバーレイ */
.headerBox_search_overlay {
    padding: 64px 0 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: fixed;
    top: 0;
    right: -200%;
    transition: 1s;
    z-index: 9998;
    opacity: 0;
}
.headerBox_search_overlay.open {
    right: 0;
    transition: 0.6s;
    opacity: 1;
}
.headerBox_search_overlay_inner {
    margin: 0 auto;
    padding-bottom: 32px;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.headerBox_search_overlay_inner::-webkit-scrollbar {
    display: none;
}
.headerBox_search_overlay .sectionTitle {
    margin-bottom: 16px;
    color: #fff;
}
.headerBox_search_overlay_inner .searchBox,
.headerBox_search_overlay_inner .trendwordBox {
    margin: 0;
    padding: 16px;
    background-color: transparent;
}
.headerBox_search_overlay_inner .trendwordBox_tag {
    height: auto;
    overflow: visible;
}
.headerBox_search_overlay_inner .trendwordBox_tag li:first-child {
    padding: 0;
    font-size: 16px;
    font-size: clamp(14px, 1.25vw, 16px);
    font-weight: 400;
}
/* ヘッダー内検索バー */
.headerBox_search .searchBox {
    margin: 0;
    padding: 0;
    background-color: transparent;
}
.headerBox_search .searchBox form {
    height: calc(clamp(2.125rem, 2.083rem + 0.21vw, 2.25rem) + 4px);
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.headerBox_search .searchBox_text input[type*="text"],
.headerBox_search .searchBox_submit input[type*="submit"] {
    line-height: clamp(2.125rem, 2.083rem + 0.21vw, 2.25rem);
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
}
/* 背景スクロールのロック */
body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
/*------------------------------
	検索
------------------------------*/
.searchBox {
    margin-top: 16px;
    padding: 16px;
    background-color: #eee;
}
#pickup + .searchBox,
.sliderBox + .searchBox {
    margin-top: -16px;
}
.searchBox form {
    display: flex;
}
.searchBox form div {
    border: solid 2px #E93733;
}
.searchBox .searchBox_text {
    flex: 0 1 80%;
    background-color: #fff;
}
.searchBox .searchBox_submit {
    flex: 1 1 20%;
    background-color: #E93733;
}
.searchBox_text input[type*="text"],
.searchBox_submit input[type*="submit"] {
    width: 100%;
    line-height: clamp(2.25rem, 2rem + 1.25vw, 3rem);
    font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
    background: none;
    background-color: transparent;
    border: none;
    overflow: hidden;;
}
.searchBox_text input[type*="text"] {
    padding-left: 10px;
}
.searchBox_submit input[type*="submit"] {
    color: #fff;
    cursor: pointer;
}
.searchBox form div,
.searchBox_text input[type*="text"],
.searchBox_submit input[type*="submit"] {
    border-radius: 8px;
}
::placeholder{
    color: #9e9e9e;
}
/*------------------------------
	注目機種
------------------------------*/
.trendwordBox {
    margin-bottom: 16px;
    padding: 16px;
    background-color: #eee;
}
#pickup + .trendwordBox,
.sliderBox + .trendwordBox {
    margin-top: -16px;
}
.trendwordBox_tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: clamp(4rem, 3.559rem + 1.18vw, 4.5rem);
    overflow: hidden;
}
.trendwordBox_tag li {
    max-width: 100%;
}
.trendwordBox_tag li:first-child {
    padding: 0 16px;
    font-size: clamp(1.125rem, 1.015rem + 0.29vw, 1.25rem);
    line-height: clamp(1.75rem, 1.529rem + 0.59vw, 2rem);
    font-weight: 900;
}
.trendwordBox_tag .label {
    font-size: clamp(0.875rem, 0.765rem + 0.29vw, 1rem);
    line-height: clamp(1.75rem, 1.529rem + 0.59vw, 2rem);
    color: #595959 !important;
    background-color: #d2d2d2;
    border-radius: 4px;
}
.trendwordBox_tag .label::before {
    content:'#';
}
/*------------------------------
	パンくずリスト
------------------------------*/
.breadcrumbBox {
    margin: 0 auto;
    width: 100%;
    max-width: 1280px;
    color: #fff;
    background-color: #4B6AB4;
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.breadcrumbBox::-webkit-scrollbar {
    display: none;
}
.breadcrumbBox_list {
    padding-left: 16px;
    display: flex;
    gap: 16px;
}
.breadcrumbBox_list::after {
    content: "";
    margin-left: -16px;
    min-width: 16px;
}
.breadcrumbBox_list li {
    flex: none;
    font-size: 14px;
    line-height: 28px;
    color: #fff;
}
.breadcrumbBox_list a {
    color: #fff;
}
.breadcrumbBox_list li:not(:last-child)::after {
    margin-left: 8px;
    content: "＞";
}
/*------------------------------
	目次
------------------------------*/
.tocBox .tocBox_inner {
    position: static;
}
.tocBox_overlay {
	display: none;
}
/* ボタン */
.tocBox_btn {
    display: none;
}
/* アンカーリスト */
.tocBox_heading {
    padding: 12px;
    display: block;
    font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
    font-weight: 900;
    color: #fff;
    background-color: #1f2c5c;
}
.tocBox ul {
    border: solid 1px #b4b4b4;
}
.tocBox li {
    border-top: solid 1px #b4b4b4;
}
.tocBox a {
    padding: 12px;
    display: block;
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    color: #333;
    background-color: #fff;
}
/*------------------------------
	タブ
------------------------------*/
.tabBox {
    margin-top: 16px !important;
    border-bottom: solid 4px #4B6AB4;
}
.tabBox ul {
    padding: 0 8px;
    display: flex;
    justify-content: space-around;
    gap: 8px;
}
.tabBox li {
    flex: 1 1 20%;
}
.tabBox a,
.tabBox p {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: clamp(2rem, 1.667rem + 1.67vw, 3rem);
    font-size: clamp(0.75rem, 0.583rem + 0.83vw, 1.25rem);
    font-weight: 900;
    text-align: center;
    color: #4B6AB4;
    background-color: #fff;
    border: solid 1px #4B6AB4;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
}
.tabBox p:hover {
    opacity: 0.8;
}
.tabBox svg {
    width: clamp(1.25rem, 1rem + 1.25vw, 2rem);
    height: clamp(1.25rem, 1rem + 1.25vw, 2rem);
    fill: #4B6AB4;
}
.tabBox .active a,
.tabBox .active p {
    color: #fff;
    background-color: #4B6AB4;
}
.tabBox .active svg {
    fill: #fff;
}
/*------------------------------
	リンク
------------------------------*/
.linkBox li {
    padding: 16px 0;
    border-bottom: solid 1px #b4b4b4;
    position: relative;
}
.linkBox:not(.L):not(.M) li:last-child {
    border-bottom: none;
}
.linkBox a {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    /*gap: 8px;*/
    color: #333;
    position: relative;
}
.linkBox figure,
.category_mainvisual {
    flex: 0 1 40%;
    display: block;
    background-image: url("../images/noimage.png");
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #eee;
    aspect-ratio: 16 / 9;
    position: relative;
}
.category_mainvisual {
    margin: -16px -16px 0;
    aspect-ratio: auto;
}
.tmb_space {
    width: 100% !important;
}
.tmb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.linkBox_meta {
    flex: 1 1 50%;
    margin-left: 8px;
}
.linkBox_title span {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-family: YakuHanJP, Arial, Helvetica, sans-serif;
    font-size: clamp(0.875rem, 0.792rem + 0.42vw, 1.125rem);
    font-weight: 900;
    line-height: 1.2;
    overflow: hidden;
    word-break: break-all;
}
.linkBox_category {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: absolute;
    top: 16px;
    left: calc(40% + 8px);
}
.linkBox_meta > .linkBox_category,
.linkBox a > .linkBox_tag {
    margin: 0 !important;
    width: 100%;
    opacity: 0;
    position: static;
}
.linkBox_meta > .linkBox_category  .label {
    margin-bottom: 4px !important;
}
.linkBox_info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    position: absolute;
    bottom: 16px;
    left: 0;
}
.linkBox.M:not(.scrollBox_inner) .linkBox_info,
.linkBox.category_list li:nth-of-type(n+2):nth-of-type(-n+3) .linkBox_info {
    width: calc(100% - 16px);
}
.linkBox_tag {
    display: flex;
    gap: 8px;
    overflow: hidden;
}
.linkBox_tag .label {
    margin-top: 8px;
    display: block;
    font-size: clamp(0.875rem, 0.765rem + 0.29vw, 1rem);
    line-height: clamp(1.75rem, 1.529rem + 0.59vw, 2rem);
    color: #595959 !important;
    background-color: #d2d2d2;
    border-radius: 4px;
    word-break: break-all;
}
.linkBox_tag .label::before {
    content:'#';
}
/* 縦組み */
.linkBox.M,
.linkBox.category_list {
    display: flex;
    flex-wrap: wrap;
}
.linkBox.category_list li {
    flex: 0 1 100%;
}
.linkBox.M:not(.scrollBox_inner) li,
.linkBox.category_list li:nth-of-type(n+2):nth-of-type(-n+3) {
    flex: 0 1 50%;
    width: 50%;
    border-right: solid 1px #b4b4b4;
    border-bottom: solid 1px #b4b4b4;
}
.linkBox.M:not(.scrollBox_inner) li:nth-of-type(odd),
.linkBox.category_list li:nth-of-type(2) {
    padding-right: 16px;
}
.linkBox.M:not(.scrollBox_inner) li:nth-of-type(even),
.linkBox.category_list li:nth-of-type(3) {
    padding-left: 16px;
    border-right-color: transparent !important;
}
.linkBox.L .linkBox_meta,
.linkBox.M .linkBox_meta,
.linkBox.category_list li:nth-of-type(-n+3) .linkBox_meta{
    margin-top: 8px;
    margin-left: 0;
}
.linkBox.L figure,
.linkBox.L .linkBox_meta,
.linkBox.M figure,
.linkBox.M .linkBox_meta,
.linkBox.category_list li:nth-of-type(-n+3) figure,
.linkBox.category_list li:nth-of-type(-n+3) .linkBox_meta {
    flex-basis: 100%;
}
.linkBox.L .linkBox_title span,
.linkBox.category_list li:nth-of-type(1) .linkBox_title span {
    font-size: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
}
.linkBox.L a > .linkBox_tag,
.linkBox.M a > .linkBox_tag,
.linkBox.category_list li:nth-of-type(1) .linkBox_tag,
.linkBox.category_list li:nth-of-type(n+2):nth-of-type(-n+3) .linkBox_tag {
    margin: -16px 0 0 !important;
    min-height: clamp(1.75rem, 1.529rem + 0.59vw, 2rem);
}
.linkBox.L a > .linkBox_tag .label,
.linkBox.M a > .linkBox_tag .label,
.linkBox.category_list li:nth-of-type(1) .linkBox_tag .label,
.linkBox.category_list li:nth-of-type(n+2):nth-of-type(-n+3) .linkBox_tag .label {
    margin-top: 16px;
}
.linkBox.L .linkBox_category,
.linkBox.category_list li:nth-of-type(1) .linkBox_category {
    margin-top: calc(56.25% + 24px);
    top: 0;
    left: 0;
}
.linkBox.M .linkBox_category,
.linkBox.category_list li:nth-of-type(n+2):nth-of-type(-n+3) .linkBox_category {
    margin-top: calc(56.25% + 16px);
    top: 0;
    left: 0;
}
.linkBox.M:not(.scrollBox_inner) li:nth-of-type(even) .linkBox_category,
.linkBox.M:not(.scrollBox_inner) li:nth-of-type(even) .linkBox_info,
.linkBox.category_list li:nth-of-type(3) .linkBox_category,
.linkBox.category_list li:nth-of-type(3) .linkBox_info {
    left: 16px !important;
}
.linkBox.L .linkBox_category .label,
.linkBox.category_list li:nth-of-type(1) .linkBox_category .label {
    font-size: clamp(0.625rem, 0.542rem + 0.42vw, 0.875rem);
    line-height: clamp(1.25rem, 1.083rem + 0.83vw, 1.75rem);
}
/* 機種 */
.linkBox li.slot,
.linkBox li.pachi {

    margin: 16px auto;
    padding: 0;
    border-bottom: none;
}
.linkBox li.slot a,
.linkBox li.pachi a {
    padding: 8px;
    font-size: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
    background-size: 40% auto;
    background-position: right 8px bottom 8px;
    background-repeat: no-repeat;
    border: solid 8px;
    border-radius: 8px;
}
.linkBox li.slot a {
    background-image: url("../images/linkBox_bg-slot.png");
    background-color: #FFE0E0;
    border-color: #FFBEBE;
}
.linkBox li.pachi a {
    background-image: url("../images/linkBox_bg-pachi.png");
    background-color: #BDD7FF;
    border-color: #9BBEFF;
}
.linkBox li.slot figure,
.linkBox li.pachi figure {
    flex: 0 1 20%;
    background-color: transparent;
}
.linkBox li.slot figure {
    aspect-ratio: 48 / 81;
}
.linkBox li.pachi figure {
    aspect-ratio: 52 / 81;
}
.linkBox li.slot .tmb,
.linkBox li.pachi .tmb {
    object-position: bottom center;
}
.linkBox li.slot .linkBox_title,
.linkBox li.pachi .linkBox_title {
    display: flex;
    align-items: baseline;
}
.linkBox li.slot.NEW .linkBox_title::after,
.linkBox li.pachi.NEW .linkBox_title::after {
    content: "NEW";
    margin-left: 5px;
    font-size: 0.7em;
    color: #FF0404;
    white-space: nowrap;
}
.linkBox li.slot .linkBox_title span,
.linkBox li.pachi .linkBox_title span {
    -webkit-line-clamp: 1;
    font-size: 1em;
}
.linkBox li.slot .linkBox_item,
.linkBox li.pachi .linkBox_item {
    margin-top: 8px;
    font-size: 0.8em;
}
p.linkBox_item:nth-of-type(-n + 4)::before {
    content: "・";
}
.linkBox li.slot .linkBox_date,
.linkBox li.pachi .linkBox_date {
    position: absolute;
    right: 8px;
    bottom: 8px;
}
/*------------------------------
	ピックアップ・メインビジュアル(タイトル画像)
------------------------------*/
#pickup .linkBox li,
#mainvisual .linkBox li {
    padding: 0;
    border: none;
}
/*------------------------------
	新着記事
------------------------------*/
#newarrivals .linkBox li.hidden {
    display: none;
}
#newarrivals .linkBox li:not(.slot):not(.pachi) {
    border-bottom: none;
    border-top: solid 1px #b4b4b4;
}
#newarrivals .linkBox li:not(.slot):not(.pachi):first-child {
    border-top: none;
}
/* もっと見る */
#newarrivals .morebtnBox p {
    color: #fff;
    background-color: #1f2c5c;
    border: none;
    position: relative;
}
#newarrivals .morebtnBox p::after {
    position: absolute;
    left: 16px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transition: all 0.3s ease-in-out;
    transform: rotate(135deg);
    margin: -4px 0 0;
}
/*------------------------------
	NEW MACHINE
------------------------------*/
#newmachine .linkBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 2%;
}
#newmachine .linkBox li.slot,
#newmachine .linkBox li.pachi {
    flex: 0 1 23.5%;
    margin: 16px 0 0;
}
#newmachine .linkBox li.slot a,
#newmachine .linkBox li.pachi a {
    gap: 4px;
    padding: 0;
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
#newmachine .linkBox li.slot .linkBox_meta,
#newmachine .linkBox li.pachi .linkBox_meta {
    margin-left: 0;
}
#newmachine .linkBox li.slot figure,
#newmachine .linkBox li.pachi figure {
    flex-basis: 100%;
}
#newmachine .linkBox li.slot .linkBox_title span,
#newmachine .linkBox li.pachi .linkBox_title span {
    -webkit-line-clamp: 2;
    font-size: 0.7em;
    font-weight: 400;
}
#newmachine + .searchBox {
    margin: 0 0 16px;
}
/*------------------------------
	全力特集機種
------------------------------*/
.specialBox {
    margin-top: 16px;
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
    background-color: #FFFF00;
    border: solid 8px #FF9600;
    border-radius: 8px;
}
.specialBox .leadBox {
    width: 100%;
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    color: #666;
}
.specialBox .sectionTitle {
    margin-bottom: 8px;
    width: 100%;
    color: #c00;
}
.specialBox_left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.special_s .specialBox_left {
    flex: 0 1 45%;
}
.special_p .specialBox_left {
    flex: 0 1 47%;
}
.specialBox_right {
    flex: 1 1 40%;
    margin-left: 8px;
}
.specialBox .specialBox_right .linkBox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    height: 100%;
}
.specialBox .linkBox li.slot a,
.specialBox .linkBox li.pachi a {
    padding: 0;
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.specialBox .linkBox li.slot figure,
.specialBox .linkBox li.pachi figure {
    flex-basis: 100%;
}
.specialBox .linkBox li {
    margin: 0 !important;
    padding: 0;
    border-bottom: none;
}
.specialBox .linkBox a {
    flex-direction: column;
}
.specialBox .linkBox_meta {
    margin-top: 8px;
    margin-left: 0;
}
.specialBox .linkBox_date {
    justify-content: flex-end;
    position: static;
}
.specialBox .morebtnBox {
    margin-top: 16px;
    width: 100%;
}
.specialBox .morebtnBox a {
    padding: 16px 0;
    height: auto;
    color: #fff;
    background-color: #4B6AB4;
    border: none;
}
.specialBox .morebtnBox a > br {
    display: none;
}
/*------------------------------
	アンケート
------------------------------*/
#survey {
    padding: 16px 0;
    background-color: #6492ED;
}
#survey .sectionTitle {
    margin: 0 16px 16px;
    display: flex;
    color: #333;
}
.scrollBox {
    overflow-x: scroll;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollBox::-webkit-scrollbar {
    display: none;
}
.scrollBox_inner {
    padding-left: 16px;
    flex-wrap: nowrap !important;
    gap: 16px;
}
.scrollBox_inner::after {
    content: "";
    margin-left: -16px;
    min-width: 16px;
}
.scrollBox_inner li {
    padding: 0;
    width: 52%;
    flex: none;
    border: none;
}
.scrollBox_inner.linkBox.M .linkBox_category {
    margin-top: calc(56.25% + 8px);
}
#survey .linkBox_date {
    color: #666;
}
#survey .linkBox_date svg {
    fill: #666;
}
#survey .leadBox {
    margin: 16px auto;
    padding: 8px 16px;
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    line-height: 1.3;
    color: #fff;
    background-color: rgba(0,0,0,0.25);
}
/*------------------------------
	実戦生VOICE
------------------------------*/
#voice {
    padding: 16px 0;
    background-color: #C4B8FF;
}
#voice .sectionTitle {
    margin: 0 0 16px;
    padding: 16px;
    background-color: rgba(255,255,255,0.75);
}
#voice .sectionTitle .icon-nama {
    margin-bottom: -3px;
    width: clamp(1.25rem, 1rem + 1.25vw, 2rem);
    height: clamp(1.25rem, 1rem + 1.25vw, 2rem);
}
#voice .linkBox li {
    margin: 16px;
}
#voice .linkBox a {
    gap: 0.2em;
    background-color: #fff;
    background-image: none;
    border: solid 8px #fff;
    border-radius: 8px;
}
#voice .linkBox .slot a {
    background-color: #FFD7D7;
    border-color: #FFEBEB;
}
#voice .linkBox .pachi a {
    background-color: #BDD7FF;
    border-color: #DCEBFF;
}
#voice .linkBox_title {
    flex: 1 1 50%;
}
#voice .linkBox_date {
    flex: 0 1 auto;
    margin-top: 0;
    font-size: 1em;
    line-height: 1.3;
    white-space: nowrap;
    position: static;
}
#voice .linkBox_item {
    margin-top: 0;
    width: 100%;
}
#voice .linkBox_writername {
    width: 100%;
    font-size: 0.8em;
    text-align: right;
}
#voice .linkBox_writername::before {
    content: "担当ライター：";
}
/* もっと見る */
#voice .morebtnBox.machinfo {
    margin: 16px 16px 0;
}
/*------------------------------
	ランキング
------------------------------*/
#ranking .sectionTitle {
    margin-bottom: 16px;
}
.main_container #ranking .sectionTitle {
    margin-top: 16px;
}
#ranking.ranking_s .sectionTitle::before {
    white-space: pre;
    content: "パチスロ機種情報\A";
}
#ranking.ranking_p .sectionTitle::before {
    white-space: pre;
    content: "パチンコ機種情報\A";
}
#ranking.ranking_j .sectionTitle::before {
    content: "実戦";
}
#ranking.ranking_r .sectionTitle::before {
    content: "連載";
}
#ranking .sectionBox_inner {
    display: none;
}
#ranking .linkBox li {
    margin: 8px 0;
    padding: 0;
    border-bottom: none;
}
#ranking .linkBox li > a {
    padding: 8px;
    width: 100%;
    min-height: 32px;
    background-color: #FFFFD8;
    border: solid 8px #FFD800;
    border-radius: 8px;
}
#ranking.ranking_s .linkBox li > a {
    background-color: #FFE0E0;
    border-color: #FFBEBE;
}
#ranking.ranking_p .linkBox li > a {
    background-color: #BDD7FF;
    border-color: #9BBEFF;
}
#ranking .linkBox_title span {
    line-height: 1.15;
}
#ranking li.slot .linkBox_title span,
#ranking li.pachi .linkBox_title span {
    -webkit-line-clamp: 10;
}
#ranking .label {
    padding: 0 8px;
}
#ranking .linkBox_info {
    width: calc(100% - 32px);
    left: 16px;
}
.linkBox_rank {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
}
.linkBox_rank p {
    width: 32px;
    line-height: 32px;
    font-weight: 900;
    text-align: center;
    color: #fff;
    background-color: #3E58B8;
    border-radius: 100vh;
}
#ranking .bannerBox,
#ranking .adbannerBox {
    margin: 16px auto;
    gap: 4px;
}
#ranking .bannerBox a,
#ranking .adbannerBox a {
    display: inline-block;
    flex: 1 1 100%;
}
#ranking .bannerBox_text {
    text-align: left;
}
/* サイドバーのみ適用 */
.aside_container #ranking .linkBox li > a {
    background-image: none;
}
.aside_container #ranking .linkBox li.slot figure,
.aside_container #ranking .linkBox li.pachi figure,
.aside_container #ranking li.slot .linkBox_item,
.aside_container #ranking li.pachi .linkBox_item {
    display: none;
}
.aside_container #ranking .tabBox p {
    height: clamp(1.75rem, 1.583rem + 0.83vw, 2.25rem);
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
}
.aside_container #ranking .linkBox_meta {
    margin-left: 4px;
}
.aside_container #ranking li.slot .linkBox_meta,
.aside_container #ranking li.pachi .linkBox_meta {
    padding-left: 32px;
}
.aside_container #ranking .linkBox_title span {
    -webkit-line-clamp: 3;
    font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
    line-height: 1.2;
}
.aside_container #ranking .linkBox_date {
    font-size: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
    line-height: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
}
.aside_container #ranking li.slot .linkBox_date,
.aside_container #ranking li.pachi .linkBox_date {
    position: static;
    justify-content: flex-end;
}
.aside_container #ranking .linkBox_date svg {
    width: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
    height: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
}
.aside_container #ranking .label {
    margin-top: 4px;
    font-size: clamp(0.5rem, 0.458rem + 0.21vw, 0.625rem);
    line-height: clamp(1rem, 0.917rem + 0.42vw, 1.25rem);
}
/*------------------------------
	もっと見るリンク
------------------------------*/
.morelinkBox {
    margin: 8px auto;
    text-align: right;
}
.morelinkBox a {
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    color: #333;
}
/*------------------------------
	もっと見るボタン
------------------------------*/
.morebtnBox {
    margin: 0 auto;
    text-align: center;
}
.sectionTitle.bgcolor_blu + .morebtnBox {
    margin-top: 16px;
}
.morebtnBox a,
.morebtnBox p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    font-size: 16px;
    text-align: center;
    color: #4B6AB4;
    background-color: #fff;
    border: solid 1px #4B6AB4;
    border-radius: 4px;
    cursor: pointer;
}
/* 機種情報・実戦・連載TOPへ */
.morebtnBox.machinfo,
.morebtnBox.others {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.morebtnBox.machinfo {
    margin: 16px auto;
}
.morebtnBox.machinfo a,
.morebtnBox.others a {
    flex: 0 1 50%;
    padding: 16px 0;
    height: auto;
    color: #fff;
    background-color: #4B6AB4;
    border: none;
    border-radius: 8px;
}
.morebtnBox.others a {
    display: none;
    padding: 0;
    line-height: 42px;
}
.morebtnBox.machinfo a.slot {
    background-color: #f00;
}
.morebtnBox.machinfo a.pachi {
    background-color: #00f;
}
.morebtnBox.machinfo a > br {
    display: none;
}
/*------------------------------
	バナー／広告
------------------------------*/
.bannerBox,
.adbannerBox {
    margin: 24px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px 16px;
    text-align: center;
}
.sectionTitle + .bannerBox,
.sectionTitle + .adbannerBox {
    margin: 16px auto;
    gap: 16px;
}
.bannerBox a {
    display: inline-block;
    flex: 0 1 calc(50% - 8px);
}
.adbannerBox a {
    flex: 1 1 100%;
}
.bannerBox a.w100 {
    flex: 1 1 100%;
}
.bannerBox .bannerBox_text {
    margin: 0 auto;
    display: block;
    flex: 1 1 100%;
    text-align: center;
    font-size: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
    color: #9e9e9e;
}
.bannerBox a .bannerBox_text {
    margin-top: 4px;
    text-align: left;
}
/*------------------------------
	パピモレポートTOP
------------------------------*/
.sectionBox#papimo {
    margin-top: 0;
}
/*------------------------------
	アンケートTOP
------------------------------*/
/* 実施中 */
#survey_now {
    padding: 0 16px;
    background-color: #ff9;
}
#survey_now .sectionTitle {
    margin: 0 -16px;
}
#survey_now .linkBox li {
    border-bottom: none;
}
/*------------------------------
	ライター一覧
------------------------------*/
.writerBox {
    display: none;
}
.writerBox li {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.writerBox li:not(:last-child) {
    border-bottom: solid 1px #b4b4b4;
}
.writerBox figure {
    flex: 0 1 160px;
    height: auto;
    display: flex;
    align-items: center;
    background-image: url("../images/noimage.png");
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #eee;
    border-radius: 100vh;
    aspect-ratio: 1 / 1;
    position: relative;
}
.writerBox figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border: solid 4px #4B6AB4;
    border-radius: 100vh;
}
.writerBox_meta {
    margin-bottom: 48px;
    flex: 1 1 50%;
}
.writerBox_position {
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B6AB4;
}
.writerBox_name {
    font-size: clamp(1.125rem, 0.833rem + 1.46vw, 2rem);
    font-weight: 900;
}
.writerBox_more {
    width: calc(100% - 168px);
    position: absolute;
    right: 0;
    bottom: 16px;
}
.writerBox_more .label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 40px;
    background-color: #4B6AB4;
    border-radius: 4px;
}
/*------------------------------
	ライター詳細
------------------------------*/
.profileBox {
    margin: 16px auto !important;
}
.profileBox_detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.detail_inner {
    flex: 1 1 50%;
}
.detail_name {
    margin-bottom: 16px;
    padding-bottom: 8px;
    line-height: 1.2;
    border-bottom: solid 1px #b4b4b4;
}
.detail_link {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.detail_link .label {
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    line-height: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
    text-align: center;
    background-color: #4B6AB4;
    border-radius: 8px;
}
.detail_link .label.shuzai {
    background-color: #d955d9;
}
.profileBox figure {
    flex: 0 1 294px;
    height: auto;
    display: flex;
    align-items: center;
    background-image: url("../images/noimage.png");
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #eee;
    aspect-ratio: 1 / 1;
    position: relative;
}
.profileBox figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    border: solid 4px #4B6AB4;
}
.profileBox_accordion {
    margin-top: 16px;
    background-color: #1f2c5c;
    border: solid 2px #1f2c5c;
    border-radius: 8px;
}
.profileBox_accordion .accordion_header {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    line-height: clamp(1.5rem, 1.333rem + 0.83vw, 2rem);
    color: #fff;
    position: relative;
    cursor: pointer;
}
.profileBox_accordion .accordion_header::before {
    position: absolute;
    left: 16px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transition: all 0.3s ease-in-out;
    transform: rotate(135deg);
    margin: -4px 0 0;
}
.profileBox_accordion .accordion_header.open::before {
    transform: rotate(-45deg);
    margin: 0 0 -4px;
}
.profileBox_accordion .accordion_body {
    padding: 16px;
    display: none;
    line-height: 1.5;
    background-color: #dcdcdc;
    border-radius: 0 0 7px 7px;
}
/*------------------------------
	カテゴリ見出し
------------------------------*/
.category_headerBox {
    margin-bottom: 16px;
    padding-top: 16px;
    line-height: 1.2;
}
.category_lead {
    margin-top: 16px;
}
/*------------------------------
	記事見出し
------------------------------*/
.article_headerBox {
    margin-bottom: 16px;
    padding-top: 16px;
}
.article_category,
.article_tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.article_category {
    margin-bottom: 16px;
}
.article_tag {
    margin-top: 16px;
}
.article_tag .label {
    background-color: #4B6AB4;
    border-radius: 4px;
}
.article_title {
    font-size: clamp(1.5rem, 1.167rem + 1.67vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
}
.article_title > span {
    margin: 4px 0;
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.article_writer,
.article_date {
    margin-top: 16px;
    font-size: 16px;
    line-height: 16px;
}
.article_date svg {
    width: 16px;
    height: 16px;
}
/*------------------------------
	記事内容
------------------------------*/
.article_contentBox {
    margin: 32px 0;
    line-height: 1.8;
}
/* 記事サムネ */
.article_mainimage {
    margin: 32px auto;
}
.article_mainimage img {
    width: 100%;
}
/* 見出し */
.article_contentBox h1,
.article_contentBox h2,
.article_contentBox h3,
.article_contentBox h4,
.article_contentBox h5,
.article_contentBox h6,
.sectionSubTitle {
    margin: 32px 0;
    line-height: 1.4;
    font-weight: 900;
}
.article_contentBox h1 {
    font-size: clamp(1.5rem, 1.167rem + 1.67vw, 2.5rem);
}
.article_contentBox h2 {
    padding: 20px 16px;
    font-size: clamp(1.25rem, 1.167rem + 0.42vw, 1.5rem);
    background-color: #deebff;
    border-left: 6px solid #4B6AB4;
}
.article_contentBox h3 {
    padding: 16px 8px;
    font-size: clamp(1.188rem, 1.125rem + 0.31vw, 1.375rem);
    border-top: 4px solid #4B6AB4;
    border-bottom: 4px solid #4B6AB4;
}
.article_contentBox h4,
.article_contentBox h5 {
    font-size: clamp(1.125rem, 1.083rem + 0.21vw, 1.25rem);
}
.article_contentBox h4::before {
    margin: 0 0.2rem;
    display: inline-block;
    color: #4B6AB4;
    content: "▼";
    transform: scale(1.2);
}
.article_contentBox h6 {
    font-size: clamp(1rem, 0.958rem + 0.21vw, 1.125rem);
}
.sectionSubTitle {
    padding: 22px 16px;
    font-size: clamp(1.188rem, 1.125rem + 0.31vw, 1.375rem);
    background-color: #c9d2e8;
}
/* 段落 */
.article_contentBox p {
    margin: 32px 0;
}
/* 注釈 */
.annotationBox {
    margin: 4px 0 !important;
    font-size: 14px;
    line-height: 1.4;
    color: #808080;
}
.annotationBox.fixed {
    margin-top: 32px !important;
}
/* 太文字 */
.article_contentBox strong {
    font-weight: 900;
}
/* 罫線 */
.article_contentBox hr {
    margin: 32px auto;
    border-top: 1px solid #e4e4e4;
}
/* カコミ */
.article_contentBox blockquote {
    margin: 32px auto;
    padding: 1px 16px;
    background-color: #f0f0f0;
    border-radius: 10px;
}
.article_contentBox .kakomi {
    margin: 32px auto;
    padding: 32px 16px;
    border-radius: 10px;
}
.article_contentBox .kakomi.pink {
    background-color: #ffe5f5;
}
.article_contentBox .kakomi.blue {
    background-color: #d9f0ff;
}
.article_contentBox .kakomi.green {
    background-color: #d9f0d9;
}
.article_contentBox .kakomi.yellow {
    background-color: #ffffb2;
}
.article_contentBox .kakomi.gray {
    background-color: #e6e6e6;
}
/* 表テーブル */
.article_contentBox table {
    margin: 32px auto 0;
    width: 100%;
    border: solid 1px #b4b4b4;
}
.article_contentBox th,
.article_contentBox td {
    padding: 8px;
    vertical-align: middle;
    line-height: 1.4;
    border: solid 1px #b4b4b4;
}
/* 画像 */
.article_contentBox img + img,
.article_contentBox center + center img {
    margin-top: 32px !important;
}
.article_contentBox figure {
    margin-bottom: 32px !important;
}
.article_contentBox figcaption {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.4;
	text-align: center;
    color: #808080;
}
.article_contentBox figure img,
.article_contentBox p img {
	margin-right: auto;
	margin-left: auto;
}
/* 動画 */
.iframe-wrapper {
    margin: 32px auto 0;
	width: 100%;
    aspect-ratio: 16 / 9;
}
.iframe-wrapper_short {
    margin: 32px auto 0;
	width: 100%;
    max-width: 400px;
    aspect-ratio: 9 / 16;
}
.iframe-wrapper iframe,
.iframe-wrapper_short iframe {
	width: 100%;
	height: 100%;
}
/* 埋め込みリンク */
.embed-link {
    padding: 10px 16px 16px;
    line-height: 1.25;
    background-color: #c9c9c9;
}
.embed-link::before {
    content: "パチンコ・パチスロのことならパチマガスロマガモバイルサイト";
    margin-bottom: 8px;
    display: block;
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
}
.embed-link a {
    display: block;
    color: #333;
    background-color: #fff;
    border: solid 1px #b4b4b4;
}
.embed-link-inner {
    display: flex;
}
.embed-link-img {
    flex: 0 1 50%;
}
.embed-link-text {
    padding: 8px 16px;
    flex: 1 1 50%;
    font-weight: 400;
}
.embed-link-text > .title {
    margin-bottom: 8px;
    font-size: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
    font-weight: 900;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.embed-link-text > .desc {
    display: none;
}
.embed-link-text > .site {
    display: flex;
    align-items: center;
    font-size: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
    line-height: 1;
    color: #808080;
}
.embed-link-text > .site > .favicon {
    margin-right: 6px;
    width: clamp(0.75rem, 0.667rem + 0.42vw, 1rem);
}
.embed-link-text > .site > p {
    margin: 0;
}
div > .embed-link + br,
.embed-link + br {
    display: none;
}
div > .embed-link,
.embed-link {
    margin-top: 32px;
}
/* コピーライト */
.copyrightBox {
    margin: 32px auto;
    font-size: 12px;
    line-height: 1.25;
    color: #808080;
}
.copyrightBox p {
    margin: 16px 0;
}
.copyrightBox img {
    margin: 0 !important;
}
/*------------------------------
	記事内アコーディオン
------------------------------*/
/*.accordion {
    background-color: #3e58b8;
}*/
.accordion .acd-check {
    display: none;
}
.accordion .acd-label {
	margin-top: 24px;
    display: block;
    padding: 16px 32px 16px 16px;
	font-weight: 900;
    line-height: 1.5;
    color: #fff;
    background-color: #3e58b8;
    cursor: pointer;
	position: relative;
}
.accordion .acd-label.area {
    margin: 0;
    padding-left: 32px;
    background-color: #6579c6;
}
.accordion .acd-label.area:hover {
    background-color: #5b71c3;
}
.accordion .acd-label.pref {
    margin: 0;
    padding-left: 48px;
    background-color: #8b9bd4;
}
.accordion .acd-label.pref:hover {
    background-color: #8192d1;
}
.entry-body div:first-of-type .accordion .acd-label:first-of-type {
	margin-top: 0;
}
.accordion .acd-label::after {
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transition: all 0.3s ease-in-out;
    transform: rotate(135deg);
}
.accordion .acd-label.open::after {
    transform: rotate(-45deg);
}
.accordion ul {
	margin: 0;
	padding: 0;
	display: none;
}
.accordion li,
.accordion li + li {
	margin: 0 !important;
	padding: 0 !important;
}
.accordion .acd-links li {
    background-color: #f5f6fb;
    border-bottom: 1px solid #e0e0e0;
}
.accordion .acd-links li a,
.accordion .acd-links li span:not(.name):not(.maker) {
    padding: 16px;
    display: block;
    line-height: 1.2;
}
.accordion .acd-label.pref + .acd-links li a,
.accordion .acd-label.pref + .acd-links li span {
    padding: 16px 48px;
}
.accordion .acd-label.pref + .acd-links li a div,
.accordion .acd-label.pref + .acd-links li span div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.accordion .acd-label.pref + .acd-links li a div:nth-child(n + 2),
.accordion .acd-label.pref + .acd-links li span div:nth-child(n + 2) {
    margin-top: 3%;
}
.accordion .acd-label.pref + .acd-links li a div p,
.accordion .acd-label.pref + .acd-links li span div p {
    margin: 0;
    padding: 0 0 8px;
    width: 49%;
}
.accordion .acd-label.pref + .acd-links li a div .name,
.accordion .acd-label.pref + .acd-links li a div .address,
.accordion .acd-label.pref + .acd-links li span div .name,
.accordion .acd-label.pref + .acd-links li span div .address {
    width: 100%;
}
.accordion .acd-label.pref + .acd-links li span div .name {
    color: #999;
    font-weight: 900;
}
.accordion .acd-label.pref + .acd-links li a div .machinetotal,
.accordion .acd-label.pref + .acd-links li a div .introductory,
.accordion .acd-label.pref + .acd-links li span div .machinetotal,
.accordion .acd-label.pref + .acd-links li span div .introductory {
	padding: 10px 0;
	text-align: center;
    line-height: 1.0;
    color: #1f2c5c;
	background-color: rgba(31,44,92,0.2);
	border-radius: 5px;
}
.accordion .acd-label.pref + .acd-links li span div .machinetotal,
.accordion .acd-label.pref + .acd-links li span div .introductory {
    font-weight: 900;
}
.accordion .acd-label.pref + .acd-links li a div .introductory br,
.accordion .acd-label.pref + .acd-links li span div .introductory br {
    display: none;
}
.accordion .acd-links li a .maker,
.accordion .acd-links li a .address,
.accordion .acd-links li span .maker,
.accordion .acd-links li span .address {
    font-size: 12px;
    font-weight: normal;
    color: #808080;
}
.accordion .acd-links li span .maker,
.accordion .acd-links li span .address {
    font-weight: 900;
}
/*------------------------------
	記事編集ライター情報
------------------------------*/
.article_writerBox {
    margin-top: 32px;
}
.article_writerBox .sectionTitle {
    padding-bottom: 16px;
    font-weight: 900;
}
.article_writerBox li {
    padding: 16px 0;
    border-top: solid 1px #b4b4b4;
    position: relative;
}
.article_writerBox a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #333;
}
.article_writerBox figure {
    flex: 0 1 160px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/noimage.png");
    background-size: 100% auto;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-color: #eee;
    aspect-ratio: 1 / 1;
}
.article_writerBox figure img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    background-color: #fff;
}
.article_writerBox_meta {
    margin-bottom: 36px;
    flex: 1 1 50%;
}
.article_writerBox_position {
    margin-bottom: 4px;
    font-size: 12px;
}
.article_writerBox_name {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 900;
}
.article_writerBox_prof {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.article_writerBox_more {
    width: calc(100% - 168px);
    position: absolute;
    right: 0;
    bottom: 16px;
}
.article_writerBox_more .label {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 14px;
    line-height: 28px;
    background-color: #4B6AB4;
    border-radius: 4px;
}
.article_writerBox_more .label p {
    margin-left: 0.8em;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.article_writerBox_more .label::before {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 14px;
}
.article_writerBox_more .label::after {
    content: "関連記事";
}
/*------------------------------
	関連記事
------------------------------*/
#related {
    margin-top: 32px;
}
/*------------------------------
	ページャー（一覧用）
------------------------------*/
.pagerBox {
    display: none;
    margin: 16px;
    text-align: center;
}
.pagerBox ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.pagerBox li:not([class^="prev"]):not([class^="next"]) {
    border: solid 1px #4B6AB4;
    border-radius: 5px;
}
.pagerBox li a,
.pagerBox li p {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(1.875rem, 1.667rem + 1.04vw, 2.5rem);
    line-height: clamp(1.875rem, 1.667rem + 1.04vw, 2.5rem);
    font-size: clamp(0.875rem, 0.833rem + 0.21vw, 1rem);
    text-align: center;
    white-space: nowrap;
    border-radius: 4px;
}
.pagerBox li a {
    color: #4B6AB4;
    background-color: #fff;
    cursor: pointer;
}
.pagerBox li p {
    color: #fff;
    background-color: #4B6AB4;
    cursor: default;
}
.pagerBox li[class^="prev"] a,
.pagerBox li[class^="next"] a {
    width: auto;
    background-color: transparent;
}
.pagerBox li[class^="prev"] p,
.pagerBox li[class^="next"] p {
    width: auto;
    color: #9e9e9e;
    background-color: transparent;
    cursor: default;
}
.pagerBox li svg {
    width: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
    height: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
}
.pagerBox li a svg {
    fill: #4B6AB4;
}
.pagerBox li p svg {
    fill: #e0e0e0;
}
/*------------------------------
	ページャー（記事用）
------------------------------*/
.paginationBox {
    margin: 32px auto;
}
.paginationBox ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.paginationBox_prev,
.paginationBox_next {
    flex: 0 1 23%;
}
.paginationBox_other {
    flex: 1 1 40%;
}
.paginationBox_home {
    flex: 1 1 100%;
    margin-top: -8px;
}
.paginationBox li a,
.paginationBox li p {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    color: #4B6AB4;
    background-color: #fff;
    border: solid 1px #4B6AB4;
    border-radius: 4px;
    cursor: pointer;
}
.paginationBox li p {
    margin: 0;
    color: #9e9e9e;
    border-color: #9e9e9e;
    cursor: default;
}
.paginationBox li.paginationBox_home a {
    color: #fff;
    background-color: #1f2c5c;
}
/*------------------------------
	過去記事検索
------------------------------*/
.past_searchBox {
    margin-top: 32px;
    padding: 16px;
    background-color: #eee;
}
.past_searchBox .sectionTitle {
    margin-bottom: 16px;
}
.past_searchBox_inner {
    display: flex;
}
.past_searchBox_inner select,
.past_searchBox_inner button {
    margin-right: -1px;
    padding: 8px 24px 8px 16px;
    width: 100%;
    font-size: clamp(0.75rem, 0.708rem + 0.21vw, 0.875rem);
    white-space: nowrap;
    color: #fff;
    background-color: #333;
    border: solid 1px #666;
    cursor: pointer;
}
.past_searchBox_inner select {
    max-width: 88px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Ctitle%3Eframe%3C/title%3E%3Cg%3E%3Cpath fill='%23fff' d='M336.85,158.79H63.15L200,0L336.85,158.79z M200,400l136.85-158.79H63.15L200,400z' /%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: right 8px center;
}
.past_searchBox_inner button {
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 40px;
}
.past_searchBox_inner button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
/*------------------------------
	フッター
------------------------------*/
.footerBox {
    margin: 0 auto;
    padding: 32px 16px;
    text-align: center;
    color: #fff;
    background-color: #1f2c5c;
    position: relative;
}
.footerBox_sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.footerBox_logo {
    height: clamp(2.625rem, 2.333rem + 1.46vw, 3.5rem);
}
.footerBox_logo a,
.footerBox_logo img {
    display: inline-block;
    height: 100%;
}
.footerBox_logo a:hover {
    opacity: 1;
}
.footerBox_menu {
    margin: 32px auto 16px;
}
.footerBox_menu ul {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.footerBox_menu a {
    font-size: clamp(0.75rem, 0.708rem + 0.21vw, 0.875rem);
    white-space: nowrap;
    color: #fff;
}
.footerBox_copyright {
    font-size: clamp(0.625rem, 0.583rem + 0.21vw, 0.75rem);
}
/*------------------------------
	SNSリンク
------------------------------*/
.snslinkBox ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
.snslinkBox a {
    display: flex;
}
.snslinkBox svg {
    width: clamp(1.5rem, 1.333rem + 0.83vw, 2rem);
    height: clamp(1.5rem, 1.333rem + 0.83vw, 2rem);
    fill: #FFF;
}
/*------------------------------
	シェアボタン
------------------------------*/
.sharebtnBox {
    margin: 32px auto;
}
.sharebtnBox .sectionTitle {
    margin-bottom: 16px;
    padding: 16px;
    font-size: 16px;
    background-color: #c9c9c9;
    text-align: center;
}
.sharebtnBox ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.sharebtnBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100vh;
}
.sharebtnBox svg {
    width: 24px;
    height: 24px;
    fill: #FFF;
}
.sharebtnBox .twitter a {
    background-color: #000;
}
.sharebtnBox .facebook a {
    background-color: #1877f2;
}
.sharebtnBox .line a {
    background-color: #00b900;
}
.sharebtnBox .hatebu a {
    background-color: #00A4DE;
}
/*------------------------------
	ページTOPに戻る
------------------------------*/
.pagetop {
    display: none;
    position: fixed;
    bottom: 240px;
    left: 50%;
    width: 100%;
    max-width: 1410px;
    z-index: 99;
    transform: translate(-50%);
}
.pagetop a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #FFF;
    background-color: rgba(31,44,92,0.5);
    border-radius: 100vh;
    position: absolute;
    bottom: 0;
    right: 10px;
}
.pagetop svg {
    width: 28px;
    height: 28px;
    fill: #FFF;
}


/*****************************************************************************************************
　　　　　for タブレット
*****************************************************************************************************/
@media(max-width: 960px){
    /*------------------------------
        共通
    ------------------------------*/
    .PC {
        display: none !important;
    }
    .SP {
        display: block !important;
    }
    a:hover {
        opacity: 1;
    }
    * {
        cursor: auto;
    }
    /*------------------------------
        カコミ
    ------------------------------*/
    .container {
        max-width: 640px;
    }
    .container_inner {
        display: block;
    }
    .main_container {
        padding: 0;
        min-width: 100%;
        border: none;
    }
    .aside_container {
        margin-top: 16px;

        padding: 0;
        min-width: 100%;
    }
    .container_inner,
    .main_container,
    .aside_container {
        max-height: none !important;
    }
    /*------------------------------
        ヘッダー
    ------------------------------*/
    .headerBox_txt {
        margin: 0 -16px -12px;
        padding-right: 0;
        width: calc(100% + 32px);
        text-align: center;
        position: static;
    }
    .headerBox_logo {
        padding-right: 58px;
    }
    .headerBox_menu,
    .headerBox_search {
        flex-basis: 42px;
        height: 42px;
    }
    .headerBox_search {
        flex-basis: 100%;
        height: auto;
        margin: -12px -16px -4px;
    }
    .headerBox_logo,
    .headerBox_menu_btn,
    .headerBox_search_btn {
        height: 42px;
    }
    .headerBox_menu_btn:hover,
    .headerBox_search_btn:hover {
        opacity: 1;
    }
    .headerBox_menu_btn svg,
    .headerBox_search_btn svg.icon-close {
        width: 30px;
        height: 30px;
    }
    .headerBox_search_btn svg {
        width: 28px;
        height: 28px;
    }
    /* ハンバーガーメニュー */
    .headerBox_menu_list {
        padding: 68px 16px 0;
    }
    .headerBox_menu_list > ul {
        padding-bottom: 16px;
    }
    .headerBox_menu_list > ul > li:first-child {
        margin-bottom: 24px;
    }
    /* 検索オーバーレイ */
    .headerBox_search_overlay {
        padding: 68px 0 0;
    }
    .headerBox_search_overlay_inner {
        padding-bottom: 32px;
        max-width: 640px;
    }
    /* ヘッダー内検索バー */
    .headerBox_search .searchBox {
        width: calc(100% + 32px);
        background-color: #eee;
    }
    .headerBox_search .searchBox form {
        padding: 8px 16px;
        max-width: 640px;
        height: auto;
        position: static;
    }
    /*------------------------------
        目次
    ------------------------------*/
    .tocBox .tocBox_inner {
        margin: 0 auto;
        width: 320px;
        height: 100%;

        background-color: #fff;
        overflow-x: hidden;
        overflow-y: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        position: fixed;
        top: 0;
        left: -640px;
        transition: 1s;
        z-index: 9998;
        opacity: 0;
    }
    .tocBox.open .tocBox_inner {
        left: 0;
        transition: 0.5s;
        opacity: 1;
    }
    .tocBox .tocBox_inner::-webkit-scrollbar {
        display: none;
    }
    .tocBox_overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.4);
        z-index: 9997;
    }
    .tocBox.open .tocBox_inner + .tocBox_overlay {
        display: block;
    }
    /* ボタン */
    .tocBox_btn {
        display: block;
        position: fixed;
        bottom: 240px;
        right: 50%;
        width: 100%;
        max-width: 1410px;
        z-index: 99;
        transform: translate(50%);
    }
    .tocBox_btn.active {
        /*bottom: 32px;*/
        left: 240px;
        max-width: none;
        z-index: 9999;
        transform: translate(0);
    }
    .tocBox_btn p {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        color: #FFF;
        background-color: rgba(31,44,92,0.5);
        border-radius: 100vh;
        position: absolute;
        bottom: 0;
        left: 10px;
    }
    .tocBox_btn svg {
        width: 28px;
        height: 28px;
        fill: #FFF;
    }
    .tocBox_btn span {
        margin: 1px auto;
        font-size: 8px;
    }
    .tocBox_btn p.close,
    .tocBox_btn.active p.menu {
        display: none;
    }
    .tocBox_btn.active p.close {
        display: flex;
    }
    /*------------------------------
        タブ
    ------------------------------*/
    .tabBox p:hover {
        opacity: 1;
    }
    /*------------------------------
        リンク
    ------------------------------*/
    :not(.sliderBox) > .linkBox {
        margin: 0 16px;
    }
    .articleBox .linkBox {
        margin: 0;
    }
    .category_mainvisual {
        margin: -16px -16px 0;
    }
    /*------------------------------
        新着記事
    ------------------------------*/
    /* もっと見る */
    #newarrivals .morebtnBox {
        margin: 0 16px;
    }
    #newarrivals .morebtnBox p::after {
        width: 6px;
        height: 6px;
    }
    /*------------------------------
        全力特集機種
    ------------------------------*/
    .specialBox {
        margin: 16px;
    }
    .special_s .specialBox_left {
        flex-basis: 47%;
    }
    .special_p .specialBox_left {
        flex-basis: 49%;
    }
    .specialBox .linkBox {
        margin: 0;
    }
    .specialBox .morebtnBox {
        margin: 16px auto 0;
    }
    /*------------------------------
        アンケート
    ------------------------------*/
    .scrollBox_inner {
        padding-left: 0;
    }
    /*------------------------------
        実戦生VOICE
    ------------------------------*/
    #voice .linkBox li {
        margin: 16px 0;
    }
    /*------------------------------
        ランキング
    ------------------------------*/
    .main_container #ranking .sectionTitle {
        margin: 16px;
    }
    #ranking .tabBox  {
        margin: 0 16px;
    }
    #ranking .bannerBox,
    #ranking .adbannerBox {
        margin: 16px;
    }
    /*------------------------------
        もっと見るリンク
    ------------------------------*/
    .morelinkBox {
        margin: 8px 16px;
    }
    .articleBox .morelinkBox {
        margin: 8px auto;
    }
    /*------------------------------
        もっと見るボタン
    ------------------------------*/
    .morebtnBox {
        margin: 0 16px;
    }
    /* 機種情報・実戦・連載TOPへ */
    .morebtnBox.machinfo {
        margin: 16px;
    }
    /*------------------------------
        バナー／広告
    ------------------------------*/
    .bannerBox,
    .adbannerBox {
        margin: 24px 16px;
    }
    .sectionTitle + .bannerBox,
    .sectionTitle + .adbannerBox {
        margin: 16px;
    }
    /*------------------------------
        アンケートTOP
    ------------------------------*/
    /* 実施中 */
    #survey_now {
        padding: 0;
    }
    #survey_now .sectionTitle {
        margin: 0;
    }
    /*------------------------------
        ライター一覧
    ------------------------------*/
    .writerBox ul {
        margin: 0 16px;
    }
    /*------------------------------
        ライター詳細
    ------------------------------*/
    .profileBox {
        margin: 16px !important;
    }
    /*------------------------------
        カテゴリ見出し
    ------------------------------*/
    .category_headerBox {
        margin: 0 16px 16px;
    }
    /*------------------------------
        記事
    ------------------------------*/
    .articleBox {
        margin: 0 16px;
    }
    /*------------------------------
        記事編集ライター情報
    ------------------------------*/
    .article_writerBox_more .label::before {
        left: 10px;
    }
}


/*****************************************************************************************************
　　　　　for スマホ
*****************************************************************************************************/
@media(max-width: 600px){
    /*------------------------------
        共通
    ------------------------------*/
    /* 見出し */
    .sectionTitle.bgcolor_blu,
    .sectionTitle.bgcolor_orn {
        padding: 10px 16px;
    }
    /*------------------------------
        カコミ
    ------------------------------*/
    .container {
        max-width: 100%;
    }
    /*------------------------------
        ヘッダー
    ------------------------------*/
    /* ハンバーガーメニュー */
    .headerBox_menu_list {
        width: 80%;
        max-width: 320px;
    }
    .headerBox_menu_list a {
        padding: 4px 0;
    }
    .headerBox_menu_list a::after {
        width: 6px;
        height: 6px;
    }
    /* ハンバーガーメニュー内アコーディオン */
    .headerBox_menu_list_accordion .accordion_header {
        padding: 4px 0 4px 3px;
    }
    /* 検索オーバーレイ */
    .headerBox_search_overlay_inner {
        max-width: 100%;
    }
    .headerBox_search_overlay .sectionTitle {
        margin-bottom: 8px;
    }
    .headerBox_search_overlay_inner .searchBox,
    .headerBox_search_overlay_inner .trendwordBox {
        padding: 12px 16px;
    }
    /*------------------------------
        注目機種
    ------------------------------*/
    .trendwordBox_tag {
        gap: 6px;
        max-height: clamp(5.25rem, 4.393rem + 4.29vw, 6rem);
        overflow: hidden;
    }
    .trendwordBox_tag li:first-child {
        padding: 0 8px;
        font-size: clamp(1rem, 0.857rem + 0.71vw, 1.125rem);
        line-height: clamp(1.5rem, 1.214rem + 1.43vw, 1.75rem);
    }
    .trendwordBox_tag .label {
        font-size: clamp(0.75rem, 0.607rem + 0.71vw, 0.875rem);
        line-height: clamp(1.5rem, 1.214rem + 1.43vw, 1.75rem);
    }
    /*------------------------------
        パンくずリスト
    ------------------------------*/
    .breadcrumbBox {
        max-width: 100%;
    }
    .breadcrumbBox_list {
        padding-left: 8px;
        gap: 8px;
    }
    .breadcrumbBox_list::after {
        content: "";
        margin-left: -8px;
        min-width: 8px;
    }
    .breadcrumbBox_list li {
        font-size: 12px;
    }
    .breadcrumbBox_list li:not(:last-child)::after {
        margin-left: 4px;
    }
    /*------------------------------
        目次
    ------------------------------*/
    .tocBox .tocBox_inner {
        width: 80%;
        max-width: 320px;
    }
    /* ボタン */
    .tocBox_btn {
        bottom: 200px;
    }
    .tocBox_btn.active {
        left: calc(clamp(16rem, 80vw, 20rem) - 72px);
    }
    /* アンカーリスト */
    .tocBox_heading,
    .tocBox a {
        padding: 8px;
    }
    /*------------------------------
        タブ
    ------------------------------*/
    .tabBox ul {
        padding: 0 4px;
        gap: 4px;
    }
    /*------------------------------
        リンク
    ------------------------------*/
    .linkBox_title span {
        -webkit-line-clamp: 2;
    }
    .linkBox_date {
        font-size: 10px;
        line-height: 10px;
    }
    .linkBox_date svg {
        width: 10px;
        height: 10px;
    }
    .linkBox_category,
    .linkBox_tag {
        gap: 4px;
    }
    .linkBox_tag .label {
        margin-top: 4px;
        font-size: clamp(0.75rem, 0.607rem + 0.71vw, 0.875rem);
        line-height: clamp(1.5rem, 1.214rem + 1.43vw, 1.75rem);
    }
    /* 縦組み */
    .linkBox.L .linkBox_title span,
    .linkBox.category_list li:nth-of-type(1) .linkBox_title span{
        -webkit-line-clamp: 4;
    }
    .linkBox.M:not(.scrollBox_inner) li:nth-of-type(even) .linkBox_category {
        left: 20px;
    }
    /* 機種 */
    .linkBox li.slot,
    .linkBox li.pachi {
        margin: 8px auto;
    }
    .linkBox li.slot:first-child,
    .linkBox li.pachi:first-child {
        margin-top: 16px;
    }
    .linkBox li.slot a,
    .linkBox li.pachi a {
        font-size: 14px;
        border-width: 4px;
    }
    .linkBox li.slot .linkBox_meta,
    .linkBox li.pachi .linkBox_meta {
        margin-left: 4px;
    }
    .linkBox li.slot .linkBox_title::after,
    .linkBox li.pachi .linkBox_title::after {
        margin-left: 2px;
    }
    .linkBox li.slot .linkBox_item,
    .linkBox li.pachi .linkBox_item {
        margin-top: 4px;
    }
    /*------------------------------
        NEW MACHINE
    ------------------------------*/
    #newmachine .linkBox {
        gap: 0 4%;
    }
    #newmachine .sectionTitle {
        margin-bottom: 8px;
    }
    #newmachine .linkBox li.slot,
    #newmachine .linkBox li.pachi {
        flex-basis: 22%;
        margin: 8px 0 0;
    }
    #newmachine .linkBox li.slot .linkBox_title span,
    #newmachine .linkBox li.pachi .linkBox_title span {
        line-height: 1.1;
    }
    /*------------------------------
        全力特集機種
    ------------------------------*/
    .specialBox {
        padding: 8px;
        gap: 4px;
        border-width: 4px;
    }
    .specialBox .sectionTitle {
        margin-bottom: 4px;
    }
    .special_s .specialBox_left {
        flex-basis: 50%;
    }
    .special_p .specialBox_left {
        flex-basis: 52%;
    }
    .specialBox_right {
        margin-left: 4px;
    }
    .specialBox .specialBox_right .linkBox {
        gap: 8px;
    }
    .specialBox .linkBox_meta {
        margin-top: 4px;
    }
    .specialBox .morebtnBox {
        margin-top: 8px;
    }
    .specialBox .morebtnBox a {
        padding: 8px 0;
    }
    .specialBox .morebtnBox a > br {
        display: block;
    }
    /*------------------------------
        アンケート
    ------------------------------*/
    #survey .sectionTitle {
        margin: 0 16px 8px;
    }
    #survey .leadBox {
        margin: 8px auto;
    }
    /*------------------------------
        実戦生VOICE
    ------------------------------*/
    #voice .sectionTitle {
        padding: 12px 16px;
    }
    #voice .linkBox li {
        margin: 8px 0;
    }
    #voice .linkBox a {
        border-width: 4px;
        font-size: 14px;
    }
    /*------------------------------
        ランキング
    ------------------------------*/
    #ranking .linkBox li > a {
        border-width: 4px;
    }
    #ranking .linkBox_info {
        gap: 4px;
        width: calc(100% - 24px);
        bottom: 12px;
        left: 12px;
    }
    .linkBox_rank {
        top: 12px;
        left: 12px;
    }
    .linkBox_rank p {
        width: 28px;
        line-height: 28px;
    }
    /* サイドバーのみ適用 */
    .aside_container #ranking li.slot .linkBox_meta,
    .aside_container #ranking li.pachi .linkBox_meta {
        padding-left: 28px;
    }
    /*------------------------------
        もっと見るボタン
    ------------------------------*/
    .morebtnBox a,
    .morebtnBox p {
        height: 32px;
        font-size: 12px;
    }
    /* 機種情報・実戦・連載TOPへ */
    .morebtnBox.machinfo a {
        padding: 8px 0;
    }
    .morebtnBox.others a {
        line-height: 32px
    }
    .morebtnBox.machinfo a > br {
        display: block;
    }
    /*------------------------------
        ライター一覧
    ------------------------------*/
    .writerBox figure {
        flex: 0 1 88px;
    }
    .writerBox_meta {
        margin-bottom: 32px;
    }
    .writerBox_position {
        margin-bottom: 4px;
        font-size: 12px;
    }
    .writerBox_more {
        width: calc(100% - 96px);
    }
    .writerBox_more .label {
        font-size: 12px;
        line-height: 28px;
    }
    /*------------------------------
        ライター詳細
    ------------------------------*/
    .profileBox_detail {
        gap: 8px;
    }
    .detail_name {
        margin-bottom: 8px;
        padding-bottom: 4px;
    }
    .detail_link {
        gap: 8px;
    }
    .profileBox figure {
        flex: 0 1 47%;
    }
    .accordion_header::after {
        width: 6px;
        height: 6px;
    }
    .profileBox_accordion .accordion_body {
        padding: 8px;
        font-size: 14px;
    }
    /*------------------------------
        カテゴリ見出し
    ------------------------------*/
    .category_lead {
        margin-top: 8px;
        font-size: 14px;
    }
    /*------------------------------
        記事見出し
    ------------------------------*/
    .article_category,
    .article_tag {
        gap: 4px;
    }
    .article_category {
        margin-bottom: 8px;
    }
    .article_tag {
        margin-top: 8px;
    }
    .article_writer,
    .article_date {
        margin-top: 8px;
        font-size: 14px;
        line-height: 14px;
    }
    .article_date svg {
        width: 14px;
        height: 14px;
    }
    /*------------------------------
        記事内容
    ------------------------------*/
    .article_contentBox {
        margin: 24px 0;
    }
    /* 記事サムネ */
    .article_mainimage {
        margin: 24px auto;
    }
    /* 見出し */
    .article_contentBox h1,
    .article_contentBox h2,
    .article_contentBox h3,
    .article_contentBox h4,
    .article_contentBox h5,
    .article_contentBox h6,
    .sectionSubTitle {
        margin: 24px 0;
    }
    .article_contentBox h2,
    .sectionSubTitle {
        padding: 11px 8px;
    }
    .article_contentBox h3 {
        padding: 8px;
        border-top-width: 3px;
        border-bottom-width: 3px;
    }
    /* 段落 */
    .article_contentBox p {
        margin: 24px 0;
    }
    /* 注釈 */
    .annotationBox {
        font-size: 12px;
    }
    .annotationBox.fixed {
        margin-top: 24px !important;
    }
    /* 罫線 */
    .article_contentBox hr {
        margin: 24px auto;
    }
    /* カコミ */
    .article_contentBox blockquote {
        margin: 24px auto;
    }
    .article_contentBox .kakomi {
        margin: 24px auto;
        padding: 24px 16px;
    }
    /* 表テーブル */
    .article_contentBox table {
        margin: 24px auto 0;
    }
    .article_contentBox th,
    .article_contentBox td {
        padding: 4px;
    }
    /* 画像 */
    .article_contentBox img + img,
    .article_contentBox center + center img {
        margin-top: 24px !important;
    }
    .article_contentBox figure {
        margin-bottom: 24px !important;
    }
    .article_contentBox figcaption {
        font-size: 12px;
    }
    /* 動画 */
    .iframe-wrapper,
    .iframe-wrapper_short {
        margin: 24px auto 0;
    }
    /* 埋め込みリンク */
    .embed-link {
        padding: 6px 8px 8px;
    }
    .embed-link::before {
        margin-bottom: 4px;
    }
    .embed-link-img {
        flex: 0 1 40%;
    }
    .embed-link-text {
        padding: 4px 8px;
        flex: 1 1 60%;
    }
    .embed-link-text > .title {
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
    }
    div > .embed-link,
    .embed-link {
        margin-top: 24px;
    }
    /* コピーライト */
    .copyrightBox {
        margin: 24px auto;
    }
    .copyrightBox p {
        margin: 8px 0;
    }
    /*------------------------------
        記事内アコーディオン
    ------------------------------*/
    .accordion .acd-label {
        margin-top: 16px;
        padding: 12px 26px 12px 12px;
        font-size: 14px;
    }
    .accordion .acd-label.area {
        padding-left: 24px;
    }
    .accordion .acd-label.pref {
        padding-left: 36px;
    }
    .accordion .acd-label::after {
        right: 14px;
    }
    .accordion .acd-links li a,
    .accordion .acd-links li span:not(.name):not(.maker) {
        padding: 12px;
        font-size: 14px;
    }
    .accordion .acd-label.pref + .acd-links li a,
    .accordion .acd-label.pref + .acd-links li span {
        padding: 12px 36px;
    }
    .accordion .acd-label.pref + .acd-links li a div p,
    .accordion .acd-label.pref + .acd-links li span div p {
        padding: 0 0 4px;
    }
    .accordion .acd-label.pref + .acd-links li a div .machinetotal,
    .accordion .acd-label.pref + .acd-links li a div .introductory,
    .accordion .acd-label.pref + .acd-links li span div .machinetotal,
    .accordion .acd-label.pref + .acd-links li span div .introductory {
        padding: 6px 0;
    }
    .accordion .acd-label.pref + .acd-links li a div .machinetotal,
    .accordion .acd-label.pref + .acd-links li a div .introductory.introduced,
    .accordion .acd-label.pref + .acd-links li span div .machinetotal,
    .accordion .acd-label.pref + .acd-links li span div .introductory.introduced {
        line-height: 28px;
    }
    .accordion .acd-label.pref + .acd-links li a div .introductory br,
    .accordion .acd-label.pref + .acd-links li span div .introductory br {
        display: block;
    }
    .accordion .acd-links li a .maker,
    .accordion .acd-links li a .address,
    .accordion .acd-links li span .maker,
    .accordion .acd-links li span .address {
        font-size: 10px;
    }
    /*------------------------------
        記事編集ライター情報
    ------------------------------*/
    .article_writerBox {
        margin-top: 24px;
    }
    .article_writerBox figure {
        flex: 0 1 88px;
    }
    .article_writerBox_meta {
        margin-bottom: 28px;
    }
    .article_writerBox_position {
        margin-bottom: 2px;
        font-size: 10px;
    }
    .article_writerBox_name {
        margin-bottom: 2px;
        font-size: 16px;
    }
    .article_writerBox_prof {
        font-size: 12px;
        line-height: 1.25;
        -webkit-line-clamp: 2;
    }
    .article_writerBox_more {
        width: calc(100% - 96px);
    }
    .article_writerBox_more .label {
        font-size: 12px;
        line-height: 24px;
    }
    .article_writerBox_more .label::before {
        left: 6px;
    }
    /*------------------------------
        関連記事
    ------------------------------*/
    #related {
        margin-top: 24px;
    }
    /*------------------------------
        ページャー（一覧用）
    ------------------------------*/
    .pagerBox ul {
        gap: 8px;
    }
    /*------------------------------
        ページャー（記事用）
    ------------------------------*/
    .paginationBox {
        margin: 24px auto;
    }
    .paginationBox ul {
        gap: 12px;
    }
    .paginationBox_home {
        margin-top: 0;
    }
    .paginationBox li a,
    .paginationBox li p {
        height: 32px;
        font-size: 12px;
    }
    /*------------------------------
        フッター
    ------------------------------*/
    .footerBox {
        padding: 32px 8px 80px;
    }
    .footerBox_sns {
        display: block;
    }
    .footerBox_menu {
        margin: 24px auto;
    }
    .footerBox_menu ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    /*------------------------------
        SNSリンク
    ------------------------------*/
    .snslinkBox {
        margin: 16px auto;
    }
    .snslinkBox ul {
        justify-content: center;
    }
    /*------------------------------
        シェアボタン
    ------------------------------*/
    .sharebtnBox {
        margin: 24px auto;
    }
    .sharebtnBox .sectionTitle {
        padding: 8px;
    }
    .sharebtnBox a {
        width: 40px;
        height: 40px;
    }
    .sharebtnBox svg {
        width: 20px;
        height: 20px;
    }
    /*------------------------------
        ページTOPに戻る
    ------------------------------*/
    .pagetop {
        bottom: 165px;
    }

}