@charset "UTF-8";
@media screen and (max-width: 768px){
  .pconly{
    display: none !important;
  }
}
@media screen and (min-width: 769px){
  .sponly{
    display: none !important;
  }
}


nav.breadcrumb{
  display: block;
  background: #f5fdff;
  margin-bottom: 0;
}
nav.breadcrumb ol{
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 90%;
  max-width: 1200px;
  padding: 10px 0;
  list-style: none;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
nav.breadcrumb ol li{
  position: relative;
  padding-right: 1.5em;
}
nav.breadcrumb ol li::before{
  content: ">";
  position: absolute;
  right: 3px;
}
nav.breadcrumb ol li:last-child::before{
  content: none;
}
.breadcrumb a{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}

/* 一覧リニューアル */
#list-fv{
  background-image: url(/image/mv_bg.webp);
  padding: 100px 0 160px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  margin-bottom: 40px;
}
#list-fv > div{
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
#list-fv .text{
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  color: white;
}
#list-fv .text h1{
  font-size: 40px;
  font-weight: bold;
  width: 5em;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
#list-fv .text p{
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
#list-fv .images{
  position: absolute;
  display: flex;
  column-gap: 30px;
  transform: rotate(25deg);
  width: 60%;
  top: -160px;
  right: 30%;
  max-width: 600px;
}
#list-fv .scroll-container {
  animation: scrollUp 30s linear infinite;
}
#list-fv .scroll-container.second{
  animation: scrollDown 30s linear infinite;
}
#list-fv .images ul{
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  top: -100px;
}
#list-fv .images ul li{
  margin-bottom: 20px;
}
#list-fv .images ul li img{
  width: 100%;
}
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px){
    #list-fv{
      padding: 40px 0 0px;
    }
    #list-fv > div{
      margin: auto;
      width: 92%;
      max-width: 450px;
      text-align: center;
    }
    #list-fv .text{
      margin-bottom: 30px;
    }
    #list-fv .text h1{
      margin: 0 auto 20px;
    }
    #list-fv .images{
      width: auto;
      max-width: auto;
      position: static;
      transform: rotate(0);
      display: block;
    }
    #list-fv .images ul{
      display: flex;
      position: static;
      column-gap: 10px;
      margin-bottom: 15px;
    }
    #list-fv .images ul li{
      min-width: 160px;
      margin: 0;
    }
    #list-fv .scroll-container{
      animation: scrollRight 10s linear infinite;
    }
    #list-fv .scroll-container.second{
      animation: scrollLeft 10s linear infinite;
    }
    @keyframes scrollRight {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    @keyframes scrollLeft {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0);
      }
    }
}


/* コラム一覧 */
main{
  margin: auto;
  width: 90%;
  max-width: 1200px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
main #main-content{
  width: 73%;
}
main #sidebar{
  width: 22%;
  position: sticky;
  top: 100px;
  height: 100%;
}
main #sidebar .side-cta{
  position: relative;
  margin-bottom: 10px;
}
main #sidebar .side-cta .back{
  width: 100%;
}
main #sidebar .side-cta .btn1,
main #sidebar .side-cta .btn2{
  position: absolute;
  left: 8%;
  bottom: 6%;
  width: 80%;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}
main #sidebar .side-cta .btn1{
  bottom: -1%;
  width: 57%;
  left: 40%;
}
main #sidebar .side-cta .btn1:hover,
main #sidebar .side-cta .btn2:hover{
  transform: scale(1.07);
  filter: brightness(0.7);
}
main #sidebar .others{
  margin-top: 40px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  background: #eafdff;
  padding: 15px;
}
main #sidebar .others h2{
  font-size: 20px;
  padding-left: 15px;
  position: relative;
  font-weight: bold;
}
main #sidebar .others h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #0fa8fb, #80efc8);
}
main #sidebar .others .category_list{
  list-style: none;
  margin-top: 10px;
  display: flex;
  column-gap: 15px;
  flex-wrap: wrap;
  padding: 0;
}
main #sidebar .others .category_list li{
  background: white;
  margin-bottom: 10px;
  padding: 0 1em;
  border-radius: 15px;
  border: 1px solid #666666;
  color: #666666;
}
main #sidebar .others .category_list li a{
  text-decoration: none;
  color: inherit;
}
main #sidebar .others .category_list li:hover{
  border: 1px solid #13a7fb;
  background: #13a7fb;
  color: white;
}


