/*---------------------
----- 全体を通じて ------
---------------------*/
:root {
  --magazine1: #2a45a7;
  --magazine2: #eaff74;
}
.d-flex{
  display: flex;
}
.justify-content-center{
  justify-content: center;
}
.flex-column{
  flex-direction: column;
}
body {
  background-color: white;
}
a {
  color: #000;
  text-decoration: none;
}
/* ヘッダー */
main#main.main{
  /* min-height: 100vh; */
  background-color: white;
  width: 60%;
  padding-right: 50px;
}
.header-container {
  /* height: 500px; */
  /* padding: 0 0.5vw; */
  /* width: 99%; */
  /* top: 8px; */
  /* left: 0.5vw; */
  /* background-image: url(../images/startup-desktop.jpg); */
  /* border-radius: 8px; */
}
.header-container .header-container-in {
  /* background-color: var(--magazine1); */
  /* background: linear-gradient(to right, #2976EE, #149FE8, #00C6E3); */
  /* background-color: black; */
  /* テスト */
  background-color: white;
  box-shadow: 0 1px 1px 0 rgb(0 0 0 / 30%);
  /* テスト */
  display: flex;
  justify-content: space-between;
  width: 100vw;
  position: fixed;
  top: 0px;
  left: 0vw;
  /* height: 70px; */
  /* border-radius: 8px; */
  z-index: 1000;
  transition: all 0.3s;
}
.header-container .header-container-in.scrolled {
  /* テスト */
  /* box-shadow: 0 5px 10px 0 rgb(0 0 0 / 30%); */
  /* テスト */
}
/* .header-container .header-container-in::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--top1);
} */
.header-container .header-container-in .navi-in ul,
.header-container .header-container-in .navi-in li {
  width: auto;
}
.header-container .header-container-in .navi-in li {
  padding: 0.5rem;
}
.header-container .header-container-in .navi-in a {
  color: white;
  font-weight: bold;
}
.header-container .header-container-in .navi-in a:hover {
  background-color: inherit;
  color: var(--magazine2);
}
.header-container .header-container-in .header-in-title{
  padding-left: 20px;
}
.header-container .header-container-in .header-in-title a{
  font-size: 1.2rem;
  display: block;
  font-family: 'Helvetica Neue','Helvetica','Arial',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif;
  color: white;
  /* テスト */
  color: black;
  /* テスト */
  position: relative;
  font-weight: bold;
  /* transform: rotate3d(10,10,10,-5deg); */
  transform: rotate(-5deg);
  z-index: 25;
  transition: all .5s;
}
.header-container .header-container-in .header-in-title.is-active a{
  color: white;
}
.header-container .header-container-in .header-in-title a span{
  /* display: block;
  font-size: 1rem;
  margin-top: 5px;
  position: relative;
  z-index: 25; */
}

