@charset "utf-8";

/* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

【PC】ウィンドウ幅が769px以上の場合に適用するCSS

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */
@media print, screen and ( min-width:769px ) {



/* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

新規追加ページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */


/* ==================================================================================

既存CSS削除

================================================================================== */
body .pane-contents .container {
display: block;
width: 100%;
}




/* ==================================================================================

common

================================================================================== */
#blog .inner {
min-width: 1000px;
max-width: 1200px;
margin: 0 auto;
width: calc(100% - 50px);
}
#blog .inner_mini {
min-width: 800px;
max-width: 900px;
margin: 0 auto;
width: calc(100% - 50px);
}

#blog .sec {
margin: 100px 0;
}

#blog a:hover {
text-decoration: none;
}

#blog .bg {
background: var(--bg-color);
}

#blog img {
vertical-align: bottom;
object-fit: cover;
}



/* ==================================================================================

【共通】タイトル

================================================================================== */


/* title_01
======================================== */
.title_01 {
text-align: center;
line-height: 1.3;
position: relative;
}
.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 20px;
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: 20px 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: 20px;
    line-height: 0;
    position: absolute;
    left: 2.5%;
    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: 50px 0;
overflow: hidden;
}
#blog .blog_list_area .slick-list {
margin: 0 -19px 0 -20px;
}

#blog .blog_list_area .btn_01 {
display: block;
margin: 40px 0 0 0;
}



/* ==================================================================================

ブログ記事

================================================================================== */

/* common
======================================== */
#blog .blog_area p {
line-height: 2.2;
margin: 30px 0;
}

#blog .blog_area h2 + h3 {
margin-top: 0;
}

#blog .blog_area img {
margin: 20px 0;
}


/* h2
======================================== */
#blog .blog_area h2 {
border-left: 3px solid var(--main-color);
background: var(--main-color-3);
padding: 10px 20px;
margin: 50px 0 30px;
border-radius: 0 10px 10px 0;
font-size: 1.4em;
}


/* h3
======================================== */
#blog .blog_area h3 {
position: relative;
padding: 15px 0;
margin: 50px 0 30px;
font-size: 1.2em;
}
#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 {
}

/* h4
======================================== */
#blog .blog_area h4 {
        /* position: relative; */
        /* padding: 15px 0; */
        /* margin: 50px 0 30px; */
        font-size: 1.1em;
        /* border-bottom: 1px solid #A3A3A3; */
        padding: 0.2em 0.5em;
        border-left: solid 5px #87b1de;
    }


/* fl
======================================== */
#blog .blog_area .fl {
display: flex;
    gap: 50px;
}
#blog .blog_area .fl img {
width: 50%;
    height: 320px;
    margin: 10px 0;
	 border-radius: 10px;
}
#blog .blog_area .fl p {
width: 50%;
margin: 0 0 30px 0;
}


/* ブログタイトル
======================================== */
#blog .blog_header {
margin: 50px 0;
}
#blog .blog_header .top {
display: flex;
    gap: 30px;
}
#blog .blog_header .img {
border-radius: 10px;
overflow: hidden;
margin: 50px 0;
}
#blog .blog_header .img img {}
#blog .blog_header p {
line-height: 2.2;
}


/* もくじ
======================================== */
#blog .tab_area {}
#blog .tab_area .inner_mini {
background: var(--hover);
padding: 50px 70px;
border-radius: 10px;
}
#blog .tab_area .title {
color: var(--main-color);
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 {
padding: 15px 0;
display: inline-block;
transition: all 0.3s linear;
}
#blog .tab_area a:hover {
color: var(--main-color);
}
#blog .tab_area li {
border-bottom: 1px dashed var(--main-color-3);
}
#blog .tab_area span {
color: var(--main-color);
font-size: 1.5em;
    margin: 0 20px 0 0;
}


/* まとめ
======================================== */
#blog .summary_area {
border: 1px solid var(--boder-color);
padding: 40px 60px 20px;
    margin: 70px 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: 30px 0;
}
#blog .sns_area li a:hover {
background: var(--hover);
}
#blog .sns_area img {
width: 23px;
}



/* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

トップページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */


/* ==================================================================================

bottom_text_area

================================================================================== */
#blog .bottom_text_area {
padding: 50px 0;
}

#blog .bottom_text_area .title {
text-align: center;
margin: -10px 0 40px 0;
font-size: 1.6em;
}
#blog .bottom_text_area .title span {
position: relative;
}
#blog .bottom_text_area .title span:before {
content: "";
background: var(--main-color);
width: 30%;
height: 2px;
position: absolute;
left: 50%;
bottom: -17px;
transform: translateX(-50%);
}

#blog .bottom_text_area .text {
background: #fff;
display: block;
padding: 60px;
width: 60%;
margin: 0 auto;
border-radius: 10px;
}
#blog .bottom_text_area p {
line-height: 1.8;
}

/* path
======================================== */
#blog .bottom_text_area .path {
font-size: 0.8em;
background: #CBDCF0;
padding: 25px 0;
margin: 50px 0 0 0;
}
#blog .bottom_text_area .path li {
display: inline-block;
}
#blog .bottom_text_area .path li + li {
margin-left: 15px;
}
#blog .bottom_text_area .path li + li:before {
content: "/";
color: #87B1DE;
margin: 0 15px 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 center center / cover;
width: 25px;
height: 25px;
}