main > #main-content > .en{
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 16px;
}
main h1{
  font-size: 30px;
  font-weight: bold;
  font-size: 40px;
  color: #1d2a51;
  margin-bottom: 40px;
}

main form{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 5px;
  flex-wrap: wrap;
}
main form input{
  font-size: 16px;
  padding: 4px;
  border-radius: 5px;
  flex: 1;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  border: 1px solid #d9d9d9;
  background-image: url(/image/search_icon.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: right 10px center;
}
main form select{
  padding: 6px;
  font-size: 16px;
  border-radius: 5px;
  width: 12em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  border: 1px solid #d9d9d9;
}
main form button{
  color: white;
  background: #1f2c5c;
  border: 2px solid #1f2c5c;
  padding: 4px 0;
  width: 4em;
  font-size: 16px;
  text-align: center;
  border-radius: 5px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  cursor: pointer;
}
main form button:hover{
  color: #1f2c5c;
  background: white;
}
main .column-list{
  list-style: none;
  padding: 0;
  margin-top: 15px;
}
main .column-list .column-part{
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e7e7e7;
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  color: black;
  text-decoration: none;
  flex-wrap: wrap;
}
main .column-list .column-part > a{
  display: block;
  width: 35%;
}
main .column-list .column-part img{
  width: 100%;
  height: 170px;
  object-fit: cover;
}
main .column-list .column-part a:hover{
  filter: brightness(0.7);
  opacity: 0.7;
}
main .column-list .column-part .desc{
  flex: 1;
}
main .column-list .column-part .desc .category{
  color: #0fa8fb;
  border: 1px solid #0fa8fb;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px;
  font-size: 12px;
  text-decoration: none;
}
main .column-list .column-part .desc h2{
  font-size: 20px;
  font-weight: bold;
}
main .column-list .column-part .desc h2 a{
  text-decoration: none;
  color: black;
}
main .column-list .column-part .desc h2 a.display{
  display: block;
}
main .column-list .column-part .desc h2 a.none{
  font-size: 0;
  height: 0;
  display: block;
}
main .column-list .column-part .tags{
  margin-bottom: 10px;
  padding: 0;
  list-style: none;
  display: flex;
  column-gap: 10px;
  flex-wrap: wrap;
}
main .column-list .column-part .tags li{
  font-size: 12px;
  background: white;
  border: 1px solid #0fa8fb;
  color: #0fa8fb;
  padding: 4px 8px;
  border-radius: 20px;
}
main .column-list .column-part .tags li:hover{
  background: #0fa8fb;
  color: white;
}
main .column-list .column-part .tags li a{
  color: inherit;
}
main .column-list .column-part .tags li a:hover{
  opacity: 1;
  filter: brightness(1);
}




main .column-list .column-part .desc .time{
  margin: 0;
  font-size: 12px;
}
main .column-list .column-part .desc .flex{
  display: flex;
  align-items: center;
  column-gap: 15px;
}
main .column-list .column-part .desc .flex > div{
  display: flex;
  align-items: center;
  font-size: 12px;
  column-gap: 5px;
}
main .column-list .column-part .desc .flex > div > p{
  margin: 0;
}
main .column-list .column-part .desc .flex > div img{
  width: 15px;
  height: 15px;
}
main .pagination-wrapper{
  margin-top: 20px;
}
main .pagination-wrapper .pagination{
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px){
  nav.breadcrumb ol,
  main{
    width: 92%;
    max-width: 450px;
  }
  main #main-content{
    width: 100%;
  }
  main h1{
    margin-bottom: 30px;
  }

  main .column-list .column-part{
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e7e7e7;
  }
  main .column-list .column-part > a{
    width: 100%;
    margin-bottom: 10px;
  }
  main .column-list .column-part img{
    width: 100%;
    height: auto;
  }
  main .column-list .column-part .desc{
    width: 100%;
    margin-top: 10px;
  }
  main .column-list .column-part .desc .category{
    font-size: 14px;
  }
  main form{
    margin-bottom: 40px;
  }
  main form select{
    width: 40%;
  }
  main form input{
    width: 100%;
    margin-bottom: 10px;
    flex: auto;
  }
  main form button{
    width: 15%;
  }
  main form input,
  main form select,
  main form button{
    font-size: 16px;
  }
  main .column-list .column-part .desc .flex{
    column-gap: 10px;
  }
}
/* コラム一覧ここまで */


