@charset "UTF-8";
/* 既存変更 */
.t-footer_sub_block_img img {
  border-radius: 10px;
}

/* 追加 */
.t-header_search {
  display: none;
}

.t-main_nav_btn .btnSearch {
  position: relative;
  width: 33px;
  height: 33px;
  border-radius: 4px;
  background: #0046AD url(../img/template/icon_search_w.png) center no-repeat;
  background-size: 17.5px;
  cursor: pointer;
}
.t-main_nav_btn .btnSearch.isActive {
  background: #0046AD url(../img/template/icon_search_close.png) center no-repeat;
  background-size: 17.5px;
}


body {
  color: #222;
}

.spBlock {
  display: none;
}

.spNone {
  display: block;
}

.breadcrumb--new {
  width: 100%;
  background: #EEE;
}

.breadcrumb__inner {
  width: calc(100% - 40px);
  max-width: 1056px;
  margin: 0 auto;
  padding: 8px 0;
}
.breadcrumb__list li {
  display: inline-block;
  margin-right: 18px;
}
.breadcrumb__list li a {
  color: #1D26F9;
}
.breadcrumb__list li span {
  color: #CCC;
}

.top, .flexContent, .main {
  position: relative;
}

.searchBox {
  /* display: none; */
  z-index: 101;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  height: 0; /* 初期状態は非表示なので高さを0に設定 */
  overflow: hidden; /* 高さが0の時に内容が見えないようにする */
  background: rgba(0, 0, 0, 0.9019607843);
  transition: height 0.5s ease; /* 高さの変化をアニメーション化 */
}
.searchBox.isActive {
  /* display: block; */
  height: 100vh; /* アクティブ時は高さを画面全体に広げる */
}

.searchBox__form {
  display: flex;
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
  padding: 140px 20px 0 20px;
}
.searchBox__form input {
  width: 100%;
  max-width: 534px;
  height: 64px;
  background: #222222;
  color: #FFF;
  text-align: center;
  border: 2px solid #FFF;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.searchBox__form button {
  position: relative;
  width: 64px;
  height: 64px;
  border-top: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  border-right: 2px solid #FFF;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  background: #0046AD;
}
.searchBox__form button img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 21px;
}

.flexContent {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 40px);
  max-width: 1056px;
  margin: 0 auto 150px;
}
.flexContent .main {
  max-width: 680px;
  margin-right: 4.8vw;
}

.main, .sidebar {
  width: 100%;
  padding-top: 60px;
}

#top_main {
  background: url(../img/top/bg_main.jpg) top center no-repeat;
  background-size: 100% auto;
}
.top__inner {
  width: calc(100% - 40px);
  max-width: 1056px;
  margin: 0 auto 150px;
}
.top__titleBox {
  width: 100%;
  max-width: 408px;
  padding-top: 14.5vw;
  margin-left: auto;
  margin-bottom: 172px;
}
.top__titleBox h1 img {
  max-width: 100%;
  margin-bottom: 20px;
}
.top__titleBox h1 span {
  display: block;
  color: #FFF;
  font-size: 20px;
}

.desc {
  max-width: 1056px;
  margin: 0 auto 100px;
  padding: 60px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}
