@charset "UTF-8";
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header, footer, article, section, aside, main, nav, menu, figure, figcaption {
  display: block;
}

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}


/*----------------------------------------
	Card
----------------------------------------*/
.card {
	display: block;
	border: 1px solid #C0C0C0;
	border-radius: 5px;
	color: inherit;
	text-decoration: none;
	transition: color .3s;
}
.card__thumb {
	overflow: hidden;
}
.card__thumb img {
	max-width: none;
	width: 100%;
}

/*----------------------------------------
	CardList04
----------------------------------------*/
.cardList04 {
	display: grid; /*girdレイアウトにする*/
	gap: 20px; /*アイテム間余白を20pxに設定*/
	grid-template-columns: repeat(auto-fill,minmax(335px,1fr));
}
/*補足
最小値の335pxは、コンテナ幅1400pxの時4カラムで表示したいというデザイン的な
意図から算出しています。
コンテナ幅：1400px
カラム数：4
gap：20px　×　3個 = 60px

各カラムの幅 = (1400px - 60px) / 4  = 335px　※これが実質最小値
*/

a.card p {
  padding: 10px 10px;
}

a.card p.heightCtrCtt2 {
  padding: 0;
}

ul.annotationSymbol {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: #707070;
  padding-left: 10px;
  padding-bottom: 10px;
  text-indent: 0;
  list-style: none;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}

ul.annotationSymbol li {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}