/* コラム詳細 */
main#column_detail{
  margin: auto;
  width: 90%;
  max-width: 1200px;
  padding: 0 0 40px;
  display: flex;
  justify-content: space-between;
}
main#column_detail article{
  width: 73%;
}
main#column_detail .fv{
  margin-bottom: 40px;
}
main#column_detail .fv .category{
  color: #0fa8fb;
  border: 1px solid #0fa8fb;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px;
  font-size: 14px;
}
main#column_detail .fv .category a{
  text-decoration: none;
  color: #0fa8fb;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .fv h1{
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  color: #000000;
}
main#column_detail .fv h1::before{
  display: none;
}
main#column_detail .fv img{
  width: 100%;
}
main#column_detail .fv .time{
  display: flex;
  column-gap: 20px;
  margin: 10px 0;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .fv .time p{
  margin: 0;
  font-size: 14px;
}
main#column_detail .fv .share{
  padding: 0;
  list-style: none;
  display: flex;
  column-gap: 15px;
  margin-top: 10px;
}
main#column_detail .fv .share li{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  position: relative;
}
main#column_detail .fv .share a img,
main#column_detail .fv .share img{
  width: 30px;
  height: 30px;
  display: block;
  margin: auto;
  cursor: pointer;
}
main#column_detail .fv .share a img:hover,
main#column_detail .fv .share img:hover{
  opacity: 0.7;
}
main#column_detail .fv .share li p{
  opacity: 0;
  position: absolute;
  width: 21em;
  border: 1px solid #b1aaaa;
  top: 0;
  left: 40px;
}
main#column_detail .fv .tags{
  padding: 0;
  list-style: none;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
main#column_detail .fv .tags li{
  color: white;
  background: #13a7fb;
  border: 1px solid #13a7fb;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  margin-bottom: 10px;
}
main#column_detail .fv .tags li a{
  color: inherit;
  text-decoration: none;
}
main#column_detail .fv .tags li:hover{
  color: #13a7fb;
  background: white;
}




main#column_detail .lead{
  margin-bottom: 40px;
}
main#column_detail .lead h2,
main#column_detail .main h2{
  font-size: 24px;
  position: relative;
  padding: 5px 0 5px 20px;
  margin: 80px 0 40px;
  font-weight: 500;
  background: #eafdff;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .lead h2{
  margin: 40px 0 20px;
}
main#column_detail .main h2::before,
main#column_detail .lead h2::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  left: 0;
  background: linear-gradient(180deg, #0fa8fb, #80efc8);
  top: 0;
}
main#column_detail .main h2 strong{
  font-weight: 500;
}
main#column_detail .lead p{
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .mokuji{
  border: 8px solid #f2f2f2;
  padding: 15px 25px 5px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .mokuji h2{
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
}
main#column_detail .mokuji ol{
  list-style: none;
  counter-reset: item;
}
main#column_detail .mokuji ol li{
  counter-increment: item;
  margin-bottom: 10px;
  position: relative;
  padding-left: 2em;
}
main#column_detail .mokuji ol li::before{
  content: counter(item, decimal-leading-zero) ".";
  position: absolute;
  top: 0;
  left: 0;
  color: #13a7fb;
  font-size: 18px;
}