.desc h2 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.desc h2 + p {
  margin-bottom: 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
}
.desc__form {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.desc__form input {
  width: 100%;
  max-width: 482px;
  border: 2px solid #4898DF;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.desc__form button {
  width: 100%;
  max-width: 44px;
  height: 44px;
  border: none;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  text-align: center;
  background: #4898DF;
}
.desc__form button img {
  max-width: 20px;
}
.desc__list {
  margin-bottom: 30px;
}
.desc__list li {
  display: inline-block;
  padding: 0 10px;
  border-radius: 14px;
  background: #2982E8;
  line-height: 28px;
}
.desc__list li a {
  color: #FFF;
}
.desc__more {
  display: block;
  max-width: 170px;
  margin: 0 auto;
  border: 1px solid #2982E8;
  border-radius: 17px;
  background: #FFF;
  color: #2982E8;
  font-size: 14px;
  line-height: 34px;
  text-align: center;
}
.desc__more:visited {
  color: #2982E8;
}

.topSection {
  width: calc(100% - 40px);
  max-width: 1056px;
  margin: 0 auto 150px;
}
.topSection__title {
  margin-bottom: 60px;
  font-size: 48px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
}
.topSection__title span {
  font-size: 24px;
}
.topSection__category {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.topSection__category li {
  width: 100%;
  max-width: 33%;
  margin-bottom: 60px;
}
.topSection__category li p {
  color: #222;
  font-size: 16px;
  text-align: center;
  line-height: 26px;
}
.topSection__category li p span {
  display: block;
  margin-bottom: 15px;
  color: #2982E9;
  font-size: 18px;
}
.topSection__category__icon {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 30px;
  border-radius: 50%;
  background: #F2ECFF;
}
.topSection__category__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 107px;
}
.topSection__spacial {
  padding: 100px 0;
  background: #F0F6F7;
}
.topSection__spacial a {
  display: block;
  max-width: 1057px;
  margin: 0 auto;
}
.topSection__spacial__box {
  position: relative;
  display: flex;
  max-width: 1057px;
  margin: 0 auto;
}
.topSection__spacial__img {
  width: 100%;
  max-width: 37.6%;
}
.topSection__spacial__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.topSection__spacial__txt {
  width: 100%;
  max-width: 68.1%;
  padding: 46px 40px 40px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #FFF;
}
.topSection__spacial__txt p:not(.topSection__spacial__title) {
  font-size: 16px;
  line-height: 26px;
  color: #222;
}
.topSection__spacial__title {
  margin-bottom: 20px;
  font-size: 20px;
  color: #2982E9;
}
.topSection__slider {
  position: relative;
  max-width: 948px;
  margin: 0 auto;
}
.topSection__slider .slick-prev, .topSection__slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 50%;
  line-height: 300px;
  overflow: hidden;
}
.topSection__slider .slick-prev.slick-disabled, .topSection__slider .slick-next.slick-disabled {
  display: none !important;
}
.topSection__slider .slick-prev {
  left: -84px;
  background: rgba(240, 246, 247, 0.6) url(../img/template/icon_arrow_tri_l.png) center no-repeat;
  background-size: 20px;
}
.topSection__slider .slick-next {
  right: -84px;
  background: rgba(240, 246, 247, 0.6) url(../img/template/icon_arrow_tri_r.png) center no-repeat;
  background-size: 20px;
}
.topSection__slider .slick-dots {
  margin: 40px auto 0;
  text-align: center;
}
.topSection__slider .slick-dots li {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 7.5px;
}
.topSection__slider .slick-dots li button {
  width: 100%;
  height: 100%;
  border: 4px solid #2982E9;
  border-radius: 50%;
  background: #FFF;
  line-height: 100px;
  overflow: hidden;
}
.topSection__slider .slick-dots li.slick-active button {
  background: #2982E9;
}
.topSection__box {
  max-width: 300px;
  margin-right: 24px;
}
.topSection__box:last-of-type {
  margin-right: 0;
}
.topSection__box__rank {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 42px;
}
.topSection__box__img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.topSection__box__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topSection__box__txt {
  position: relative;
  padding: 34px 20px 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #F0F6F7;
  color: #222;
}
.topSection__box__txt time {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}
.topSection__box__category {
  margin-bottom: 15px;
  color: #E57B1E;
  font-size: 14px;
}
.topSection__box__title {
  font-size: 16px;
  line-height: 26px;
}