.header .header-in{
  height: 100%;
}
/* ナビゲーション */
.header-container .header-container-in nav {
  /* position: fixed;
  top: 8px;
  left: 0;
  width: 100%; */
}
.header-menu-for-pc{
  position: fixed;
  width: 60%;
  right: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.header-menu-for-pc a{
  /* color: white; */
  /* テスト */
  color: black;
  /* テスト */
  padding-left: 30px;
}
.header-in-nav-hamberger{
  position: fixed;
  display: none;
  right: 30px;
  color: white;
  height: 30px;
  cursor: pointer;
  z-index: 1000;
  transition: all .3s;
}
.header-in-nav-hamberger span{
  display: block;
  width: 30px;
  height: 2px;
  /* テスト */
  background-color: black;
  /* テスト */
  /* background-color: white; */
  margin-bottom: 10px;
  transition: all .5s;
}
.header-in-nav-hamberger.is-active span{
  background-color: white;
}
.header-in-nav-hamberger.is-active span:first-child{
  transform: translate(0,12px) rotate(45deg);
}
.header-in-nav-hamberger.is-active span:nth-child(3n+2){
  opacity: 0;
}
.header-in-nav-hamberger.is-active span:last-child{
  transform: translate(0,-12px) rotate(-45deg);
}
.header-in-nav-content-wrapper{
  position: fixed;
  width: 100vw;
  height: 100vh;
  right: 0px;
  top: 0px;
  /* background-color: black; */
  background-color: darkgray;
  color: white;
  padding: 20px;
  padding-top: 100px;
  transform: translateX(100vw);
  transition: all .3s linear;
}
.header-in-nav-content-wrapper.is-active{
  transform: translateX(0);
}

.header-in-nav-content-wrapper .header-in-nav-category-title{
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  padding-left: 10px;
  /* text-align: center; */
}
.header-in-nav-content-wrapper a.header-in-nav-category-item{
  display: block;
  border-bottom: 0.5px solid white;
  padding-left: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 1rem;
  line-height: 2;
  color: white;
}
.header-in-nav-content-wrapper .header-in-nav-aboutus-title{
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  margin-top: 3rem;
  padding-left: 10px;
}
.header-in-nav-content-wrapper a.header-in-nav-aboutus-item{
  display: block;
  border-bottom: 0.5px solid white;
  padding-left: 20px;
  padding-bottom: 5px;
  padding-top: 5px;
  font-size: 1rem;
  line-height: 2;
  color: white;
}
.appeal-area-custom-under-header-container{
  position: relative;
  height: 50px;
  background-color: rgba(240, 240, 240, 1);
  width: 100vw;
  margin-top: 50px;
  display: flex;
  /* justify-content: space-between; */
}
.appeal-area-custom-under-header-container::after{

}
.featured-article-in-appeal-area-custom-under-header-container{
  background-color: black;
  position: relative;
  width: 50vw;
  height: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}
.featured-article-in-appeal-area-custom-under-header-container a{
  color: white;
}
.popular-article-in-appeal-area-custom-under-header-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  width: 50vw;
}

