@charset "UTF-8";
/*-----------------------------------

	title_block

-----------------------------------*/
#title_block {
    text-align: center;
    background-color: #ffb68b;
    padding: 30px 0;
	margin-bottom: 20px;
}
#title_block .title_inner {
	position: relative;
}
#title_block h2 {
	font-size: 34px;
	letter-spacing: 0.2em;
}
#title_block h2 span {
	display: block;
	font-size: 20px;
	margin-bottom: 20px;
}
#title_block .count_box {
    width: 130px;
    padding: 15px;
    background: #00b9ef;
    position: absolute;
    top: -75px;
    right: 0;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
@media screen and (max-width: 640px) {
	#title_block {
		padding: 20px 0;
		margin-bottom: 10px;
	}
	#title_block h2 {
		font-size: 24px;
		padding-right: 90px;
	}
	#title_block h2 span {
		font-size: 14px;
		margin-bottom: 10px;
	}
	#title_block .count_box {
		width: 100px;
        top: 5px;
		padding: 10px;
		font-size: 14px;
		font-weight: 400;
		right: 0;
	}
}
/*-----------------------------------

	choices_block

-----------------------------------*/
#choices_block {
	padding-bottom: 10px;
	position: relative;
}
#choices_block .reset_box {
    position: absolute;
    top: -10px;
    bottom: 0;
    right: 0;
    color: #fff;
    margin: auto 0;
    width: 62px;
    height: 34px;
}
#choices_block .reset_box .reset_btn {
	background: #898989;
	color: #fff;
	border: none;
	border-radius: 3px;
	cursor: pointer;
    padding: 7px;
    font-size: 16px;
}
#choices_block table {
    width: calc(100% - 62px);
	border-spacing: 5px;
	border-collapse: separate;
	font-size: 16px;
}
#choices_block table tr > * {
	padding: 15px;
	background: #d1ecfb;
}
#choices_block table th {
	font-weight: 400;
	width: 100px;
	vertical-align: middle;
}
#choices_block table td {
	width: calc(100% - 100px);
}
#choices_block table td ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
}
#choices_block label {
  position: relative;
  cursor: pointer;
  padding-left: 25px;
  display: block;
  height: 16px;
}
#choices_block label::before, #choices_block label::after {
    content: "";
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}
#choices_block label::before {
    border: 2px solid #333434;
    width: 16px;
    height: 16px;
    left: 0;
}
#choices_block label::after {
    background-color: #333434;
    opacity: 0;
    width: 14px;
    height: 14px;
    left: 2px;
}
#choices_block input:checked + label::after {
    opacity: 1;
}
#choices_block input[type="checkbox"] {
    position: absolute;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
}
@media screen and (max-width: 840px) {
	/* #choices_block table {
		width: 90%;
	} */
}
@media screen and (max-width: 640px) {
	#choices_block .reset_box {
		width: 56px;
        height: 34px;
	}
	#choices_block .reset_box .reset_btn {
        font-size: 14px;
        font-weight: 400;
	}
	#choices_block table {
		font-size: 14px;
		/* width: 80%; */
	}
	#choices_block table tr > * {
		padding: 10px;
	}
	#choices_block table th {
		width: 70px;
	}
	#choices_block table td {
		width: calc(100% - 70px);
	}
	#choices_block table td ul {
		gap: 8px 20px;
	}
	#choices_block label {
	  padding-left: 20px;
	  height: 14px;
	}
	#choices_block label::before {
		border: 1.5px solid #333434;
		width: 14px;
		height: 14px;
	}
	#choices_block label::after {
        width: 10px;
        height: 10px;
        left: 1.6px;
	}
}
/*-----------------------------------

	list_block

-----------------------------------*/
#list_block {
	padding: 0 0 120px;
}
#list_block .partner {
	padding: 20px 0;
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, auto);
	grid-column-gap: 30px;
	grid-row-gap: 15px;
}
#list_block .partner.hide {
	display: none;
}
#list_block .partner .location {
	display: none;
}
#list_block .partner .icon_box {
    color: #fff;
    display: inline-block;
    width: 36px;
    height: 36px;
    padding: 5px;
    line-height: 1.1;
    font-size: 26px;
    font-weight: bold;
    border-radius: 5px;
}
#list_block .partner .aomori {
	background-color: #4ea216;
}
#list_block .partner .iwate {
	background-color: #3470a4;
}
#list_block .partner .miyagi {
	background-color: #7030a0;
}
#list_block .partner .fukushima {
	background-color: #e97230;
}
#list_block .partner .akita {
	background-color: #a72227;
}
#list_block .partner .yamagata {
	background-color: #1968b3;
}
#list_block .partner .niigata {
	background-color: #f3aa07;
}
#list_block .partner .other {
	background-color: #a6a6a6;
}
#list_block .partner:first-of-type::before,
#list_block .partner::after {
	content: '';
    height: 2px;
    width: 100%;
    background-image: linear-gradient(to right,#333434 3px, transparent 3px);
    background-size: 8px 2px;
	background-position: left bottom;
	position: absolute;
	left: 0;
}
#list_block .partner:first-of-type::before {
	top: 0;
}
#list_block .partner::after {
	bottom: 0;
}
#list_block .icon_wrap {
	grid-area: 1 / 1 / 2 / 3;
}
#list_block .details {
	grid-area: 2 / 1 / 3 / 3;
}
#list_block .details h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
#list_block .details h3 a {
	text-decoration: underline;
}
#list_block .details dl {
	display: flex;
	flex-wrap: wrap;
	row-gap: 10px;
	font-size: 16px;
	line-height: 1.4;
}
#list_block .details dl dt {
	width: 50px;
}
#list_block .details dl dd {
	width: calc(100% - 50px);
}
#list_block .details dl dd ul.address {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}
#list_block .details dl dd ul.address li {
	padding-right: 150px;
	position: relative;
	height: 27px;
}
#list_block .details dl dd ul.address li a {
	width: 140px;
	height: 27px;
	display: block;
	background: url(../img/btn_link.svg) no-repeat center/contain;
	color: #FFF;
	text-align: center;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
	line-height: 27px;
	padding-top: 1px;
	position: absolute;
	right: 0;
	top: calc(50% - 13.5px);
}
#list_block .details dl dd ul.tel {
	/* display: flex;
	flex-wrap: wrap; */
}
#list_block .overview {
	grid-area: 3 / 1 / 4 / 2;
	background: #efefef;
	padding: 20px 30px;
}
#list_block .overview p {
    line-height: 1.2;
    font-size: 14px;
}
#list_block .category {
	grid-area: 3 / 2 / 4 / 3;
	align-self: start;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#list_block .category li {
	background: #FFF;
	border: 1px solid #00b9ef;
	padding: 12px 5px;
	width: calc((100% - 30px) / 4);
	text-align: center;
	color: #00b9ef;
	font-weight: 700;
	font-size: 15px;
}
#list_block .category li.active {
	background: #00b9ef;
	color: #FFF;
}
@media screen and (max-width: 1000px) {
	#list_block .category li {
		width: calc((100% - 20px) / 3);
	}
}
@media screen and (max-width: 840px) {
	#list_block .partner {
		grid-column-gap: 20px;
		grid-row-gap: 20px;
	}
	#list_block .details h3 {
        font-size: 28px;
	}
	#list_block .details dl {
		font-size: 18px;
	}
	#list_block .details dl dt {
		width: 45px;
	}
	#list_block .details dl dd {
		width: calc(100% - 45px);
	}
	#list_block .category li {
		font-size: 15px;
	}
}
@media screen and (max-width: 640px) {
	#list_block {
		padding: 0 0 60px;
	}
	#list_block .partner {
		padding: 20px 0;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, auto);
		grid-column-gap: 0;
		grid-row-gap: 15px;
	}
	#list_block .details {
		grid-area: 2 / 1 / 2 / 2;
	}
	#list_block .details h3 {
		font-size: 24px;
		margin-bottom: 15px;
	}
	#list_block .details dl {
		row-gap: 5px;
		font-size: 16px;
	}
	#list_block .details dl dt {
		width: 40px;
	}
	#list_block .details dl dd {
		width: calc(100% - 40px);
	}
	#list_block .details dl dd ul.address li {
		padding-right: 0;
		height: auto;
	}
	#list_block .details dl dd ul.address li span {
		display: block;
	}
	#list_block .details dl dd ul.address li a {
		width: 100px;
		height: 19px;
		font-size: 11px;
		line-height: 19px;
		padding-top: 1px;
		top: calc(50% - 9.5px);
		position: static;
		margin: 0 0 0 auto;
	}
	#list_block .overview {
		grid-area: 3 / 1 / 3 / 2;
		padding: 10px 15px;
	}
	#list_block .category {
		grid-area: 4 / 1 / 4 / 2;
		gap: 5px;
	}
	#list_block .category li {
		padding: 10px 3px;
		width: calc((100% - 15px) / 4);
		font-size: 13px;
	}
}