@charset "UTF-8";


/*-------------------------------------------------*/
/**
 * 共通部分
**/
[id="info"] footer {
  border-top: 1px solid #e9eced;
}

/*-------------------------------------------------*/
/**
 * 見出し
**/

/* TITLE01 */
.TITLE01 {
  color: #062351;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px;
  padding: 0;
}
@media only screen and (max-width: 767.98px) {
  .TITLE01 {
    font-size: 24px;
  }
}

/* TITLE02 */
.TITLE02 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}
.TITLE02 i {
  display: inline-block;
  width: 56px;
}
.TITLE02 i img {
  max-width: none;
  width: 48px;
  height: auto;
}
.TITLE02 .eng {
  display: block;
  color: #00245d;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
  padding: 5px 0 0 0;
}
@media only screen and (max-width: 767.98px) {
  .TITLE02 {
    font-size: 16px;
    margin: 0 0 16px;
    padding: 0 var(--basewrap-padding-inline);
  }
  .TITLE02 i {
    width: 32px;
  }
  .TITLE02 i img {
    width: 24px;
    height: auto;
  }
}

/* TITLE03 */
.TITLE03 {
  background: var(--main-c);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 12px;
}
@media only screen and (max-width: 767.98px) {
  .TITLE03 {
    font-size: 18px;
  }
}


/*-------------------------------------------------*/
/**
 * カラム
**/

.info-column {
  --info-column-gap: 32px;
  --info-column-width-center: 768px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--info-column-gap);
  padding: 0 0 50px;
}
@media only screen and (max-width: 959.98px) {
  .info-column {
    --info-column-gap: 20px;
    --info-column-width-center: 640px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--info-column-gap);
  }
}
@media only screen and (max-width: 767.98px) {
  .info-column {
    --info-column-gap: 32px;
    /*--info-column-width-center: 640px;*/
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--info-column-gap);
    padding: 0 0 40px;
  }
}

.columun_center_wrap {
  width: var(--info-column-width-center);
  order: 1;
}

.columun_left_wrap {
  width: calc( (100% - var(--info-column-width-center) - var(--info-column-gap)*2) / 2 );
  order: 0;
}

.columun_right_wrap {
  width: calc( (100% - var(--info-column-width-center) - var(--info-column-gap)*2) / 2 );
  order: 2;
}
@media only screen and (max-width: 767.98px) {
  .columun_center_wrap {
    width: auto;
    order: 0;
  }

  .columun_left_wrap {
    width: auto;
    order: 1;
  }

  .columun_right_wrap {
    width: auto;
    order: 2;
  }
}


/*-------------------------------------------------*/
/**
 * ページング
**/

.paging {
  text-align: right;
  overflow: hidden;
}
.paging li {
  margin: 0 4px;
  line-height: 30px;
  color: var(--font-c);
  font-weight: 700;
  font-size: 16px;
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
.paging li a {
  width: 40px;
  height: 40px;
  background: #fafafa;
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging li a:hover {
  text-decoration: none;
  color: #fff;
  background: var(--main-c);
}
.paging li .current {
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--main-c);
  border-radius: var(--btn-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.paging li .ten, .paging li .nolink {
  padding: 0 8px;
  line-height: 28px;
  font-weight: 700;
  font-size: 16px;
  color: var(--font-c);
  border: 1px solid #e9eced;
  border-radius: 0px;
  display: block;
}
.paging li.prev a, .paging li.prev {
  padding: 0;
  width: 28px;
  line-height: 28px;
  text-align: left;
  text-indent: -9999px;
  background: #fff url("../images/prev01.png") no-repeat center center;
}
.paging li.next a, .paging li.next {
  padding: 0;
  width: 28px;
  line-height: 28px;
  text-align: left;
  text-indent: -9999px;
  background: #fff url("../images/next01.png") no-repeat center center;
}



/*-------------------------------------------------*/
/**
 * 一覧 サイド
**/

/* side item wrapper */
.column_kind_wrap {
  background: #fafafa;
  width: 100%;
  margin: 0 0 15px;
}

/* side category */
.category_part {
  padding: 15px;
}
.category_part li {
  display: block;
  font-size: 14px;
  margin: 0 0 10px;
}
.category_part li::before {
  content: '>';
  margin: 0 10px 0 0;
}

/* side ranking */
/* NOTE: システム書き出し */
.ranking_column {
  display: block;
  border-bottom: 1px solid #e9eced;
  padding: 15px 15px 17px;
}
.ranking_column:last-child {
  border: none;
}
.ranking_column > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.ranking_column p {
  color: var(--font-c);
  font-size: 12px;
}
.ranking_column_img {
  flex-basis: 30%;
}
.ranking_column_img img {
  border-radius: var(--btn-radius);
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.ranking_column_img img[src*="side_rank_"] {
  display: none;/* NOTE: デフォルト不使用 */
  /*border-radius: 50%;*/
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.ranking_column_TITLE {
  flex-basis: calc(70% - 12px);
}
.ranking_column_TITLE img {
  width: 32px;
  height: auto;
}
.ranking_column_TITLE > p {
  font-weight: 700;
}
.ranking_column_TITLE > img + p {
  margin-top: 6px;
}
.ranking_column_TITLE p:last-child {
  font-weight: 100;
  margin-top: 6px;
}


/* side similar */
/* NOTE: システム書き出し */
.similar_column {
  display: block;
  border-bottom: 1px solid #e9eced;
  margin: 0 0 10px;
  padding: 0 0 10px;
}
.similar_column:last-child {
  border: none;
  margin: 0;
}
.similar_column > div {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0 9px;
}

.similar_column_img {
  flex-basis: 25%;
  margin: 0 0 10px;
}
.similar_column_img img {
  margin: 0;
}

.similar_column_TITLE {
  flex-basis: 70%;
}
.similar_column_TITLE > p {
  font-size: 15px;
  font-weight: 700;
}

.similar_column_detail p {
  font-size: 12px;
}


/* 左コンテンツ直下 aタグ */
.columun_right_wrap > a {}
.columun_right_wrap > a > img {
  margin: 0 0 15px;
}


/* sns button */
.column_sns {
  margin: 0 0 15px;
}

/*-------------------------------------------------*/
/**
 * 一覧 中央
**/

/* list */
.columun_list_wrap {
}

/* list item */
.column_wrap {
  display: block;
  border-bottom: 1px solid #e9eced;
  padding: 30px 0;
}
.column_wrap:first-child {
  border-top: 1px solid #e9eced;
}
.column_wrap:last-child {
  border-bottom: none;
}

.column_wrap>* {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.column_wrap .column_img {
  flex-basis: 20%;
}
.column_wrap .column_img img {
  border-radius: var(--btn-radius);
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.column_wrap .column_text {
  flex-basis: calc(80% - 12px);
}
.column_wrap .column_text .column_TITLE {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.column_wrap .column_text > div {
  display: block;
}
.column_wrap .column_text .column_TITLE + div {
  margin: 6px 0 8px;
}
.column_wrap .column_text .column_category {
  display: inline-block;
  color: var(--main-c);
  font-size: 12px;
}
.column_wrap .column_text .column_date {
  display: inline-block;
  font-size: 12px;
}





/*-------------------------------------------------*/
/**
 * 詳細
**/

.column_detail_wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  border-radius: var(--btn-radius);
  border: 1px solid #e9eced;
  line-height: 2;
  margin: 0 0 30px;
  padding: 30px;
}
.column_detail_wrap > div {
  max-width: 100%;
}

.columun_center_wrap .TITLE03 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 15px;
}
.columun_center_wrap .TITLE03 span {
  color: #fff;
}

.column_detail_head_part {
  flex-basis: 100%;
  margin: 0 0 15px;
}
.column_detail_head_part > div {
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.column_detail_head_part > div:first-child + img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}
.column_detail_head_part .column_category {
  color: var(--main-c);
}

.column_detail_main_part {
  width: 100%;
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.column_detail_main_part > h1,
.column_detail_main_part > h2,
.column_detail_main_part > h3,
.column_detail_main_part > h4 {
  flex-basis: 100%;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}
.column_detail_main_part > p {
  flex-basis: 100%;
  font-size: 14px;
}
.column_detail_main_part > div, .column_detail_main_part > div.image {
  margin: 15px 0;
}
.column_detail_main_part > div > h1,
.column_detail_main_part > div > h2,
.column_detail_main_part > div > h3,
.column_detail_main_part > div > h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}
.column_detail_main_part > div > p {
  font-size: 14px;
}


/* center similar */
/* NOTE: システム書き出し */
.column_detail_wrap:has(.similar_column) {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
  gap: 20px;
}
@media only screen and (max-width: 767.98px) {
  .column_detail_wrap:has(.similar_column) {
    gap: 20px;
  }
}
.column_detail_wrap .similar_column {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: calc( (100% - 20px) / 2 );/* 2col */
}
@media only screen and (max-width: 767.98px) {
  .column_detail_wrap .similar_column {
    width: 100%;
  }
}

.column_detail_wrap .similar_column > div {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  margin: 0;
}

.column_detail_wrap .similar_column_img {
  flex-basis: 25%;
}
.column_detail_wrap .similar_column_img img {
  border-radius: var(--btn-radius);
  width: 100%;
  height: auto;
  margin: 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.column_detail_wrap .similar_column_TITLE {
  flex-basis: 70%;
}
.column_detail_wrap .similar_column_TITLE > p {
  color: var(--font-c);
  font-size: 15px;
  font-weight: 700;
}
.column_detail_wrap .similar_column_TITLE p:last-child {
  display: none;
}

.column_detail_wrap .similar_column_detail p {
  font-size: 12px;
}



/*-------------------------------------------------*/
/**
 * サイド部品
**/

.side_TITLE01 {
  border-top: 5px solid var(--main-c);
  border-bottom: 1px solid var(--main-c);
  background: #fff;
  text-align: center;
  width: 100%;
  margin: 0;
  padding: 15px 0;
}
.side_TITLE01 h1,
.side_TITLE01 h2,
.side_TITLE01 h3,
.side_TITLE01 h4 {
  font-size: 18px;
  font-weight: 700;
}
.side_TITLE01 h1 .eng,
.side_TITLE01 h2 .eng,
.side_TITLE01 h3 .eng,
.side_TITLE01 h4 .eng {
  display: block;
  color: #7c7c7c;
  font-size: 12px;
  font-weight: normal;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
}



/*-------------------------------------------------*/
/**
 * コラムのリスト
**/

.list_column {}
.list_column .slick-slide {}


