@charset "utf-8";

/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */
@media screen and (max-width: 768px) {


/* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

新規追加ページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */


/* ==================================================================================

common

================================================================================== */
#blog {
font-size: 14px;
}
#blog .inner,
#blog .inner_mini {
padding: 0 5%;
}

#blog .sec {
margin: 30px 0;
}

#blog a:hover {
text-decoration: none;
}

#blog .bg {
background: var(--bg-color);
}

#blog img {
/*width: 100%;*/
vertical-align: bottom;
object-fit: cover;
}


#blog .img_zoom .img {
    overflow: hidden;
}


/* ==================================================================================

【共通】タイトル

================================================================================== */


/* title_01
======================================== */
.title_01 {
text-align: center;
line-height: 1.3;
font-size: 1.2em;
position: relative;
background: no-repeat;
padding: 0;
}
.title_01:before {
content: "";
height: 1px;
width: 100%;
top: 76%;
left: 0;
background: var(--main-color);
position: absolute;
}
.title_01 .box {
background: #fff;
position: relative;
z-index: 1;
padding: 0 5px;
display: inline-block;
}
.title_01 .font_e {
color: var(--main-color);
font-size: 0.4em;
letter-spacing: 1px;
}

.bg .title_01 .box {
background: var(--bg-color);
}



/* ==================================================================================

【共通】ボタン

================================================================================== */
[class*="btn_"] {
position: relative;
height: fit-content;
display: inline-block;
}
[class*="btn_"] .btn:after {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
transform-origin: left top;
transform: scale(0, 1);
transition: transform 0.3s;
}
[class*="btn_"] .btn:hover:after {
transform-origin: right top;
transform: scale(1, 1);
}

[class*="btn_"] .btn {
padding: 15px 0;
    color: #7d7d7d;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
[class*="btn_"] .btn span {
position: relative;
z-index: 1;
}


/* btn_01
======================================== */
.btn_01 .btn {
background: #EBEAEA;
display: block;
text-align: center;
}
.btn_01 .btn:after {
background: #DBDADA;
}


/* arrow_reverse
======================================== */
.arrow_reverse .btn:before {
content: url(/img/column/bace/arrow_black_reverse.png);
width: 15px;
    line-height: 0;
    position: absolute;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.1s linear;
    z-index: 1;
}
.arrow_reverse .btn:hover:before {
left: 2.2%;
}



/* ==================================================================================

hover_line

================================================================================== */
#blog .hover_line {}
#blog .hover_line .hover_line_box:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border: 1px solid #fff;
z-index: 1;
border-radius: 10px;
transition: all 0.3s;
opacity: 0;
}
#blog .hover_line:hover .hover_line_box:before {
opacity: 0.3;
border: 5px solid #fff;
}
#blog .hover_line .hover_line_box {
position: relative;
display: block;
}


/* ==================================================================================



================================================================================== */
#blog {}



/* ==================================================================================



================================================================================== */
#blog {}



/* ==================================================================================

この記事を読んだ人はこんな記事も読んでます

================================================================================== */
#blog .blog_list_area {}
#blog .blog_list_area .slick-slide {
margin: 0 20px;
}
#blog .blog_list_area .img {
border-radius: 10px;
}
#blog .blog_list_area .title {
margin: 10px 0;
}


#blog .blog_list_area .slick-arrow {
border: 1px solid var(--main-color);
}
#blog .blog_list_area .slick-slider {
padding: 15px 0;
overflow: hidden;
}
#blog .blog_list_area .slick-list {
margin: 0 -19px 0 -20px;
}

#blog .blog_list_area .btn_01 {
display: block;
margin: 20px 0 0 0;
}



/* ==================================================================================

ブログ記事

================================================================================== */

/* common
======================================== */
#blog .blog_area p {
line-height: 2;
margin: 20px 0;
}

#blog .blog_area h2 + h3 {
margin-top: 0;
}

#blog .blog_area img {
margin: 5px 0;
}


