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


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

    common

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

* { letter-spacing: 0; }

body {
  color: #3E3A39;
  font-family:YuGothic , '游ゴシック' , 'Hiragino Kaku Gothic ProN' , 'ヒラギノ角ゴ ProN' , Meiryo , 'メイリオ' , sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  height: 100%;
  text-align: left;
  width: 100%;
}


.wrapper {
  margin: 20px auto 0;
  overflow:hidden;
  text-align: left;
  width: 980px;
}

.container {
  float: right;
  width: 730px;
}

/* 三角付きリンク */
.ntc_normalLink {
  display: block;
  padding-left: 15px;
  position: relative;
}

.ntc_normalLink::before {
  border: 5px solid transparent;
  border-left: 10px solid currentColor;
  content: "";
  height: 0;
  position: absolute;
  top: 6px;
  left: 0;
  /*transform: translateY(-50%);*/
  width: 0;
}



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

    index

================================*/
/*
    導入文
================================*/
.ntc_introduction {
  background-color: #ddecfd;
  font-size: 15px;
  line-height: 1.5;
  margin: 30px 0;
  padding: 20px;
}


/*
    記事リスト
================================*/
.ntc_articleList {}

.ntc_articleList_link {
  align-items: flex-start;
  color: #333;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  transition: .3s;
  margin-top: 20px;
}

.ntc_articleList_link:hover {
  color: #333;
  text-decoration: none;
  opacity: .6;
}

.ntc_articleList_num {
  background-color: #88b5e8;
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  padding: 5px;
}

.ntc_articleList_ttl {
  font-size: 16px;
}

.ntc_articleList_subTtl {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
}



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

    下層ページ

================================*/
/*
    トップ画像＆h1
================================*/
.headline_main {
  position: relative;
  z-index: 1;
}

.headline_main_ttl {
  background-color: rgba(255,255,255,.6);
  padding: 10px;
  position: absolute;
  bottom: 8%;
  width: 100%;
  z-index: 2;
}

/* キャッチコピー */
.ntc_catchCopy {
  font-size: 18px;
  font-weight: 700;
  margin: 20px 0;
}

/* h2 */
.ntc_headerTtl {
  border-left: 5px solid #5F4F3D;
  color: #5F4F3D;
  font-size: 18px;
  font-weight: 700;
  margin: 30px 0 20px;
  padding: 5px 10px;
}

/* テキスト */
.ntc_txtBox {
  font-size: 16px;
  line-height: 1.5;
}

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


/*
    内容
================================*/
.ntc_contentsList {}

.ntc_contentsList_item {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 2em;
  text-indent: -2em;
}

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


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

    ★★レスポンシブ

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

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

.ntc_normalLink::before { top: 6px;transform: none; }
}/* @media */

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

}/* @media */