main#column_detail .mokuji ol li a{
  text-decoration: none;
  font-size: 18px;
  color: #13a7fb;
}
main#column_detail .mokuji ol li a:hover{
  opacity: 0.8;
  text-decoration: underline;
}

main#column_detail .cta,
aside#column-list .cta{
  display: block;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
aside#column-list .cta{
  margin: 20px auto;
  width: 92%;
  max-width: 450px;
}
main#column_detail .cta .cta-back,
aside#column-list .cta .cta-back{
  margin: 0;
  width: 100%;
}
main#column_detail .cta .btn1,
aside#column-list .cta .btn1{
  position: absolute;
  width: 33%;
  left: 10%;
  bottom: 8%;
}
main#column_detail .cta .btn2,
aside#column-list .cta .btn2{
  position: absolute;
  width: 33%;
  left: 48%;
  bottom: 8%;
}
main#column_detail .cta a img,
aside#column-list .cta a img{
  width: 100%;
  margin: 0;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}
main#column_detail .cta a img:hover,
main#column_detail .cta a img:hover{
  filter: brightness(0.7);
  transform: scale(1.07);
}




main#column_detail .main h3{
  position: relative;
  font-size: 20px;
  padding-left: 20px;
  margin: 20px 0 10px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .main h3::before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 15px solid;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
main#column_detail .main h3 strong{
  font-weight: 500;
}
main#column_detail .main p{
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .main p img{
  width: 100%;
  margin: 20px auto;
  display: block;
  max-width: 550px;
  object-fit: cover;
}
main#column_detail .main table{
  margin: 20px 0;
  width: 100%;
  border-collapse: collapse;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail .main table td{
  font-size: 16px;
  padding: 4px;
  border: 1px solid #808080;
}
main#column_detail .main table th{
  text-align: center;
  font-size: 16px;
  color: white;
  background: #13a7fb;
  border: 1px solid #808080;
  padding: 4px 0;
}
main#column_detail .main ul{
  list-style: none;
  margin: 1em 0;
  line-height: 2;
}
main#column_detail .main ol{
  margin: 1em 0;
  line-height: 2;
  padding-left: 1em;
}
main#column_detail .main ul li{
  position: relative;
  padding-left: 1em;
}
main#column_detail .main ul li::before{
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}


main#column_detail #director{
  margin-top: 40px;
  background: #effaff;
  padding: 20px;
  font-family: Consolas, "Courier New", Menlo, Monaco,  "Hiragino Sans", "Hiragino Kaku Gothic ProN",  Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
main#column_detail #director .head{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d1d7da;
}
main#column_detail #director .head > img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

main#column_detail #director h2{
  font-size: 12px;
  font-weight: bold;
  width: 4em;
  text-align: center;
  border: 1px solid;
  padding: 3px 0;
}
main#column_detail #director .name{
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
main#column_detail #director .share{
  margin-left: auto;
}
main#column_detail #director .share p{
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}
main#column_detail #director .share ul{
  list-style: none;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  align-items: center;
}
main#column_detail #director .share ul li{
  width: 35px;
  height: 35px;
}
main#column_detail #director .share ul li img{
  display: block;
  margin: auto;
  width: 30px;
  height: 30px;
}
main#column_detail #director .share ul li img:hover{
  opacity: 0.7;
}
main#column_detail #director p.desc{
  font-size: 16px;
  line-height: 1.8;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}