/* h2
======================================== */
#blog .blog_area h2 {
border-left: 3px solid var(--main-color);
    background: var(--main-color-3);
    padding: 5px 10px;
    margin: 30px 0 20px;
    border-radius: 0 10px 10px 0;
    font-size: 1.2em;
}


/* h3
======================================== */
#blog .blog_area h3 {
position: relative;
    padding: 15px 0;
    margin: 30px 0 20px;
    font-size: 1.1em;
}
#blog .blog_area h3:before,
#blog .blog_area h3:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 3px;
background: var(--main-color-3);
}
#blog .blog_area h3:before {
width: 20%;
background: var(--main-color);
z-index: 1;
}
#blog .blog_area h3:after {
}
#blog .blog_area h4 {
        font-size: 1.1em;
        /* border-bottom: 1px solid #A3A3A3; */
        padding: 0.2em 0.5em;
        border-left: solid 5px #87b1de;
}

/* fl
======================================== */
#blog .blog_area .fl {
}
#blog .blog_area .fl img {
margin: 10px 0;
border-radius: 10px;
}
#blog .blog_area .fl p {
}


/* ブログタイトル
======================================== */
#blog .blog_header {
margin: 30px 0;
}
#blog .blog_header .top {
}
#blog .blog_header .top .category_list {
position: relative;
    padding: 0 0 0 15px;
    width: 100%;
    margin: 10px 0 20px;
}
#blog .blog_header .img {
border-radius: 10px;
overflow: hidden;
margin: 20px 0;
}
#blog .blog_header .img img {}
#blog .blog_header p {
line-height: 2;
}


/* もくじ
======================================== */
#blog .tab_area {}
#blog .tab_area .inner_mini {
    background: var(--hover);
    padding: 20px 5%;
    border-radius: 10px;
    box-sizing: border-box;
    margin: 0 5%;
}
#blog .tab_area .title {
color: var(--main-color);
background-color: aliceblue;
position: relative;
display: inline-block;
line-height: 1;
margin: 0 0 30px 0;
font-size: 1.3em;
}
#blog .tab_area .title:before {
content: "";
background: var(--main-color);
position: absolute;
width: 100%;
height: 1px;
left: 0;
bottom: -12px;
}
#blog .tab_area a {
display: inline-block;
transition: all 0.3s linear;
width: 90%;
}
#blog .tab_area a:hover {
color: var(--main-color);
}
#blog .tab_area li {
border-bottom: 1px dashed var(--main-color-3);
display: flex;
padding: 10px 0;
}
#blog .tab_area span {
color: var(--main-color);
font-size: 1.5em;
margin: 0 20px 0 0;
width: 15%;
}


/* まとめ
======================================== */
#blog .summary_area {
border: 1px solid var(--boder-color);
padding: 15px 5% 0;
    margin: 30px 0;
    border-radius: 10px;
    text-align: center;
}
#blog .summary_area .title {
position: relative;
    font-size: 1.4em;
}
#blog .summary_area .title:before {
content: "";
    width: 80%;
    height: 1px;
    background: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
#blog .summary_area p {
text-align: left;
}


/* SNS
======================================== */
#blog .sns_area {}

#blog .sns_area ul {
display: flex;
justify-content: center;
border-top: 1px solid var(--boder-color);
border-bottom: 1px solid var(--boder-color);
}
#blog .sns_area li {
width: 100%;
text-align: center;
position: relative;
}
#blog .sns_area li:first-child:after,
#blog .sns_area li:before {
content: "";
width: 1px;
height: 40%;
position: absolute;
top: 50%;
background: var(--boder-color);
transform: translateY(-50%);
}

#blog .sns_area li:before {
right: 0;
}
#blog .sns_area li:first-child:after {
left: 0;
}
#blog .sns_area a {
display: block;
transition: all 300ms cubic-bezier(0.215,0.610,0.355,1.000);
padding: 20px 0;
}
#blog .sns_area li a:hover {
background: var(--hover);
}
#blog .sns_area img {
width: 23px;
}



/* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

トップページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */


/* ==================================================================================

bottom_text_area

================================================================================== */
#blog .bottom_text_area {
padding: 20px 0;
}