.main {
  max-width: 980px;
  margin: 0 auto;
  font-size: 16px;
}
.main__inner {
  width: 100%;
}
.main__category {
  margin-bottom: 10px;
  color: #E57B1E;
  /* font-weight: bold; */
}
.main__title {
  margin-bottom: 20px;
  font-size: 32px;
  /* font-weight: bold; */
}
.main__mv {
  margin: 20px auto;
}
.main__mv img {
  max-width: 100%;
}
.main__desc {
  margin-bottom: 60px;
  font-size: 16px;
  line-height: 30px;
}
.main__articleNav {
  margin-bottom: 100px;
  padding: 30px;
  border-radius: 20px;
  background: #F0F6F7;
}
.main__articleNav li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 28px;
}
.main__articleNav li a {
  color: #1D26F9;
  /* font-weight: bold; */
  transition: 0.3s;
}
.main__articleNav li a img {
  display: inline-block;
  margin-left: 8px;
}
.main__articleNav li a:hover {
  opacity: 0.6;
}
.main__articleNav li:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1D26F9;
}
.main__articleNav li:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 22px;
  color: #FFF;
  /* font-weight: bold; */
  text-align: center;
}
.main__articleNav li:nth-child(1):after {
  content: "1";
}
.main__articleNav li:nth-child(2):after {
  content: "2";
}
.main__articleNav li:nth-child(3):after {
  content: "3";
}
.main__articleNav li:nth-child(4):after {
  content: "4";
}
.main__articleNav li:nth-child(5):after {
  content: "5";
}
.main__articleNav li:nth-child(6):after {
  content: "6";
}
.main__articleNav li:nth-child(7):after {
  content: "7";
}
.main__articleNav li:nth-child(8):after {
  content: "8";
}
.main__articleNav li:nth-child(9):after {
  content: "9";
}
.main__articleNav li:nth-child(10):after {
  content: "10";
}
.main__articleNav li:last-of-type {
  margin-bottom: 0;
}
.main__list {
  margin-bottom: 30px;
  border-top: 1px solid #DDD;
}
.main__list__box {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-bottom: 1px solid #DDD;
  transition: 0.3s;
}
.main__list__box:hover {
  background: #F0F6F7;
}
.main__list__box img {
  display: block;
  width: 100%;
  max-width: 220px;
  border: 1px solid #DDD;
  border-radius: 10px;
}
.main__list__box h3 {
  margin-bottom: 15px;
  color: #222;
  font-size: 18px;
  /* font-weight: bold; */
}
.main__list__detail {
  width: 100%;
  padding-left: 2.7vw;
  color: #222;
}
.main__list__category {
  margin-bottom: 5px;
  color: #E57B1E;
  /* font-weight: bold; */
}
.main__list__tag li {
  display: inline-block;
  border-radius: 10px;
  background: #F0F6F7;
  color: #1D26F9;
}
.main__list__tag li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 11px;
}
.main__section {
  margin-bottom: 100px;
}
.main__section h3 {
  margin-bottom: 30px;
  font-size: 28px;
  /* font-weight: bold; */
}
.main__section__attachment {
  display: block;
  max-width: 680px;
  margin: 42px auto 20px;
}
.main p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 36px;
}