/* コンテント */
.content{
  margin-top: 150px;
  /* margin-top: 270px; */
}
.content .wrap{
/*   width: 100%;
  padding-left: 10%;
  padding-right: 10%; */
  /* max-width: 1040px; */
  /* padding: 0 20px; */
}
/* リストタイトル */
h2.list_title {
  margin: 0 0 40px;
  padding: 23px 0 0;
  font-family: hind, sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  position: relative;
  text-align: center;
}
h2.list_title span {
  padding: 0 0 0 20px;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: #666;
}
h2.list_title::before {
  content: "";
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
  position: absolute;
  /* top: 0; */
  bottom: -6px;
  left: 50%;
  right: 50%;
  transform: translateX(-50%);
}
/* リストアイテム */
#list article img{
  /* border-top-left-radius: 5px;
  border-top-right-radius: 5px; */
  border-radius: 5px;
}
.ect-3-columns {
  justify-content: space-between;
}
.ect-3-columns .entry-card-wrap {
  background-color: inherit !important;
  box-shadow: none !important;
  /* border-radius: 5px !important; */
  width: 30%;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-content {
  transition: all 0.3s;
}
.ect-3-columns .entry-card-wrap:hover .entry-card .entry-card-content {
  opacity: 0.7;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-content .category_box {
  margin-bottom: 10px;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-content .category_box .cat-label {
  position: static;
  color: #2a45a7;
  background-color: inherit;
  font-weight: bold;
  padding: 2px 10px 2px 0;
  border-right: solid 1px #dedede;
  border-radius: 0;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-content .category_box .date {
  padding: 0 0 0 10px;
  font-size: 0.8rem;
  color: #909090;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-content h2.entry-card-title {
  font-size: 1rem;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-thumb {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
}
.ect-3-columns .entry-card-wrap .entry-card .entry-card-thumb img {
  width: 100%;
  height: 15vw;
  object-fit: cover; /* この一行を追加するだけ！ */
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.ect-3-columns .entry-card-wrap:hover .entry-card .entry-card-thumb img {
  transform: scale(1.1, 1.1);
}
.ect-3-columns .entry-card-wrap:nth-of-type(1),
.ect-3-columns .entry-card-wrap:nth-of-type(4),
.ect-3-columns .entry-card-wrap:nth-of-type(7),
.ect-3-columns .entry-card-wrap:nth-of-type(8) {
  /* width: 100%; */
}
.ect-3-columns .entry-card-wrap:nth-of-type(1) .entry-card,
.ect-3-columns .entry-card-wrap:nth-of-type(4) .entry-card,
.ect-3-columns .entry-card-wrap:nth-of-type(7) .entry-card,
.ect-3-columns .entry-card-wrap:nth-of-type(8) .entry-card {
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
}
.ect-3-columns .entry-card-wrap:nth-of-type(1) .entry-card{
  /* background-color: black;
  color: white; */
}
.ect-3-columns .entry-card-wrap:nth-of-type(1) .entry-card .entry-card-content h2.entry-card-title {
  /* font-size: 1.6rem; */
}
.ect-3-columns .entry-card-wrap:nth-of-type(1) .entry-card .entry-card-thumb {
  /* width: 48.3%;
  overflow: hidden; */
}
.ect-3-columns .entry-card .entry-card-thumb img {
  /* width: 100%; */
  /* height: 30vw; */
  /* object-fit: cover;  */
}
.ect-3-columns .entry-card-wrap:nth-of-type(1) .entry-card .entry-card-content {
  /* width: 48.3%; */
}
.ect-3-columns .entry-card-wrap:nth-of-type(1),
.ect-3-columns .entry-card-wrap:nth-of-type(2){
  width: 49%;
}
.list-supply{
  /* width: 30%; */
}
.cat-label{
  top: .7em;
  left: .7em;
  font-size: 13px;
  border-radius: 10px;
  padding: 5px;
  border: none;
}
.entry-card-snippet, .related-entry-card-snippet{
  font-size: 1rem;
}
/* サイドバー */
.sidebar {
  /* background-color: var(--top1); */
  /* background-image: url(https://images.unsplash.com/photo-1509653087866-91f6c2ab59f2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2785&q=80);
  background-size: cover;
  background-repeat: no-repeat; */
  min-height: 80vh;
  width: 30%;
}
.sidebar h3 {
  background-color: inherit;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.search-edit{
  border: none;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2) inset;
  /* border-radius: 20px; */
}
.widget_recent_entries ul li a, .widget_categories ul li a, .widget_archive ul li a, .widget_pages ul li a, .widget_meta ul li a, .widget_rss ul li a, .widget_nav_menu ul li a{
  /* color: white; */
  font-size: 1rem;
}
.sidebar #navi_entries-2 h3{
  position: relative;
}
.sidebar #navi_entries-2 h3::before{
  content: "注目記事";
  position: absolute;
  font-size: .9rem;
  top: 0;
  left: 0;
  right: 0;
}
.sidebar #navi_entries-2 .ribbon-color-1 span{
  background: linear-gradient(to right,#2976ee,#149fe8,#00c6e3);
}
.sidebar #related_entries-2 h3{
  position: relative;
}
.sidebar #related_entries-2 h3::before{
  content: "関連記事";
  position: absolute;
  font-size: 0.9rem;
  top: 0;
  left: 0;
  right: 0;
}

.sidebar #categories-2 h3 {
  position: relative;
}
.sidebar #categories-2 h3::before {
  content: "カテゴリー";
  position: absolute;
  font-size: 0.9rem;
  top: 0;
  left: 0;
  right: 0;
}
.sidebar #new_entries-2 .new-entry-card-title {
  font-size: 0.8rem;
  font-weight: bold;
}
.sidebar #new_entries-2 h3 {
  position: relative;
}
.sidebar #new_entries-2 h3::before {
  content: "最新の記事";
  position: absolute;
  font-size: 0.3rem;
  top: 0;
  left: 0;
  right: 0;
}
.sidebar-scroll {
  top: 100px;
}
.sidebar #tag_cloud-2 h3 {
	position: relative;
}
.sidebar #tag_cloud-2 h3::before {
  content: "キーワード";
  position: absolute;
  font-size: 0.3rem;
  top: 0;
  left: 0;
  right: 0;
}
.sidebar #tag_cloud-2 a:nth-of-type(3n+1){
  color: #149FE8;
  flex-grow: 0;
  padding: 4px 8px;
  font-size: 1rem;
  border: solid 2px black;
  border-image: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
  border-image-slice: 1;
	line-height: 1rem;
}
.sidebar #tag_cloud-2 a:nth-of-type(3n),
.sidebar #tag_cloud-2 a:nth-of-type(3n+2){
  flex-grow: 0;
  padding: 4px 8px;
  border: solid 2px black;
  border-image: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
  border-image-slice: 1;
  background: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
  color: white;
	line-height: 1rem;
}
.sidebar #tag_cloud-2 a:nth-of-type(3n+2){
  font-size: .6rem;
}
.sidebar #tag_cloud-2 a .fas{
}
.sidebar .ad-label{
	margin-bottom: 10px;
}
/* 記事 */
.content .content-in{
  justify-content: center;
}
.content .content-in .main .article .article-header .date-tags{
  /* display: block;
  position: relative;
  z-index: 25; */
}
.article ul.slick-dots {
	margin-bottom:0;
}
.entry-content.cf{
  padding-top: 30px;
  font-size: 1rem;
}
.content .content-in .main .article .article-header.entry-header{
  background-image: none;
  /* color: var(--top1); */
  /* color: #2976EE; */
  color: black;
  padding-top: 20px;
  padding-bottom: 0px;
}
.content .content-in .main .article .article-header.entry-header::after{
  content: none;
}
.content .content-in .main .article .article-header.entry-header h1{
  font-size: 2.2rem;
  font-weight: normal;
  text-align: left;
  /* background: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
}
/* 関連記事 */
.related-entry-heading{
  /* background-color: var(--top1); */
  background: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  color: white;
}
.related-list-supply{
  width: 33%;
}
.post-navi-default.post-navi-border a{
  border: none;
}
.pagination-next-link {
  border: none;
  border-radius: 5px;
  color: white;
  background-color: black;
  padding: 1rem;
  border: 1px solid black;
}
.pagination-next-link:hover {
  color: black;
}
/* フッター */
#footer.footer {
  /* background-color: var(--magazine1); */
  background: linear-gradient(to right, #2976EE, #149FE8, #00C6E3);
}
#footer.footer.footer-container.nwa{
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  main#main.main {
    width: auto;
  }
}