#blog .bottom_text_area .title {
text-align: center;
    margin: 0 0 30px 0;
    font-size: 1.2em;
    line-height: 1.3;
    position: relative;
    padding: 0;
    background: none;
}
#blog .bottom_text_area .title span {
}
#blog .bottom_text_area .title span:before {
content: "";
background: var(--main-color);
width: 20%;
height: 2px;
position: absolute;
left: 50%;
bottom: -15px;
transform: translateX(-50%);
}

#blog .bottom_text_area .text {
background: #fff;
    display: block;
    padding: 20px 5%;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    box-sizing: border-box;
}
#blog .bottom_text_area p {
line-height: 1.8;
}

/* path
======================================== */
#blog .bottom_text_area .path {
font-size: 0.8em;
    background: #CBDCF0;
    padding: 10px 0;
    margin: 20px 0 0 0;
}
#blog .bottom_text_area .path li {
display: inline-block;
}
#blog .bottom_text_area .path li + li {
margin: 5px 0 5px 5px;
}
#blog .bottom_text_area .path li + li:before {
content: "/";
color: #87B1DE;
margin: 0 5px 0 0;
}
#blog .bottom_text_area .path a {
transition: all 0.3s linear;
}
#blog .bottom_text_area .path a:hover {
color: var(--main-color);
}



/* ==================================================================================

keyword_area

================================================================================== */
#blog .keyword_area {}

#blog .keyword_area .icon_kyeword:before {
content: "";
background: url(/img/column/bace/icon_keyword.png) no-repeat scroll left center / cover;
width: 20px;
height: 20px;
}

#blog .keyword_area ul {
display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin: 30px 0;
}
#blog .keyword_area a {
border: 1px solid var(--main-color-3);
display: block;
text-align: center;
padding: 10px 0;
border-radius: 5px;
position: relative;
transition: 0.5s;
overflow: hidden;
}
#blog .keyword_area a:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: var(--main-color-3);
transform-origin: right top;
transform: scale(1, 0);
transition: transform 0.3s;
}
#blog .keyword_area a:hover:before {
transform-origin: left bottom;
transform: scale(1, 1);
}
#blog .keyword_area a span {
position: relative;
z-index: 1;
}



/* ==================================================================================

.banner_area

================================================================================== */
#blog .banner_area {
padding: 20px 0;
}
#blog .banner_area .slick-slide {
margin: 0 10px;
}
#blog .banner_area .img {
border-radius: 10px;
overflow: hidden;
}

#blog .banner_area .slick-arrow {
background: none;
top: 50%;
transform: translateY(-50%);
}
#blog .banner_area .slick-prev {
left: -25px;
}
#blog .banner_area .slick-prev:before {
left: 18px;
}
#blog .banner_area .slick-next {
left: auto;
right: 0px;
}
#blog .banner_area .slick-next:before {
left: 18px;
}


/* ==================================================================================

recommend_area

================================================================================== */
#blog .recommend_area {}

#blog .recommend_area ul {
margin: 30px 0;
}
#blog .recommend_area li {
margin: 0 0 30px 0;
}
#blog .recommend_area li .box {
padding: 15px 5%;
}
#blog .recommend_area a {
border: 1px solid var(--boder-color);
display: inline-block;
border-radius: 10px;
}

#blog .recommend_area li .img {
border-radius: 10px;
}

#blog .recommend_area .title {
text-align: center;
font-size: 1.2em;
margin: 20px 0 15px;
transition: all 0.3s linear;
}
#blog .recommend_area .title:hover {
color: var(--main-color);
}
#blog .recommend_area p {
line-height: 1.8;
}
#blog .recommend_area .arrow {
border-top: 1px solid var(--boder-color);
display: block;
text-align: center;
padding: 15px 0;
transition: all 800ms cubic-bezier(0.215,0.610,0.355,1.000);
position: relative;
}
#blog .recommend_area .arrow:before {
content: "";
background: url(/img/column/bace/arrow_black.png) no-repeat scroll left center / cover;
width: 25px;
height: 20px;
line-height: 0;
position: absolute;
right: 5%;
top: 50%;
transform: translateY(-50%);
transition: all 0.1s linear;
}
#blog .recommend_area .arrow:hover:before {
right: 4.5%;
}
#blog .recommend_area .arrow:hover {
background: var(--hover);
}



/* ==================================================================================

ranking_area

================================================================================== */
#blog .ranking_area {
margin: 30px 0;
}

#blog .ranking_area ul {
margin: 30px 0;
margin-left: 3%;
}
#blog .ranking_area li {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    padding: 5px;
}

#blog .ranking_area li a {
padding: 20px 0;
display: inline-block;
position: relative;
transition: all 800ms cubic-bezier(0.215,0.610,0.355,1.000);
}
#blog .ranking_area li a:hover {
background: var(--hover);
}
#blog .ranking_area li:last-child a {
border-bottom: none;
}

#blog .ranking_area .img {
border-radius: 10px;
overflow: hidden;
text-align: center;
}
#blog .ranking_area .img img {
width: 100%;
    height: 100%;
}

#blog .ranking_area li .font_e {
position: absolute;
    left: 20px;
    top: 30px;
    font-weight: bold;
    font-size: 1.9em;
    color: var(--main-color-2);
    padding: 0 0 3px 0;
}
#blog .ranking_area li .font_e:before {
content: "";
width: 100%;
height: 2px;
background: var(--main-color-2);
position: absolute;
bottom: 0;
left: 0;
}

#blog .ranking_area li:nth-child(1) .font_e {
color: #F5C055;
font-size: 1.9em;
}
#blog .ranking_area li:nth-child(1) .font_e:before {
background: #F5C055;
}

#blog .ranking_area li:nth-child(2) .font_e {
color: #ABABAB;
font-size: 1.9em;
}
#blog .ranking_area li:nth-child(2) .font_e:before {
background: #ABABAB;
}

#blog .ranking_area li:nth-child(3) .font_e {
color: #CBB89F;
font-size: 1.9em;
}
#blog .ranking_area li:nth-child(3) .font_e:before {
background: #CBB89F;
}

#blog .ranking_area p {
font-size: 0.9em;
margin: 15px 0 5px 0;
transition: all 0.3s linear;
}
#blog .ranking_area p:hover {
color: var(--main-color);
}

#blog .ranking_area .price_box {
font-size: 1.2em;
text-align: right;
display: block;
}
#blog .ranking_area .price_box span {
font-size: 0.7em;
margin: 0 0 0 3px;
}



/* ==================================================================================

special_area

================================================================================== */
#blog .special_area {
padding: 20px 0 5px 0;
}
#blog .special_area li {
position: relative;
margin: 20px 0;
}
#blog .special_area .img {
border-radius: 10px 10px 0 0;
    overflow: hidden;
}
#blog .special_area .img img {
height: 20vh;
width: 100%;
}

#blog .special_area .title_set {
border-radius: 0 0 10px 10px;
padding: 10px 5% 15px;
}

#blog .special_area .title_set .day {
margin: 0 0 10px 0;
    display: block;
}
#blog .special_area .title_set .title {
margin: 15px 0 30px;
display: block;
}
#blog .special_area .title_set p {
line-height: 1.8;
}



/* ==================================================================================

new_area

================================================================================== */
.block-top-pickup--main .pickup--article {
    margin-top: 30px;

}