/* 関連記事 */
#relation,
#popular{
  margin-top: 60px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
}
#relation h2,
#popular h2{
  font-size: 24px;
  font-weight: bold;
  width: 6em;
  margin: 0 auto 20px;
  text-align: center;
}
#relation .related-columns .related-column,
#popular .related-columns .related-column{
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
#relation .related-columns .related-column li,
#popular .related-columns .related-column li{
  width: 32%;
  padding: 10px;
  border: 1px solid #cbc1cb;
  border-radius: 10px;
}
#relation .related-columns .related-column li a,
#popular .related-columns .related-column li a{
  text-decoration: none;
}
#relation .related-columns .related-column li a img,
#popular .related-columns .related-column li a img{
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}
#relation .related-columns .related-column li a .related-info p,
#popular .related-columns .related-column li a .related-info p{
  color: #0fa8fb;
  border: 1px solid #0fa8fb;
  margin-bottom: 10px;
  display: inline-block;
  padding: 4px;
  font-size: 14px;
}
#relation .related-columns .related-column li a .related-info h3,
#popular .related-columns .related-column li a .related-info h3{
  font-size: 20px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.related-swiper{
  width: 100%;
  padding: 20px 20px 40px;
}
.related-swiper .swiper-slide{
  background: #fff;
  border: 1px solid #cbc1cb;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
}
.related-swiper .swiper-slide a{
  text-decoration: none;
  display: block;
}
.related-swiper .swiper-slide img{
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 10px;
}
.related-swiper .related-info p.category{
  color: #0fa8fb;
  border: 1px solid #0fa8fb;
  margin-bottom: 10px;
  display: inline-block;
  padding: 2px;
  font-size: 12px;
}
.related-swiper .related-info h3{
  font-size: 16px;
  color: black;
  font-weight: bold;
}
.related-swiper .swiper-pagination{
    bottom: 10px;
}
.related-swiper .swiper-button-next,
.related-swiper .swiper-button-prev{
  background: #1f2c5c;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding-top: 1px;
  top: 45%;
}
.related-swiper .swiper-button-next{
  right: 1%;
}
.related-swiper .swiper-button-prev{
  left: 1%;
}
.related-swiper .swiper-button-next::after,
.related-swiper .swiper-button-prev::after{
  font-size: 16px;
}
.swiper-horizontal{
  padding: 0 20px !important;
}
.swiper-wrapper{
  padding-bottom: 50px;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction{
  top: auto;
  bottom: 10px;
}
.related-swiper .related-info p.time{
  color: black;
  font-size: 12px;
  margin-top: 1em;
}



main#column_detail aside{
  width: 22%;
  position: sticky;
  top: 100px;
  height: 100%;
}
main#column_detail .side-cta{
  position: relative;
  margin-bottom: 10px;
}
main#column_detail .side-cta .back{
  width: 100%;
}
main#column_detail .side-cta .btn1,
main#column_detail .side-cta .btn2{
  position: absolute;
  left: 8%;
  bottom: 10%;
  width: 80%;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}
main#column_detail .side-cta .btn1{
  bottom: 2%;
  width: 57%;
  left: 40%;
}
main#column_detail .side-cta .btn1:hover,
main#column_detail .side-cta .btn2:hover{
  transform: scale(1.07);
  filter: brightness(0.7);
}



main#column_detail .others{
  margin-top: 40px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  background: #eafdff;
  padding: 15px;
}
main#column_detail .others h2{
  font-size: 20px;
  padding-left: 15px;
  position: relative;
  margin-top: 20px;
}
main#column_detail .others h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(180deg, #0fa8fb, #80efc8);
}
main#column_detail aside .others .populars{
  list-style: none;
  width: 100%;
  margin-top: 20px;
}
main#column_detail aside .others .populars li{
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 15px 10px;
}
main#column_detail aside .others .populars li a{
  text-decoration: none;
  color: black;
}
main#column_detail aside .others .populars li a img{
  width: 100%;
}
main#column_detail aside .others .populars li a > div .category{
  color: #0fa8fb;
  border: 1px solid #0fa8fb;
  display: inline;
  padding: 2px;
  font-size: 12px;
}
main#column_detail aside .others .populars li a > div h3{
  font-size: 16px;
  margin: 10px 0;
  font-weight: bold;
}
main#column_detail aside .others .populars li a > div .time{
  font-size: 14px;
}

main#column_detail .others .category_list{
  list-style: none;
  margin-top: 10px;
  display: flex;
  column-gap: 15px;
  flex-wrap: wrap;
}
main#column_detail .others .category_list li{
  background: white;
  margin-bottom: 10px;
  padding: 0 1em;
  border-radius: 15px;
  border: 1px solid #666666;
  color: #666666;
}
main#column_detail .others .category_list li a{
  text-decoration: none;
  color: inherit;
}
main#column_detail .others .category_list li:hover{
  border: 1px solid #13a7fb;
  background: #13a7fb;
  color: white;
}
main#column_detail a.back{
  display: block;
  text-align: center;
  text-decoration: none;
  color: #0e9deb;
  font-size: 16px;
  margin: 10px auto;
  width: 8em;
}
main#column_detail a.back:hover{
  text-decoration: underline;
  opacity: 0.7;
}