#blog .keyword_area ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-gap:20px;
margin: 50px 0;
}
#blog .keyword_area a {
border: 1px solid var(--main-color-3);
display: block;
text-align: center;
padding: 15px 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: 50px 0;
}
#blog .banner_area .slick-slide {
margin: 0 10px;
}
#blog .banner_area .img {
border-radius: 10px;
overflow: hidden;
}
#blog .banner_area .img img {
    width: 100%;
    height: 190px;
}

#blog .banner_area .slick-arrow {
background: none;
top: 50%;
transform: translateY(-50%);
}
#blog .banner_area .slick-prev {
left: -40px;
}
#blog .banner_area .slick-next {
left: auto;
right: -40px;
}



/* ==================================================================================

recommend_area

================================================================================== */
#blog .recommend_area {}

#blog .recommend_area ul {
display: flex;
gap:50px;
margin: 50px 0;
}
#blog .recommend_area li {
border: 1px solid var(--boder-color);
display: inline-block;
border-radius: 10px;
width: 50%;
position: relative;
}
#blog .recommend_area li .box {
padding: 40px;
}
#blog .recommend_area a {
    padding: 0 0 50px 0;
    display: block;
}

#blog .recommend_area li .img {
border-radius: 10px;
}
#blog .recommend_area li .img img {
height: 320px;
    width: 100%;
}

#blog .recommend_area .title {
text-align: center;
font-size: 1.3em;
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: 20px 0;
transition: all 800ms cubic-bezier(0.215,0.610,0.355,1.000);
    position: absolute;
    bottom: 0;
    width: 100%;
}
#blog .recommend_area .arrow:before {
content: "";
background: url(/img/column/bace/arrow_black.png) no-repeat scroll center center / cover;
width: 30px;
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: 100px 0;
}

#blog .ranking_area ul {
display: flex;
margin: 50px 0;
}
#blog .ranking_area li a {
border-right: 1px solid var(--boder-color);
padding: 60px 25px 15px 25px;
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:first-child a {
border-left: 1px solid var(--boder-color);
}

#blog .ranking_area .img {
border-radius: 10px;
}
#blog .ranking_area .img img {}

#blog .ranking_area li .font_e {
position: absolute;
left: 20px;
top: 0;
font-weight: bold;
font-size: 1.7em;
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: 2em;
}
#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: 2em;
}
#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: 2em;
}
#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: 40px 0 10px;
}
#blog .special_area li {
position: relative;
margin: 60px 0 100px 0;
}
#blog .special_area .img {
border-radius: 10px;
}
#blog .special_area .img img {
height: 550px;
width: 100%;
}

#blog .special_area .title_set {
left: -4%;
width: 45%;
padding: 30px 45px 45px;
z-index: 1;
}
#blog .special_area li:nth-child(odd) .title_set {
left: auto;
right: -4%;
}
#blog .special_area li:nth-child(even) .title_set {}

#blog .special_area .title_set .top {
display: flex;
gap: 20px;
}
#blog .special_area .title_set .title {
margin: 15px 0 40px;
display: block;
}
#blog .special_area .title_set p {
line-height: 1.8;
}



/* ==================================================================================

new_area

================================================================================== */
.block-top-pickup--main .pickup--article {
    display: flex;
    gap: 0 30px;
    margin: 50px;
}

#blog .new_area {}
#blog .new_area ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 50px 40px;
margin: 50px 0;
}
#blog .new_area .img {
border-radius: 10px;
}
#blog .new_area .img img {
height: 220px;
    width: 100%;
}

#blog .new_area_popular {}
#blog .new_area_popular ul {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 50px 40px;
margin: 50px 0;
}
#blog .new_area_popular .img {
border-radius: 10px;
}
#blog .new_area_popular .img img {
height: 220px;
    width: 100%;
}

#blog .category_list {
position: relative;
padding: 0 0 0 15px;
width: 70%;
margin: -3px 0 0 0;
}
#blog .category_list:before {
content: "";
background: url(/img/column/bace/icon_category_black.png) no-repeat scroll center center / cover;
width: 14px;
height: 14px;
position: absolute;
left: 0;
top: 4px;
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;
display: block;
font-size: 1.1em;
}
#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 35px;
}
#blog [class*="icon_"]:before {
position: absolute;
left: 0;
top: 55%;
transform: translateY(-50%);
display: inline-block;
line-height: 0;
}

#blog .category_area .icon_category:before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    background: url(/img/column/bace/icon_category.png) no-repeat scroll center center / cover;
    width: 27px;
    height: 27px;
}

#blog .category_area ul {
display: flex;
flex-wrap: wrap;
gap: 13px 1%;
margin: 50px 0;
}
#blog .category_area li {
width: 19.2%;
}
#blog .category_area a {
background: var(--main-color);
color: #fff;
display: block;
text-align: center;
padding: 15px 0;
border-radius: 5px;
position: relative;
transition: 0.5s;
overflow: hidden;
}
#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: 50px 0 100px 0;
position: relative;
}
#blog .mv .slider_mv {
padding: 0 0 80px 0;
}