#blog .new_area {}
#blog .new_area ul {
margin: 20px 0;
}
#blog .new_area li {
margin: 0 0 20px 0;
padding: 0 0 15px 0;
border-bottom: 1px solid var(--boder-color);
display: flex;
}
#blog .new_area li:last-child {
border-bottom: none;
}
#blog .new_area .img {
border-radius: 10px;
width: 45%;
}
#blog .new_area .text {
    width: 90%;
    margin-left: 3%;
}
#blog .new_area_popular {
    display: inline-block;
}
#blog .new_area_popular ul {
margin: 20px 0;
}
#blog .new_area_popular li {
margin: 0 0 20px 0;
padding: 0 0 15px 0;
border-bottom: 1px solid var(--boder-color);
}
#blog .new_area_popular li:last-child {
border-bottom: none;
}
#blog .new_area .img {
border-radius: 10px;
width: 45%;
}
#blog .new_area_popular .text {
    width: 90%;
    margin-left: 3%;
}
#blog .category_list {
position: relative;
padding: 0 0 0 15px;
width: 50%;
margin: -3px 0 0 0;
}
#blog .category_list:before {
content: "";
background: url(/img/column/bace/icon_category_black.png) no-repeat scroll left center / cover;
width: 14px;
height: 14px;
position: absolute;
left: 0;
top: 6px;
line-height: 0;
}
#blog .category_list a {
display: inline-block;
margin: 0 5px;
font-size: 0.9em;
transition: all 0.5s;
}
#blog .category_list span {
display: inline-block;
margin: 0 5px;
font-size: 0.9em;
transition: all 0.5s;
}


#blog li .text .title {
margin: 15px 0;
transition: all 0.5s;
}
#blog li .text .title:hover,
#blog .category_list a:hover {
color: var(--main-color);
}
#blog li .text .bottom {
display: flex;
gap: 25px;
}



/* ==================================================================================

category_area

================================================================================== */
#blog .category_area {}

/* icon
======================================== */
#blog [class*="icon_"] {
position: relative;
padding: 0 0 0 25px;
}
#blog [class*="icon_"]:before {
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
display: inline-block;
line-height: 0;
}

#blog .category_area .icon_category:before {
content: "";
background: url(/img/column/bace/icon_category.png) no-repeat scroll left center / cover;
width: 20px;
height: 20px;
}

#blog .category_area ul {
display: flex;
flex-wrap: wrap;
gap: 5px 2%;
margin: 20px 0;
}
#blog .category_area li {
width: 49%;
}
#blog .category_area a {
background: var(--main-color);
color: #fff;
display: block;
text-align: center;
padding: 10px 0;
border-radius: 5px;
position: relative;
transition: 0.5s;
overflow: hidden;
font-size: 0.8em;
}
#blog .category_area a:before {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: #74A0D5;
transform-origin: right top;
transform: scale(1, 0);
transition: transform 0.3s;
}
#blog .category_area a:hover:before {
transform-origin: left bottom;
transform: scale(1, 1);
}
#blog .category_area a span {
position: relative;
z-index: 1;
}



/* ==================================================================================

mv

================================================================================== */
#blog .mv {
margin: 30px 0 50px;
position: relative;
}
#blog .mv .slider_mv {
padding: 0 0 55px 0;
}

#blog .mv:before {
    content: "";
    background: var(--main-color-3);
    width: 100%;
    height: 70%;
    position: absolute;
    left: 0;
    bottom: -20px;
}

#blog .mv .img {
}
#blog .mv img {
width: 100%;
    height: 30vh;
    vertical-align: bottom;
    object-fit: cover;
}

#blog .mv button {
left: 10%;
}
#blog .mv button.slick-next {
transform: translateX(60px);
}
#blog .mv .slick-dots {
right: 10%;
}

#blog .mv li {
position: relative;
}
#blog .mv li a {
display: block;
    margin: 0 5% 0 0;
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}




/* title_set
======================================== */
#blog .title_set {
    background: #fff;
    padding: 10px 15px 35px 5%;
    width: 100%;
    box-sizing: border-box;
}
#blog .title_set .title {
margin: 5px 0 0 0;
padding: 0;
font-size: 1.1em;
position: relative;
transition: all 500ms cubic-bezier(0.215,0.610,0.355,1.000);
background: none;
}
#blog .title_set .title:hover {
color: var(--main-color);
}
#blog .title_set .title:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
display: inline-block;
background: var(--main-color);
transform-origin: left top;
transform: scale(0.2, 1);
transition: transform 0.8s;
bottom: -15px;
}
#blog .title_set .title:hover:before {
transform-origin: left top;
transform: scale(1, 1);
}