@media screen and (max-width: 834px){
  .header{
    display: block;
  }
  .header-menu-for-pc{
    display: none;
  }
  .header-in-title-wrapper{
    height: 100%;
  }
  .header-container-in.hlt-top-menu{
    flex-direction: row;
  }
  .header-in-title{
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header-in-nav-hamberger{
    display: block;
  }
  .ect-3-columns .entry-card-wrap:nth-of-type(1),
  .ect-3-columns .entry-card-wrap:nth-of-type(2) {
    width: 100%;
  }
  main#main.main{
    padding-right: 0px;
  }
}

/*----------------------
記事内部
----------------------*/
.article #toc{
  width: 100%;
}
.article h2{
  background-color: white;
  border: none;
  border-left: solid var(--magazine1) 10px;
  line-height: 1.5;
  padding: 0 20px;
}
.article h3{
  border: none;
  /* border-left: solid var(--magazine2) 10px; */
  line-height: 1.5;
  padding: 0 0;
  position: relative;
}
.article h3::before{
  content:'▶︎';
  margin-right: 10px;
  color: var(--magazine1);
}
.article p a{
/*   border-bottom-style: dashed; */
  border-bottom-style: solid;
  border-bottom-width: 1px;
/*   color: #006df0; */
	color: #0064db;
	padding-left: 2px;
	padding-right: 2px;
}
blockquote {
    position: relative;
    padding: 15px 10px 5px;
    box-sizing: border-box;
    background: #f3f3f3;
}
blockquote:before{
    display: inline-block;
    position: absolute;
    top: -8px;
    left: 9px;
    padding: 5px 10px;
    text-align: center;
    content: "QUOTE";
    color: white;
    font-family: sans-serif;
    font-size: 16px;
    background-color: var(--magazine1);
}
blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}
blockquote cite {
    display: block;
    text-align: right;
    color: rgb(100, 100, 100);
    font-size: 0.9em;
    font-style: italic;
}
.article .marker-under{
  background: linear-gradient(transparent 40%,#f7f700 40%);
  font-weight: bold;
}
.article .box-small{
  background-color: rgba(230, 230, 230, 0.5);
  color: gray;
  line-height: 1.2;
  padding: .5em;
}
.article .box-small p{
  margin-bottom: 0px;
  color: gray;
  font-size: .9rem;
}
.box-example-yellow {
    position: relative;
    margin: 2em 0;
	padding: 40px 10px 20px;
/* 	border: solid 2px #FFC107; */
	background-color: #f5f5f5;
}
.box-example-yellow .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 2px 12px;
/*     height: 25px; */
    line-height: 25px;
    font-size: 16px;
    background: #fad400;
/*     color: #ffffff; */
	color: black;
/*     font-weight: bold; */
}
.box-example-yellow p {
    margin: 0;
    padding: 0;
}
.box-example {
    position: relative;
    margin: 2em 0;
	padding: 40px 10px 20px;
/* 	border: solid 2px #FFC107; */
	background-color: #f5f5f5;
}
.box-example .box-title {
    position: absolute;
    display: inline-block;
    top: -2px;
    left: -2px;
    padding: 2px 12px;
/*     height: 25px; */
    line-height: 25px;
    font-size: 17px;
    background: darkblue;
    color: #ffffff;
    font-weight: bold;
}
.box-example p {
    margin: 0;
    padding: 0;
}
.article .list-dark-blue ul,
.article .list-dark-blue ol{
  counter-reset: item;
  list-style-type: none;
  background-color: rgba(224, 240, 255, 0.5);
  padding: 1em;
}
.article .list-dark-blue ul li,
.article .list-dark-blue ol li{
  color: #000a31;
}
.article .list-dark-blue ul li:before{
  content: "・"
}
.article .list-dark-blue ol li:before{
  counter-increment: item;
  content: '('counter(item)')';
  padding-right: .3em;
  color: #000a31;
}
.article .list-dark-blue ul li a,
.article .list-dark-blue ol li a{
	text-decoration: underline;
	padding-left: 3px;
	padding-right: 3px;
	padding-bottom: 3px;
}
.article .fontb{
  font-weight: bold;
}
.article .ad-link-text a{
	text-decoration: underline;
	color: #0099FF;
/* 	color: blue; */
}
.article .wp-block-table table a{
	text-decoration: underline;
}
.article .wp-block-table table th {
  background-color: #fff;
  border: none;
  font-weight: bold;
}
.article .wp-block-table table td {
  /* border: none; */
}
.article .wp-block-table table tr:first-child {
  border-top: 2px solid black;
  /* border-bottom: 1px solid black; */
}
.article .wp-block-table table tr:last-child {
  border-bottom: 2px solid black;
}
.article .wp-block-table table tr:nth-of-type(2n+1) {
  background-color: #fff;
}
.article .wp-block-table table tr:nth-of-type(2n) {
  background-color: rgb(198 198 198 / 10%);
}
.article .wp-block-table.right1 table tr td:nth-of-type(2n) {
  text-align: right;
}

/*----------------------
ブログカード
----------------------*/
.blogcard-content .blogcard-snippet {
  overflow: hidden;
}
a.blogcard-wrap {
  width: 100%;
}
a.blogcard-wrap .blogcard-thumbnail {
  overflow: hidden;
}
a.blogcard-wrap img.blogcard-thumb-image {
  transition: .3s;
}
a.blogcard-wrap:hover img.blogcard-thumb-image {
  transform: scale(1.1);
}
.blogcard-footer {
  display: none;
}
.internal-blogcard::after {
  content: '続きを読む \00bb';
  position: absolute;
  bottom: 0.5rem;
  right: 1rem;
  font-size: 70%;
  background-color: #ffd242;
  padding: 0.5em 4em;
  font-weight: bold;
  color: #fff;
  border-radius: 2px;
}

/*----------------------
記事内のバナー
----------------------*/
#main .banner_section.sp {
  display: none;
}
.banner_section.pc .banner_box {
  background: linear-gradient(90.04deg, #2976EE -1.38%, #149FE8 73.37%, #00C6E3 98.99%);
  padding: 1.5rem 1rem 2px;
  position: relative;
}
.banner_section.pc .banner_box .text1 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  color: white;

  margin-bottom: 20px;
}
.banner_section.pc .banner_box .text2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  /* margin-bottom: 100px; */
}
.banner_section.pc .banner_box .flexbox {
  display: flex;
  justify-content: space-between;
}
.banner_section.pc .banner_box .flexbox img {
  width: 50%;
}
.banner_section.pc .banner_box .flexbox .btn_box {
  width: 48%;
  display: flex;
  align-items: center;
}
.banner_section.pc .banner_box .flexbox .btn_box a {
  display: inline-block;
  /* background: linear-gradient(91.06deg, #C2AF00 0.18%, #FCE300 99.67%); */
  background: linear-gradient(91.06deg, #FAFF04 0.18%, #FCE300 99.67%);
  border-radius: 10px;

  width: 100%;

  color: #3A4151;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;

  padding-top: 12px;
  padding-bottom: 12px;

  transition: 0.4s;

  position: relative;
  overflow: hidden;
}
.banner_section.pc .banner_box .flexbox .btn_box a:hover {
  opacity: 0.7;
}
.banner_section.pc .banner_box .flexbox .btn_box a::after {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}
@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/*----------------------
求人カード
----------------------*/

.slider .slick-prev:before,
.slider .slick-next:before {
  color: black;
}
.slider .kyujin_slide {
  position: relative;
  padding: 0 8px 24px;
  height: 100%;
}
.slider .kyujin_slide a.kyujin_card {
  display: inline-block;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 32px 10px 10px;
  width: 96%;
  height: 100%;
  background: #fff;
  transition: all .2s ease-in-out;
  position: relative;
  text-align: left;
  box-shadow: 0 2px 4px 0 rgb(39 77 123 / 24%);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
  text-decoration: none;
}
.slider .kyujin_slide a.kyujin_card:hover {
  color: black;
  box-shadow: 0 2px 10px 0 rgb(39 77 123 / 32%);
}
.slider .kyujin_slide .kyujin_card p {
  margin-bottom: 1em;
  line-height: 1;
}
.slider .kyujin_slide .kyujin_card .kyujin_category {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px 0 0 0;
  background-color: #000;
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  padding: 4px 12px;
  font-size: 0.7rem;
  line-height: 1;
}
.slider .kyujin_slide .kyujin_card .kyujin_title {
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.3;
  min-height: 2rem;
  margin-bottom: 5px;
}
.slider .kyujin_slide .kyujin_card .kyjin_condition {
  margin-bottom: 0.5em;
  font-size: 0.9rem;
}
.slider .kyujin_slide .kyujin_card .kyjin_condition p:first-child {
  margin-bottom: 1em;
  text-decoration: underline;
}
.slider .kyujin_slide .kyujin_card .kyujin_content {
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 0.9rem;
  min-height: 2.4rem;
}
.slider .kyujin_slide .kyujin_card .get_information_date{
  color: gray;
  /* text-align: right; */
  font-size: 0.6rem;
}
.slider .kyujin_slide .kyujin_card .kuyjin_detail_button_box .kuyjin_detail_button {
  display: inline-block;
  /* margin: 0 auto; */
  width: 100%;
  background: linear-gradient(to right,#2976ee,#149fe8,#00c6e3);
  color: white;
  border-radius: 5px;
  text-align: center;
  padding: 8px;
  font-size: 0.7rem;
}
.slider .kyujin_slide .kyujin_card .kyujin_source_site {
  color: gray;
  /* text-align: right; */
  font-size: 0.6rem;
  margin-bottom: 0.3rem;
}
@media screen and (max-width: 900px) {
  .slider .slick-prev {
    left: -5px;
  }
  .slider .slick-next {
    right: 5px;
  }
  .slider .kyujin_slide {
    padding: 0 1.5rem 40px;
    width: 85%;
  }
  .slider .kyujin_slide a.kyujin_card {
    /* width: 90%; */
  }
}

/*----------------------
口コミリスト
----------------------*/
.scroll_box {
}
.scroll_box .review_list {
  display: flex;
  overflow-x: auto;
}
.scroll_box .review_list .review_container {
  width: 70%;
/*   min-height: 100px; */
  flex-shrink: 0;
  padding: 1rem 1rem 0 1rem;
  margin-bottom: 16px;
  margin-right: 20px;
/*   box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5); */
  border-radius: 8px;
	background-color: #f3f3f3;
}
.scroll_box .review_list .review_container .user {
  font-weight: bold;
}
.scroll_box .review_list .review_container .review_content {
  font-size: 1rem;
	line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
	min-height: 140px;
}
.scroll_box .review_list .review_container .reference {
  text-align: right;
}
@media screen and (max-width: 900px) {
  .scroll_box ul.review_list {
    padding-left: 0;
  }
}


/*----------------------
サイドバー内のバナー
----------------------*/
.banner_section.sp .banner_box {
  background: linear-gradient(90.04deg, #2976EE -1.38%, #149FE8 73.37%, #00C6E3 98.99%);
  padding: 1.5rem 1rem;
  position: relative;
}
.banner_section.sp .banner_box .text1 {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0em;
  text-align: left;
  color: white;

  margin-bottom: 20px;
}
.banner_section.sp .banner_box .text2 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  color: white;

  margin-bottom: 100px;
}
.banner_section.sp .banner_box img {
  position: absolute;
  right: 1rem;
  bottom: 54px;
  width: 50%;
}
.banner_section.sp .banner_box .btn_box a {
  display: inline-block;
  /* background: linear-gradient(91.06deg, #C2AF00 0.18%, #FCE300 99.67%); */
  background: linear-gradient(91.06deg, #FAFF04 0.18%, #FCE300 99.67%);
  border-radius: 10px;

  position: absolute;
  width: calc(100% - 2rem);
  /* height: 61px; */
  /* left: 147px; */
  bottom: 0.5rem;

  color: #3A4151;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;

  padding-top: 12px;
  padding-bottom: 12px;

  transition: 0.4s;
}
.banner_section.sp .banner_box .btn_box a:hover {
  opacity: 0.7;
}




@media screen and (max-width: 480px) {
  #main .banner_section.pc {
    display: none;
  }
  #main .banner_section.sp {
    display: block;
  }

  .content {
    margin-top: 200px;
  }
  .content .wrap {
    padding: 0 15px;
  }
  .content .content-in .main .article .article-header.entry-header h1 {
    padding: 0;
    font-size: 1.8rem;
  }
  .header-container {
    top: 0;
    width: 100%;
    border-radius: 0;
	  left: 0;
	  margin: 0;
	  padding: 0;
  }
  .header-container .header-container-in {
    /* display: none; */
    /* position: static; */
	  top: 0;
    width: 100%;
    border-radius: 0;
	  left: 0;
	  margin: 0;
  }
  .header-container .header-container-in .header-in-title a {
    line-height: 1.5;
  }
  .appeal-area-custom-under-header-container{
    flex-direction: column;
    height: 100px;
  }
  .featured-article-in-appeal-area-custom-under-header-container,
  .popular-article-in-appeal-area-custom-under-header-container{
    width: 100vw;
    height: 50%;
    padding-right: 20px;
  }
  .cat-label{
    font-size: 10px;
    padding: 1px 3px;
  }
  /* 関連記事のディスクリプション非表示 */
  #related-entries .related-list .related-entry-card-wrap .related-entry-card .related-entry-card-content .related-entry-card-snippet {
    display: none;
  }
	.sidebar #categories-2 h3::before,
	.sidebar #new_entries-2 h3::before,
	.sidebar #tag_cloud-2 h3::before,
  .sidebar #navi_entries-2 h3::before,
  .sidebar #related_entries-2 h3::before{
		font-size: 0.8rem;
		font-weight: normal;
	}
}

/*  */