main#column_detail #next-prev{
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 30px 0;
}
main#column_detail #next-prev .line{
  width: 3px;
  background: #f2f2f2;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 50%;
  top: 50%;
}
main#column_detail #next-prev li{
  width: 42%;
  display: flex;
  column-gap: 20px;
  align-items: center;
}
main#column_detail #next-prev li .arrow{
  text-decoration: none;
  color: white;
  background: linear-gradient(90deg, #0fa8fb, #60b2d2);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  padding: 2px 0 0 2px;
  text-align: center;
  font-weight: bold;
}
main#column_detail #next-prev li .desc{
  flex: 1;
}
main#column_detail #next-prev li .desc p{
  text-align: center;
  font-size: 16px;
}
main#column_detail #next-prev li .desc p.title{
  text-align: left;
  font-weight: bold;
  height: 3em;
}
main#column_detail #next-prev li .desc img{
  width: 100%;
  height: 180px;
  object-fit: cover;
}
main#column_detail #next-prev li a:hover{
  opacity: 0.7;
}




@media screen and (max-width: 768px){
  main#column_detail{
    width: 92%;
    max-width: 450px;
    padding: 0 0 30px 0;
  }
  main#column_detail .fv .share li p{
    top: auto;
    bottom: -30px;
    left: -210px;
  }
  main#column_detail article{
    width: 100%;
  }
  main#column_detail .fv,
  main#column_detail .lead{
    margin-bottom: 30px;
  }
  main#column_detail .fv .category{
    font-size: 12px;
  }
  main#column_detail .fv h1{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 24px;
  }
  main#column_detail .fv .share li{
    width: 30px;
    height: 30px;
  }
  main#column_detail .fv .share a img,
  main#column_detail .fv .share img{
    width: 25px;
    height: 25px;
  }
  main#column_detail .mokuji{
    padding: 15px 15px 5px;
  }
  main#column_detail .lead h2,
  main#column_detail .main h2{
    margin: 50px 0 20px;
    font-size: 22px;
  }
  main#column_detail .lead h2{
    margin: 30px 0 20px;
  }
  main#column_detail .main p img{
    max-width: 100%;
  }

  main#column_detail .main h3{
    font-size: 18px;
  }
  main#column_detail #director .head > img{
    width: 80px;
    height: 80px;
  }
  main#column_detail #director .head .text{
    flex: 1;
  }
  main#column_detail #director h2{
    margin-bottom: 10px;
  }
  main#column_detail #director .name{
    font-size: 16px;
    width: 100%;
  }
  main#column_detail #director p.desc{
    font-size: 14px;
  }
  main#column_detail #director .share{
    margin: 20px 0 0;
  }
  main#column_detail #director .share p{
    font-size: 16px;
    margin-bottom: 15px;
  }
  main#column_detail .cta .btn1,
  aside#column-list .cta .btn1{
    width: 65%;
    left: 3%;
    bottom: auto;
    top: 38%;
  }
  main#column_detail .cta .btn2,
  aside#column-list .cta .btn2{
    width: 65%;
    left: 3%;
    bottom: auto;
    top: 70%;
  }
  #relation,
  #popular{
    margin: 30px 0;
  }
  main#column_detail #next-prev{
    margin-bottom: 10px;
  }
  main#column_detail #next-prev li{
    width: 47%;
  }
  main#column_detail #next-prev li .desc img{
    height: 150px;
  }
  main#column_detail .sp-back{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  main#column_detail .sp-back .text{
    text-decoration: none;
    color: #0e9deb;
    font-size: 16px;
  }
  main#column_detail .sp-back .arrow{
    background: linear-gradient(90deg, #0fa8fb, #60b2d2);
    color: white;
    text-align: center;
    text-decoration: none;
    display: block;
    width: 35px;
    height: 35px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    padding-top: 2px;
  }
  .related-swiper .swiper-button-next{
    right: 6%;
  }
  .related-swiper .swiper-button-prev{
    left: 6%;
  }
  main#column_detail .fix-cta{
    background: linear-gradient(180deg, #bf150d, #e91c17);
    width: 90%;
    position: fixed;
    bottom: 15px;
    z-index: 1000;
    padding: 10px 0 10px 1em;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
    max-width: 450px;
    opacity: 0;
    transition: opacity 1s ease;
  }
  main#column_detail .fix-cta.show{
    opacity: 1;
  }
  main#column_detail .fix-cta a{
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

}
/* コラム詳細ここまで */

/* コラム一覧関連 */
aside#column-list{
  margin-top: 60px;
}
aside#column-list #popular-tag{
  background: linear-gradient(90deg, #078ffb, #2db6d1);
}
aside#column-list #popular-tag > div{
  margin: auto;
  width: 90%;
  max-width: 1200px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 60px 0;
}
aside#column-list #popular-tag .title{
  color: white;
  font-weight: bold;
  width: 40%;
}
aside#column-list #popular-tag .title .en{
  font-size: 18px;
  font-weight: bold;
}
aside#column-list #popular-tag .title h2{
  font-size: 40px;
  margin: 20px 0 0 0;
  font-weight: bold;
}
aside#column-list #popular-tag ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-content: center;
  width: 50%;
}
aside#column-list #popular-tag ul li{
  margin-bottom: 10px;
  background: #ffffff;
  color: #008dfb;
  padding: 8px;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid #ffffff;
  font-size: 14px;
}
aside#column-list #popular-tag ul li:hover{
  color: #ffffff;
  background: #008dfb;
  border: 1px solid #008dfb;
}
aside#column-list #popular-tag ul li a{
  color: inherit;
}

aside#column-list #popular-column{
  background: #e3f2fa;
  color: #1d2a51;
}
aside#column-list #popular-column > div{
  margin: auto;
  width: 90%;
  max-width: 1200px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Roboto, "Droid Sans", "Yu Gothic", Meiryo, "Meiryo UI", sans-serif;
  padding: 60px 0;
}
aside#column-list #popular-column > div .en{
  font-size: 18px;
  font-weight: bold;
}
aside#column-list #popular-column > div h2{
  font-size: 40px;
  margin: 20px 0 40px 0;
  font-weight: bold;
}
aside#column-list #popular-column > div .columns{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  counter-reset: item;
}
aside#column-list #popular-column > div .columns li{
  width: 31%;
}
aside#column-list #popular-column > div .columns li a:hover{
  filter: brightness(0.7);
}
aside#column-list #popular-column > div .columns li .image{
  position: relative;
  margin-bottom: 15px;
}
aside#column-list #popular-column > div .columns li .image img{
  width: 100%;
  border-radius: 10px;
}
aside#column-list #popular-column > div .columns li .image::before{
  position: absolute;
  counter-increment: item;
  content: counter(item, decimal);
  background: linear-gradient(90deg, #078ffb, #2db6d1);
  color: white;
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 5px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px 0;
}
aside#column-list #popular-column > div .columns li h3{
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px){
  aside#column-list{
    margin-top: 30px;
  }
  aside#column-list #popular-tag > div,
  aside#column-list #popular-column > div{
    width: 92%;
    max-width: 450px;
    padding: 30px 0;
  }
  aside#column-list #popular-tag .title{
    width: 100%;
    margin-bottom: 30px;
  }
  aside#column-list #popular-tag .title h2{
    margin-top: 10px;
  }
  aside#column-list #popular-tag ul{
    width: 100%;
  }
  aside#column-list #popular-column > div h2{
    margin: 10px 0 30px 0;
  }
  aside#column-list #popular-column > div .columns li{
    width: 100%;
    margin-bottom: 30px;
  }


}