.pager {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.pager__prev, .pager__next {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(29, 38, 249, 0.3);
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}
.pager__prev:hover, .pager__next:hover {
  background: #F0F6F7;
}
.pager__prev img, .pager__next img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pager__prev {
  margin-right: 10px;
}
.pager__next {
  margin-left: 10px;
}
.pager__list {
  width: 100%;
  text-align: center;
}
.pager__list li {
  display: inline-block;
  margin-right: 10px;
  line-height: 36px;
  text-align: center;
  transition: 0.3s;
}
.pager__list li:hover {
  background: #F0F6F7;
}
.pager__list li:not(.noNumber) {
  width: 100%;
  max-width: 36px;
  border: 1px solid #1D26F9;
  border-radius: 10px;
  color: #1D26F9;
}
.pager__list li.isCurrent {
  background: #1D26F9;
}
.pager__list li.isCurrent a {
  color: #FFF;
}
.pager__list li:last-of-type {
  margin-right: 0;
}
.pager__list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.sidebar {
  max-width: 306px;
}
.sidebar__inner {
  width: 100%;
}
.sidebar__title {
  position: relative;
  padding-left: 21px;
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 30px;
}
.sidebar__title:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  background: #0046AD;
  border-radius: 4px;
}
.sidebar__title span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 19px;
}
.sidebar__link {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #DDD;
}
.sidebar__link li:last-of-type {
  margin-bottom: 0;
}
.sidebar__link__box {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  transition: 0.3s;
}
.sidebar__link__box:hover {
  background: #F0F6F7;
}
.sidebar__link__box img, .sidebar__link__box div {
  width: 100%;
}
.sidebar__link__box img {
  margin-right: 1.4vw;
  max-width: 120px;
  border-radius: 10px;
}
.sidebar__link__box div:not(.sidebar__link__rank) p:not(.sidebar__link__category) {
  color: #222;
  font-size: 13px;
}
.sidebar__link__box p {
  /* font-weight: bold; */
}
.sidebar__link__category {
  margin-bottom: 4px;
  color: #E57B1E;
  font-size: 12px;
}
.sidebar__link__rank {
  position: relative;
  max-width: 24px;
  margin-left: 1.25vw;
}
.sidebar__link__rank p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #222;
  font-size: 42px;
  /* font-weight: bold; */
}
.sidebar .sliderSide {
  position: relative;
}
.sidebar .sliderSide__item {
  max-width: 306px;
}
.sidebar .sliderSide__item img {
  max-width: 100%;
  border-radius: 10px;
}
.sidebar .sliderSide .slick-prev, .sidebar .sliderSide .slick-next {
  position: absolute;
  bottom: -7.25px;
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  line-height: 100px;
  overflow: hidden;
}
.sidebar .sliderSide .slick-prev {
  left: 0;
  background: rgba(240, 246, 247, 0.6) url(../img/template/icon_arrow_tri_l.png) center no-repeat;
  background-size: 15px;
}
.sidebar .sliderSide .slick-next {
  right: 0;
  background: rgba(240, 246, 247, 0.6) url(../img/template/icon_arrow_tri_r.png) center no-repeat;
  background-size: 15px;
}
.sidebar .sliderSide .slick-dots {
  margin: 30px auto 0;
  text-align: center;
}
.sidebar .sliderSide .slick-dots li {
  display: inline-block;
  margin: 0 15px;
  width: 15px;
  height: 15px;
}
.sidebar .sliderSide .slick-dots li button {
  width: 100%;
  height: 100%;
  border: 4px solid #2982E8;
  border-radius: 50%;
  background: #FFF;
  line-height: 100px;
  overflow: hidden;
}
.sidebar .sliderSide .slick-dots li.slick-active button {
  background: #2982E8;
}

.about {
  border-bottom: 1px solid #DDD;
}

.about__inner {
  display: flex;
  justify-content: space-between;
  max-width: 980px;
  margin: 0 auto 100px;
  padding: 45px 40px;
  border-radius: 20px;
  background: #1D26F9;
  border-bottom: 1px solid #DDD;
  align-items: center;
}
.about__inner p {
  margin-bottom: 0;
  color: #FFF;
  font-size: 20px;
  line-height: 40px;
}
.about__inner a {
  display: block;
  width: 100%;
  max-width: 250px;
  height: 40px;
  border-radius: 20px;
  background: #FFF url(../img/template/icon_arrow_r.png) center right 20px no-repeat;
  font-size: 16px;
  text-align: center;
  line-height: 40px;
}

.about__inner .about__btn {
  /* font-weight: bold; */
}