/* day
======================================== */
#blog .day {
color: #A3A1A1;
font-size: 0.9em;
position: relative;
padding: 0 0 0 16px;
}
#blog .day:before {
content: "";
background: url(/img/column/bace/clock.png) no-repeat scroll left center / cover;
width: 10px;
height: 10px;
position: absolute;
left: 0;
top: 5px;
}



/* ==================================================================================

【下層ページ　共通】split

================================================================================== */
.split_02 {
display: flex;
gap: 50px;
}
.split_02 .box {
width: 100%;
}
.split_02 li {
border-top: none;
}
.split_02 li:first-child,
.teacher_data .data_box dl dt:first-child,
.teacher_data .data_box dl dd:nth-child(2) {
border-top: 1px solid var(--boder-color) !important;
}



/* ==================================================================================

【下層ページ　共通】fl_area

================================================================================== */
.fl_area {}
.fl_area .fl_box {
margin: 0 0 100px 0;
}
.fl_area .fl_img {
display: flex;
gap:80px;
}
.fl_area .fl_box:nth-child(odd) .fl_img {
flex-direction:row-reverse;
}
.fl_area .fl_box:nth-child(even) .fl_img {}
.fl_area .img {
width: 50%;
}
.fl_area .text {
width: 50%;
}

.fl_box .btn_blue {
width: 50%;
margin: 40px 0 0 0;
}
.fl_box .btn_blue a {
padding: 15px 0;
}

/* youtube */
#blog .movie {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 30px;
  }
  #blog .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/* ==================================================================================

ページネーション

================================================================================== */
.column-pagination {
  text-align: center;
  padding: 0 5%;
}
.column-pagination-inner {
  position: relative;
  display: inline-block;
  padding: 0 35px;
}
.column-pagination .pager-prev,
.column-pagination .pager-next {
  position: absolute;
  top: 0;
  left: 0;
  text-indent: -9999px;
  white-space: nowrap;
  overflow: hidden;
  width: 30px;
  height: 30px;
}
.column-pagination .pager-next {
  left: auto;
  right: 0;
}
.column-pagination .pager-prev:before,
.column-pagination .pager-prev:after,
.column-pagination .pager-next:before,
.column-pagination .pager-next:after {
  content: '';
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-right: 1px solid #484343;
  border-bottom: 1px solid #484343;
  transform: rotate(135deg);
}
.column-pagination .pager-prev:after {
  left: 15px;
}
.column-pagination .pager-next:before,
.column-pagination .pager-next:after {
  transform: rotate(-45deg);
}
.column-pagination .pager-next:before {
  left: 5px;
}
.column-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.column-pagination li {
  position: relative;
  font-size: 16px;
  width: 30px;
  border: 1px solid #D8D8D8;
  text-align: center;
  margin: 0 5px;
  padding: 2px 0 4px;
}
.column-pagination li.current {
  border: 0;
  background: #87b1de;
  color: #fff;
}
.column-pagination li:not(:first-child):not(:last-child):not(.current):not(.prev):not(.next) {
  display: none;
}
.column-pagination li.prev:not(:first-child):not(:nth-child(2)) {
  margin-left: 35px;
}
.column-pagination li.next:not(:last-child):not(:nth-last-child(-n+2)) {
  margin-right: 35px;
}
.column-pagination li.prev:not(:first-child):not(:nth-child(2)):after,
.column-pagination li.next:not(:last-child):not(:nth-last-child(-n+2)):after {
  content: '...';
  position: absolute;
  top: -2px;
  left: -37px;
  width: 30px;
  height: 30px;
  text-align: center;
}
.column-pagination li.next:not(:last-child):not(:nth-last-child(-n+2)):after {
  left: auto;
  right: -37px;
}
#blog .new_area li:not([data-pager-num="1"]) {
  display: none;
}
.column-pagination .pager-prev {
  display: none;
}
.kakoi{
    border: 1px solid;
    padding: 2px;
    font-size: 14px;
    margin-left: 1%;
    width: fit-content;
}
}
/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */