@charset "utf-8";
/* CSS Document */


/*===============================

    common

================================*/
:root { font-size: 62.5%; }/* 1(r)em = 10px */

div#cont { margin: 0;}

.wrapper {
  box-sizing: border-box;
  font-family:YuGothic , '游ゴシック' , 'Hiragino Kaku Gothic ProN' , 'ヒラギノ角ゴ ProN' , Meiryo , 'メイリオ' , sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 20px auto 0;
  overflow:hidden;
  text-align: left;
  width: 980px;
}

.header { margin: 20px 0; }

/* 太文字 */
.fw-bold { font-weight: 700; }

/* リンク */
.link-normal {
  display: block;
  font-weight: 700;
  text-align: right;
}

.link-normal::before {
  content: "";
  border: 5px solid transparent;
  border-left: 10px solid #052674;
  display: inline-block;
  height: 0;
  width: 0;
}

.link-normal:hover::before { border-left-color: #005580; }

/* 色文字 */
.marker-red {
  color: red;
  font-weight: 700;
}


/*
    見出し
================================*/
.headline_top {
  color: #666;
  font-size: 10px;
  font-weight: 500;
  margin-top: 3px;
  margin-bottom: 10px;
}

.headline_belt {
  background-color: #0076BF;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  margin: 30px 0 20px;
  padding: 5px;
}

.headline_underline {
  border-bottom: solid 2px #469AE3;
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
}


/*===============================

    コンテンツ

================================*/
.container {
  float: right;
  width: 730px;
}

.txtBox {
  font-size: 15px;
  line-height: 1.5;
}

.txtBox + .txtBox { margin-top: 20px; }

.txtList {}

.txtList_item {
  padding-left: 1em;
  text-indent: -1em;
}

.txtList_item + .txtList_item { margin-top: 10px; }

/*
    ラインナップ
================================*/
.lineupBox {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.lineupBox_cont {
  cursor: pointer;
  margin-bottom: 20px;
  width: 350px;
}

.lineupBox_cont:hover {
  opacity: .6;
}

.lineupBox_cont > dd { margin-top: 10px; }

/* dt内リンク */
.lineupBox_link {
  color: inherit;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.lineupBox_link:hover {
  color: inherit;
  text-decoration: none;
}

.lineupBox_link > img { margin-right: 10px; }
.lineupBox_link > span {
  display: block;
  width: 240px;
}

/* 写真下のリスト */
.lineupDescriptionList {}

.lineupDescriptionList_item {
  padding-left: 1em;
  text-indent: -1em;
}

/*===============================

    レスポンシブ

================================*/
@media screen and (max-width:768px){
.wrapper { width: 100%; }

#cont { margin: 0 10px; }

.container {
  float: none;
  width: 100%;
}

.cnslSideNav { display: none; }

.lineupBox_link > span { width: auto; }

}/* @media */

@media screen and (max-width:320px){

.lineupBox_link { flex-wrap: nowrap; }

}/* @media */