.links {
  padding-bottom: 150px;
}
.links__inner {
  max-width: 980px;
  margin: 0 auto;
}
.links__title {
  position: relative;
  padding-left: 21px;
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 30px;
}
.links__title:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  width: 5px;
  height: 100%;
  background: #0046AD;
  border-radius: 4px;
}
.links__title span {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  line-height: 19px;
}
.links__box {
  position: relative;
  padding-bottom: 0px;
  margin-top: 32px;
  margin-bottom: 35px;
  border-bottom: 1px solid #DDD;
}
.links__box:first-of-type .links__title {
  margin-bottom: 0;
}
/* .links__box:last-of-type {
  border-bottom: none;
} */
.links__sns {
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
  transform: translateY(-50%);
}
.links__sns li {
  display: inline-block;
  margin-right: 60px;
}
.links__sns li:last-of-type {
  margin-right: 0;
}
.links__sns li a img {
  max-width: 36px;
}
.links__tag li {
  display: inline-block;
  border-radius: 10px;
  background: #F0F6F7;
}
.links__tag li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 11px;
}
.links__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.links__flex li {
  margin-right: 1.9vw;
}
.links__flex li img {
  max-width: 100%;
}
.links__flex li:last-of-type {
  margin-right: 0;
}
.links__flexBox {
  border-radius: 10px;
  background: #F0F6F7;
}
.links__flexBox__img img {
  width: 100%;
  object-fit: cover;
}
.links__flexBox__tag {
  margin-bottom: 10px;
  padding-top: 20px;
  padding-left: 20px;
  color: #E57B1E;
  font-size: 14px;
}
.links__flexBox__title {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #222;
}

@media screen and (max-width: 901px) {
  .spBlock {
    display: block;
  }
  .spNone {
    display: none;
  }
  .t-header_search {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    cursor: pointer;
  }
  .t-header_search .btnSearch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/template/icon_search.png) center no-repeat;
    background-size: 23.5px;
    cursor: pointer;
  }
  .t-header_search .btnSearch.isActive {
    background: url(../img/template/icon_search_close_sp.png) center no-repeat;
    background-size: 23.5px;
  }
  .t-header_search .btnSearch {
    position: relative;
    height: 100%;
  }
  /* .t-header_search .btnSearch img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 23.5px;
  } */
  .breadcrumb__inner {
    padding: 3px 0;
  }
  .breadcrumb__list li {
    font-size: 10px;
  }
  #top_main {
    background: url(../img/top/bg_main_sp.png) top center no-repeat;
    background-size: 100% auto;
  }
  .top__inner {
    margin: 0 auto 86px;
  }
  .top__titleBox {
    margin-bottom: 30px;
    padding-top: 65.4vw;
    max-width: none;
    text-align: center;
  }
  .top__titleBox h1 img {
    margin-bottom: 15px;
  }
  .top__titleBox h1 span {
    font-size: 17px;
  }
  .desc {
    width: calc(100% - 40px);
    padding: 30px 23px;
  }
  .desc h2 {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 24px;
  }
  .desc h2 + p {
    margin-bottom: 30px;
    font-size: 13px;
    line-height: 24px;
  }
  .desc__form input {
    max-width: calc(100% - 40px);
  }
  .desc__form button {
    width: 40px;
    height: 40px;
  }
  .desc__list {
    margin-bottom: 20px;
    text-align: center;
  }
  .desc__list li {
    margin-bottom: 10px;
  }
  .desc__more {
    line-height: 32.5px;
    /* font-weight: bold; */
  }
  .topSection {
    margin: 0 auto 75px;
  }
  .topSection__title {
    margin-bottom: 30px;
    font-size: 29px;
    line-height: 40px;
  }
  .topSection__title span {
    font-size: 17px;
  }
  .topSection__slider .slick-prev, .topSection__slider .slick-next {
    bottom: 0;
    transform: translateY(0);
  }
  .topSection__slider .slick-list {
    overflow: visible;
  }
  .topSection__category li {
    max-width: 50%;
    margin-bottom: 30px;
  }
  .topSection__category li p {
    font-size: 13px;
  }
  .topSection__category li p span {
    margin-bottom: 10px;
  }
  .topSection__category__icon {
    width: 130px;
    height: 130px;
  }
  .topSection__category__icon img {
    max-width: 75px;
  }
  .topSection__box {
    max-width: 43.4vw;
    margin-right: 1.2vw;
  }
  .topSection__box__rank {
    top: 17.5px;
    right: 10.5px;
    font-size: 26px;
  }
  .topSection__spacial {
    padding: 50px 7.7vw;
  }
  .topSection__spacial__box {
    display: block;
  }
  .topSection__spacial__img {
    max-width: none;
  }
  .topSection__spacial__img img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
  }
  .topSection__spacial__txt {
    max-width: none;
    padding: 20px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .topSection__spacial__txt p:not(.topSection__spacial__title) {
    font-size: 13px;
    line-height: 18px;
  }
  .topSection__spacial__title {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .flexContent {
    display: block;
    width: 100%;
    margin: 0 auto 85px;
  }
  .flexContent .main {
    max-width: none;
    margin-right: 0;
    margin-bottom: 50px;
  }
  .flexContent .main__list {
    margin-bottom: 35px;
  }
  .flexContent .sidebar {
    max-width: none;
  }
  .main {
    font-size: 14px;
  }
  .main__category {
    max-width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
  .main__title {
    max-width: calc(100% - 40px);
    margin: 0 auto 20px;
    font-size: 26px;
  }
  .main__desc {
    max-width: calc(100% - 40px);
    margin: 0 auto 30px;
  }
  .main__list__box {
    padding: 25px 20px;
  }
  .main__list__box h3 {
    margin-bottom: 18px;
    font-size: 14px;
  }
  .main__list__box img {
    border-radius: 5px;
  }
  .main__list__category {
    margin-bottom: 7.5px;
    font-size: 12px;
  }
  .main__list__tag {
    font-size: 12px;
  }
  .main__list__tag li {
    border-radius: 5px;
  }
  .main__list__tag li a {
    padding: 3px 10px;
  }
  .main__mv {
    max-width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
  .main__articleNav {
    max-width: calc(100% - 40px);
    margin: 0 auto 60px;
  }
  .main__section {
    max-width: calc(100% - 40px);
    margin: 0 auto 60px;
  }
  .pager {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .pager__prev, .pager__next {
    border-radius: 5px;
  }
  .pager__list li:not(.noNumber) {
    border-radius: 5px;
  }
  .pager__list li {
    margin-right: 3px;
  }
  .sidebar__title {
    max-width: calc(100% - 40px);
    margin: 0 auto 12.5px;
  }
  .sidebar__link {
    margin-bottom: 25px;
    padding-bottom: 16.5px;
  }
  .sidebar__link__box {
    padding: 12.5px 0;
  }
  .sidebar__link__box div:not(.sidebar__link__rank) p:not(.sidebar__link__category) {
    font-size: 14px;
  }
  .sidebar__link__box img {
    max-width: 115px;
    border-radius: 5px;
  }
  .sidebar__link__box p {
    font-size: 14px;
  }
  .sidebar__link__category {
    margin-bottom: 7.5px;
  }
  .sidebar__link__rank p {
    font-size: 40px;
  }
  .sidebar__link li {
    padding: 0 20px;
  }
  .sidebar .sliderSide {
    width: calc(100% - 40px);
    margin: 0 auto 25px;
    overflow-x: hidden;
  }
  .sidebar .sliderSide__item {
    max-width: calc(100vw - 40px);
  }
  .sidebar .sliderSide__item img {
    border-radius: 5px;
  }
  .about__inner {
    display: block;
    padding: 20px 10px;
    border-radius: 10px;
    text-align: center;
}
  .about__inner p {
    margin-bottom: 12.5px;
    font-size: 19px;
    line-height: 30px;
  }
  .about__inner a {
    max-width: 175px;
    margin: 0 auto;
  }
  .about__inner a .about__btn {
    /* font-weight: bold; */
}
  .links__box {
    padding: 0px;
    margin-top: 20px;
    /* margin-bottom: 30px; */
    margin-bottom: 10px;
  }
  .links__box:first-of-type .links__title {
    margin-bottom: 25px;
  }
  .links__sns {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: auto;
    transform: none;
  }
}/*# sourceMappingURL=style.css.map */