*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  /*overflow-x: hidden;*/
}

main {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

/* ======================================== カード ======================================== */
.container_card {
	width: 100%;
	padding: 0.5rem 0.5rem;
}
ul.item_card {
	list-style: none;
	display: flex;
  flex-wrap: wrap;
	/*justify-content: center;*/
	/*max-width: 960px;*/
	margin: 0;
}
li.list_card {
	/*width: 50%;*/
  max-width: 400px;
	/*margin-right: 2rem;*/
	/*margin-bottom: 1rem;*/
	/*padding-left: 1rem;*/
	/*padding-right: 1rem;*/
	padding-bottom: 0.5rem;
	display: flex;
	flex-direction: column;
	/*border-color: #7eb22d;*/
	/*border-width: 3px 3px 3px 3px;*/
	background-color: white;
}
li.list_card:last-child {
	margin-right: 0;
}
h3.title_card {
	padding: 0.2rem 0.5rem 0.3rem 0.5rem;
	font-weight: bold;
	font-size: 22px;
    text-align: center;
    color: white;
	background-color: #7eb22d;
    border-color: #c1a37b;
    border-width: 0px 0px 8px 0px;
}
p.content_card {
  padding: 1rem;
	line-height: 1.6;
	color: #333;
}
@media screen and (max-width: 956px) {
	ul.item_card {
		flex-wrap: wrap;
		max-width: 420px;
	}
	li.list_card {
		width: 100%;
		/*margin-right: 0;*/
		/*margin-bottom: 3rem;*/
		/*padding: 1rem 1rem 1rem 1rem;*/
		/*border-color: #2e8b57;*/
		/*border-width: 3px 3px 3px 3px;*/
	}
	li.list_card:last-child {
		margin-bottom: 0;
	}
}

/* ======================================== テーブル ======================================== */
table {
  border: inherit;
  border-collapse: collapse;
}

td,
th {
  vertical-align: top;
}

th {
  text-align: left;
  font-weight: bold;
}

/* =============================================
テーブルのCSSはここから
============================================= */
/* テーブル03 */
.table03 {
  margin-left: 5px;
}

.table03 th,
.table03 td {
  padding: 0.5rem 1rem;
  border-right: 2px solid #fff;
  vertical-align: middle;
}

.table03 th:last-child,
.table03 td:last-child {
  border-right: 0;
}

.table03 thead th {
  background-color: #8ec5fc;
  color: #fff;
  text-align: center;
  border-bottom: 2px solid #fff;
}

.table03 tbody tr {
  background-color: #f7f7f7;
  border-bottom: 2px solid #fff;
}

.table03 tbody tr:last-child {
  border: none;
}

.table03 tbody th {
  /*width: 25%;*/
  /*background-image: linear-gradient(120deg, #e0c3fc 0%, #8ec5fc 100%);*/
  background-color: #8ec5fc;
  color: #fff;
}

.table03 tbody .price {
  width: 25%;
  text-align: right;
}

.table03 tbody .center {
  text-align: center;
}