#blog .mv:before {
content: "";
background: var(--main-color-3);
width: 93%;
height: 70%;
position: absolute;
left: 0;
bottom: -40px;
border-radius: 0 10px 10px 0;
}

#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 10%;
max-height: 600px;
border-radius: 10px;
}

#blog .mv img {
height: 550px;
width: 100%;
}



/* title_set
======================================== */
#blog .title_set {
position: absolute;
left: 7%;
bottom: 50px;
background: rgba(255,255,255,0.9);
border-radius: 10px;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
padding: 30px 45px 55px;
width: 30%;
min-width: 450px;
z-index: 1;
}
#blog .title_set .title {
margin: 10px 0 0 0;
font-size: 1.5em;
position: relative;
transition: all 500ms cubic-bezier(0.215,0.610,0.355,1.000);
}
#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: url("../../../../../../N3kJYCrG/page/list.aspx")#A3A1A1;
font-size: 0.9em;
position: relative;
padding: 0 0 0 18px;
}
#blog .day:before {
content: "";
width: 11px;
height: 11px;
position: absolute;
left: 2px;
top: 4px;
background: url(/img/column/bace/clock.png) no-repeat scroll center center / cover;
}



/* ==================================================================================

【下層ページ　共通】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;
}



/* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

全ページ共通

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */


/* ==================================================================================

ふわっと表示

================================================================================== */
.move_bottom {transform : translate(0, 130px);}
.move_top {transform : translate(0, -130px);}
.move_right {transform : translate(130px, 0);}
.move_left {transform : translate(-130px, 0);}

[class*="move_"] {
opacity: 0;
}
[class*="_on"] {
transition: all 3000ms cubic-bezier(0.215,0.610,0.355,1.000);
transform : translate(0, 0);
opacity: 1;
}

/* 横並び時に順に出す -----------------*/
[class*="move"]:nth-of-type(2) {
moz-transition-delay: 200ms;
-webkit-transition-delay: 200ms;
-o-transition-delay: 200ms;
-ms-transition-delay: 200ms;
}
[class*="move"]:nth-of-type(3) {
moz-transition-delay: 400ms;
-webkit-transition-delay: 400ms;
-o-transition-delay: 400ms;
-ms-transition-delay: 400ms;
}
[class*="move"]:nth-of-type(4) {
moz-transition-delay: 600ms;
-webkit-transition-delay: 600ms;
-o-transition-delay: 600ms;
-ms-transition-delay: 600ms;
}
[class*="move"]:nth-of-type(5) {
moz-transition-delay: 800ms;
-webkit-transition-delay: 800ms;
-o-transition-delay: 800ms;
-ms-transition-delay: 800ms;
}
[class*="move"]:nth-of-type(6) {
moz-transition-delay: 1000ms;
-webkit-transition-delay: 1000ms;
-o-transition-delay: 1000ms;
-ms-transition-delay: 1000ms;
}
[class*="move"]:nth-of-type(7) {
moz-transition-delay: 1200ms;
-webkit-transition-delay: 1200ms;
-o-transition-delay: 1200ms;
-ms-transition-delay: 1200ms;
}
[class*="move"]:nth-of-type(8) {
moz-transition-delay: 1400ms;
-webkit-transition-delay: 1400ms;
-o-transition-delay: 1400ms;
-ms-transition-delay: 1400ms;
}
[class*="move"]:nth-of-type(9) {
moz-transition-delay: 1600ms;
-webkit-transition-delay: 1600ms;
-o-transition-delay: 1600ms;
-ms-transition-delay: 1600ms;
}
[class*="move"]:nth-of-type(10) {
moz-transition-delay: 1800ms;
-webkit-transition-delay: 1800ms;
-o-transition-delay: 1800ms;
-ms-transition-delay: 1800ms;
}



/* ==================================================================================

共通　画像拡大

================================================================================== */
.img_zoom {overflow:hidden;}
.img_zoom .img {overflow: hidden;}
.img_zoom img {
transition: all 5000ms cubic-bezier(0.215,0.610,0.355,1.000);
z-index:1;
-moz-transform: scale(1.001);
-webkit-transform: scale(1.001);
-ms-transform: scale(1.001);
transform: scale(1.001);
vertical-align: bottom;
}
.img_zoom:hover img {
-moz-transform: scale(1.05);
-webkit-transform: scale(1.05);
-ms-transform: scale(1.05);
transform: scale(1.05) rotate(0.001deg);
}

/*　youtube　*/
#blog .movie {
    text-align: center; 
    margin: 100px;
}

/* ==================================================================================

ページネーション

================================================================================== */
.column-pagination {
  min-width: 1000px;
  max-width: 1200px;
  margin: 0 auto;
  width: calc(100% - 50px);
  text-align: center;
}
.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;
  cursor: pointer;
}
.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:not(.current) {
  cursor: pointer;
}
.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;
}
.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;
}
}
/* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

【PC】ウィンドウ幅が769px以上の場合に適用するCSS

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */