@charset "UTF-8";
html { min-width: 1000px; }
body {
	background-color: #6fb7aa;
	background-image: url(../img/bg02.png), url(../img/bg01.png);
	background-position: right top, left top;
	background-repeat: no-repeat, repeat-x;
	background-size: 700px auto, auto;
}
a {
	color: inherit;
}
img {
	vertical-align: middle;
}
.pageTitle {
	margin-bottom: 0;
}
.path {
	color: #fff;
}
.path + .btnMypage {
	margin-top: -20px;
}
.btnMypage span {
	display: inline-block;
	background-color: #fff;
	border-radius: 30px;
	padding: 3px 4px;
}
.pointAd {
	text-align: center;
	margin: 20px 10px;
}
.pointAd img {
	max-width: 100%;
}
.switch {
	width: 980px;
	margin: 20px auto;
}
.spad + .switch {
	margin: 40px auto;
}
.switch ul {
	list-style: none;
	display: table;
	width: 100%;
	text-align: center;
	font-size: 1.6rem;
	font-weight: bold;
}
.switch li {
	display: table-cell;
	width: 25%;
}
.switch li + li {
	border-left: 1px solid #2f7d75;
}
.switch a {
	display: block;
	background: linear-gradient(to bottom, #0c685e 0%, #003336 100%);
	padding: 12px 0;
	color: #fff;
}
.switch li:first-child a {
	border-radius: 6px 0 0 6px;
}
.switch li:last-child a {
	border-radius: 0 6px 6px 0;
}
.mainContents {
	background-color: rgba(255, 255, 255, 0.4);
	width: 980px;
	margin: 20px auto 40px;
	padding: 15px 20px;
}
.mainContents > .inner {
	background-color: #fff;
	padding: 25px 20px 30px;
}
h2 {
	margin-bottom: 20px;
	font-size: 2.0rem;
	color: #1a7067;
}
.leadText {
	margin: 20px 0 40px;
	font-size: 1.5rem;
	color: #1a7067;
}
.mainContents .footerbox {
	width: auto;
}

/* カテゴリ一覧 */
.catlist {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.catbox {
	min-width: 440px;
	margin-top: 30px;
}
.catbox:nth-child(-n+2) {
	margin-top: 0;
}
.catbox .title {
	background: #1a7067 url(../img/icon-folder.svg) no-repeat 10px center;
	font-size: 1.6rem;
	color: #fff;
}
.catbox .title a {
	display: block;
	background: url(../img/icon-arrow.svg) no-repeat right 18px center;
	padding: 12px 28px 12px 40px;
}
.catbox .title span {
	display: block;
	padding: 12px 28px 12px 40px;
}
.catbox ul {
	border-left: 1px solid #b1cfcc;
	border-right: 1px solid #b1cfcc;
	border-bottom: 1px solid #b1cfcc;
	list-style: none;
}
.catbox li + li {
	border-top: 1px solid #b1cfcc;
}
.catbox li a {
	display: block;
	background: url(../img/icon-arrow02.svg) right 18px center no-repeat;
	padding: 12px 28px 12px 10px;
	font-size: 1.4rem;
}
.chieList .catbox  {
	margin: 40px 0;
}
.chieList .catbox ul {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	border-bottom: none;
	border-right: none;
}
.chieList .catbox li {
	min-width: 50%;
	border-bottom: 1px solid #b1cfcc;
	border-right: 1px solid #b1cfcc;
	border-top: none;
}
@media screen and (min-width: 768px) {
	.switch a:hover {
		text-decoration: none;
		background: linear-gradient(to top, #0c685e -20%, #003336 100%);
	}
}
@media screen and (max-width: 767px) {
	html { min-width: 100% }
	body {
		background-image: url(../img/bg02.png);
		background-position: center top;
		background-size: 100% auto;
	}
	.headerBox01 .pageTitle {
		padding-bottom: 0;
	}
	.pageTitle img {
		max-width: 302px;
	}
	.path .b-fold {
		color: #333;
	}
	.btnMypage span {
		padding: 1px 3px 2px;
	}
	.switch {
		width: auto;
		padding: 0 10px;
	}
	.switch ul {
		display: -webkit-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		font-size: 1.4rem;
	}
	.switch li {
		display: list-item;
		width: 50%;
		border-top: 1px solid #2f7d75;
	}
	.switch li + li {
		border-left: none;
	}
	.switch li:nth-child(even) {
		border-left: 1px solid #2f7d75;
	}
	.switch li:nth-child(-n+2) {
		border-top: none;
	}
	.switch li:first-child a {
		border-radius: 6px 0 0 0;
	}
	.switch li:last-child a {
		border-radius: 0 0 6px 0;
	}
	.switch li:nth-child(2) a {
		border-radius: 0 6px 0 0;
	}
	.switch li:nth-child(3) a {
		border-radius: 0 0 0 6px;
	}
	.mainContents {
		width: auto;
		padding: 15px 10px;
	}
	.mainContents > .inner {
		padding-left: 0;
		padding-right: 0;
	}
	h2 {
		text-align: center;
		line-height: 1.4;
	}
	h2 span {
		display: block;
	}
	.leadText {
		margin-left: 10px;
		margin-right: 10px;
		font-size: 1.4rem;
	}

	/* カテゴリ一覧 */
	.catlist {
		display: block;
	}
	.catbox {
		min-width: 100%;
	}
	.catbox .title a {
		background-position: right 10px center;
		padding-right: 20px;
	}
	.catbox ul {
		border: none;
	}
	.catbox li a {
		background-position: right 10px center;
		padding-right: 20px;
	}
	.catbox:nth-of-type(2) {
		margin-top: 30px;
	}
	.catbox li:last-child {
		border-bottom: 1px solid #b1cfcc;
	}
	.chieList .catbox ul {
		display: block;
	}
	.chieList .catbox li {
		border-right: none;
	}
}

/* 相談一覧 */
.listSwitch {
	margin: 40px auto 10px;
}
.listSwitch:first-of-type {
	margin: 0 auto 25px;
}
.listSwitch ul {
	list-style: none;
	display: table;
	width: 100%;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 1.6rem;
}
.listSwitch li {
	display: table-cell;
	width: 50%;
}
.listSwitch li > * {
	display: block;
	padding: 14px 0;
	background: linear-gradient(to bottom, #f57e92 0%, #f24d5a 100%);
}
.listSwitch li > span {
	background: #609c96;
	box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.listSwitch li:first-child > * {
	border-radius: 6px 0 0 6px;
}
.listSwitch li:last-child > * {
	border-radius: 0 6px 6px 0;
}
.sort {
	font-size: 1.4rem;
	display: table;
	margin: 20px 0;
}
.sort dt {
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
	padding-right: 10px;
}
.sort dd {
	display: table-cell;
}
.sort ul {
	list-style: none;
	display: -webkit-flex;
	display: flex;
}
.sort li + li {
	margin-left: 5px;
}
.sort li > * {
	display: inline-block;
	padding: 8px 12px;
	background: linear-gradient(to bottom, #0c685e 0%, #003336 100%);
	border-radius: 6px;
	color: #fff;
}
.sort span {
	background: #609c96;
	box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.listbox {
	margin: 20px -20px;
}
.list {
	border-bottom: 1px solid #8cb8b4;
	padding: 10px 50px 10px 20px;
	background: url(../img/icon-arrow02.svg) right 20px center no-repeat;
	position: relative;
}
.list:first-of-type {
	border-top: 1px solid #8cb8b4;
}
.list .title {
	display: flex;
}
.list .title a {
	display: block;
	flex-shrink: 1;
	flex-grow: 0;
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 1.4rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.list .title a:after {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.list .title span {
	display: block;
	font-size: 1.4rem;
	flex-shrink: 0;
	flex-grow: 0;
}
.list .info {
	position: relative;
	z-index: 1;
	list-style: none;
	margin-bottom: 5px;
	font-size: 1.1rem;
	color: #666;
}
.list .info li {
	display: inline-block;
}
.list .info li:not(:last-child)::after {
	content: "/";
	display: inline-block;
	color: #999;
	padding-left: 1em;
	margin-right: 0.5em;
}
.list .info .uketsuke {
	color: #f24d5a;
}
.list .info a {
	text-decoration: underline;
}
.list .tag {
	position: relative;
	z-index: 1;
	list-style: none;
	font-size: 1.1rem;
	color: #666;
	margin-left: -2px;
}
.list .tag li {
	display: inline-block;
	vertical-align: top;
	margin: 4px 2px;
}
.list .tag a {
	display: inline-block;
	border: 1px solid #d0d0d0;
	border-radius: 30px;
	padding: 2px 10px;
}
.pageNav li > * {
	width: 64px;
	padding-left: 0;
	padding-right: 0;
}
.pageNav li > a {
	color: #fff;
	background-color: #1a7067;
	border-color: #1a7067;
}
.pageNav li > span {
	color: #1a7067;
}
.pageNav .prev a {
	background-image: url(../img/icon-prev.svg);
}
.pageNav .next a {
	background-image: url(../img/icon-next.svg);
}
.chieNav {
	width: 980px;
	margin: 40px auto;
	background-color: #1a7067;
	border-radius: 6px;
	padding: 12px 0;
	text-align: center;
	font-size: 1.4rem;
	color: #fff;
}
.chieNav li {
	display: inline-block;
	vertical-align: top;
	margin: 0 0.3em;
}
.chieNav li a {
	text-decoration: underline;
}
@media screen and (min-width: 768px) {
	.listSwitch li a:hover {
		text-decoration: none;
		background: linear-gradient(to top, #f57e92 -10%, #f24d5a 100%);
	}
	.sort a:hover {
		text-decoration: none;
		background: linear-gradient(to top, #0c685e -10%, #003336 100%);
	}
	.pageNav li > a:hover {
		text-decoration: none;
		opacity: 0.7;
	}
	.chieNav li a:hover {
		text-decoration: none;
	}
	.list .info a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width: 767px) {
	.listSwitch ul {
		line-height: 1.25;
		padding: 0 10px;
	}
	.listSwitch li > * span {
		display: block;
	}
	.sort {
		margin-left: 10px;
	}
	.listbox {
		margin-left: 0;
		margin-right: 0;
	}
	.list {
		padding: 10px 30px 10px 10px;
		background-position: right 10px center;
	}
	.list .title a {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		white-space: normal;
	}
	.list .info li:not(:first-child)::after {
		content: "";
		display: none;
	}
	.list .info li:nth-of-type(3) {
		display: block;
	}
	.chieNav {
		width: auto;
		margin: 40px 10px;
		padding: 16px 0 14px;
		letter-spacing: -0.4em;
	}
	.chieNav li {
		letter-spacing: normal;
		min-width: 50%;
		margin: 4px 0;
	}
}

/* ランキング */
.rankingMenu {
	border: 1px solid #b1cfcc;
	margin: 20px 0;
}
.rankingMenu .tgl-btn2 {
	background: url(../img/icon-down.svg) right 20px center no-repeat;
	padding: 10px 50px 10px 20px;
	color: #1a7067;
	font-size: 1.6rem;
	cursor: pointer;
}
.tgl-btn2.open {
	background-image: url(../img/icon-up.svg);
}
.rankingMenu .contents {
	padding: 0 20px 20px;
}
.rankingMenu dl {
	margin-top: 0;
	padding-bottom: 10px;
	display: table;
	width: 100%;
}
.rankingMenu dl + dl {
	border-top: 1px solid #b1cfcc;
	padding-top: 10px;
}
.rankingMenu dt {
	display: table-cell;
	width: 110px;
}
.rankingMenu dd {
	display: table-cell;
}
.rankingMenu dd a {
	display: inline-block;
	padding: 5px 10px 3px;
	margin-top: 5px;
	background: linear-gradient(to bottom, #0c685e 0%, #003336 100%);
	border-radius: 6px;
	color: #fff;
}
.rankingMenu dd .active {
	background: #609c96;
	box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.4);
}
.rankingMenu .btn {
	text-align: center;
}
.rankingMenu .btn a {
	display: inline-block;
	padding: 10px 30px;
	border: 1px solid #1a7067;
	border-radius: 6px;
	background-color: #cfe7e3;
	color: #1a7067;
	position: relative;
}
.rankingMenu .btn a:after {
	content: "";
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -5px;
	border-width: 1px 1px 0 0;
	border-style: solid;
	width: 9px;
	height: 9px;
	-webkit-transform: rotate(55deg) skew(0deg, -20deg);
	transform: rotate(55deg) skew(0deg, -20deg);
}
.cat ul {
	list-style: none;
	font-size: 1.1rem;
}
.cat li {
	display: inline-block;
	margin-right: 10px;
}
.cat .midashi {
	display: inline-block;
	padding: 0 5px;
	margin-right: 5px;
	border: 1px solid #1a7067;
	border-radius: 2px;
	background: linear-gradient(to bottom, #fff 50%, #e8f4f1 100%);
	color: #1a7067;
}
.rnkbox {
	background-color: #f3f3f3;
	margin: 0 20px;
}
.rnkbox + .rnkbox {
	margin-top: 10px;
}
.rnkbox.top03 {
	background: #f4eedb url(../img/rnk-bg01.png) 0 0 no-repeat;
	background-size: 200px 290px;
}
.rnkbox.top10 {
	background: #f3f3f3 url(../img/rnk-bg02.png) 0 0 no-repeat;
	background-size: 200px 290px;
}
.rnkbox .infobox > a {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-left: 10px;
	padding-right: 20px;
	position: relative;
}
[class*="top"] .infobox > a {
	padding-left: 58px;
}
.rnkbox .infobox > a::after {
	display: block;
	content: "";
	clear: both;
}
.top03 a::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background: url(../img/crown01.png) 0 0 no-repeat;
	background-size: 58px;
	width: 58px;
	height: 58px;
}
.top10 a::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	background: url(../img/crown02.png) 0 0 no-repeat;
	background-size: 58px;
	width: 58px;
	height: 58px;
}
.rnkbox .img {
	width: 100px;
	min-width: 100px;
	padding: 10px 0;
}
.rnkbox .img img {
	max-width: 100%;
}
.rnkbox .textbox {
	min-width: 710px;
	padding: 10px 0;
	flex-grow: 1;
}
.rnkbox .textbox > * {
	padding-left: 10px;
}
.rnkbox .town {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.rnkbox .mainCat {
	font-weight: bold;
}
.rnkbox .name {
	margin: 2px 0 5px;
	overflow: hidden;
}
.rnkbox .uranaishi {
	min-width: 100%;
	text-decoration: underline;
	font-size: 1.8rem;
	font-weight: bold;
}
.rnkbox .seibetsu {
	float: left;
}
.rnkbox .kana {
	margin-left: 42px;
}
.rnkbox .icon {
	letter-spacing: -0.4em;
	padding-left: 5px;
}
.rnkbox .icon > span {
	letter-spacing: normal;
	display: inline-block;
	margin-top: 5px;
	margin-left: 5px;
}
@media screen and (min-width: 768px) {
	.rankingMenu dd a:hover {
		text-decoration: none;
		background: #609c96;
		box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.4);
	}
	.rankingMenu .btn a:hover {
		opacity: 0.7;
		text-decoration: none;
	}
	.rnkbox a:hover {
		text-decoration: none;
	}
	.rnkbox a:hover .name > *:first-child {
		text-decoration: none;
		color: #ff6600;
	}
	.rnkbox a:hover .textbox img {
		opacity: 1.0;
	}
}
@media screen and (max-width: 767px) {
	.rankingMenu {
		margin-left: 10px;
		margin-right: 10px;
	}
	.rankingMenu .tgl-btn2 {
		text-align: center;
		background-position: right 10px center;
		padding: 10px 40px;
	}
	.rankingMenu .contents {
		display: none;
		padding: 0 10px 20px;
	}
	.rankingMenu dl {
		display: block;
	}
	.rankingMenu dt {
		display: block;
		width: auto;
	}
	.rankingMenu dt img {
		height: 24px;
	}
	.rankingMenu dd {
		display: block;
	}
	.rankingMenu .btn {
		line-height: 1.4;
		margin-top: 10px;
	}
	.rankingMenu .btn a span {
		display: block;
	}
	.cat {
		margin: 0 10px;
	}
	.cat li:first-child {
		width: 100%;
		margin-bottom: 5px;
	}
	.rnkbox {
		margin-left: 10px;
		margin-right: 10px;
	}
	.rnkbox .infobox a {
		padding-right: 10px;
	}
	.rnkbox .img {
		width: 80px;
		min-width: 80px;
	}
	.rnkbox .textbox {
		min-width: 132px;
	}
	.rnkbox .name {
		font-size: 1.5rem;
	}
	.rnkbox .kana {
		font-size: 1.1rem;
		margin-top: 4px;
	}
	.rnkbox .icon span {
		margin-top: 2px;
	}
	.rnkbox .icon img {
		height: 18px;
	}
}

/*知恵袋トップ*/
.chieBnr {
	width: 982px;
	height: 246px;
	background: url(../img/bnr-soudan-bg.png) center top no-repeat;
	margin: 20px auto;
	text-align: center;
	font-size: 1.8rem;
	color: #1a7067;
}
.chieBnr .midashi {
	font-weight: bold;
	font-size: 3.0rem;
	padding-top: 35px;
	margin-bottom: 10px;
}
.chieBnr .btn {
	margin: 25px auto 0;
	width: 400px;
	font-weight: bold;
}
.chieBnr .btn a {
	display: block;
	padding: 16px 0;
	border-radius: 6px;
	background: linear-gradient(to bottom, #0c685e 0%, #003336 100%);
	color: #fff;
}
.chieBnr .help {
	font-size: 1.4rem;
	margin-top: 10px;
}
.chieTop .mainContents > .inner {
	padding: 25px 0 0;
}
.chieTop .mainContents > .inner + .inner {
	margin-top: 20px;
}
.mainContents > [class*="ad"] {
	margin-top: 40px;
	width: auto;
}
.chieTop h2 {
	padding: 0 20px;
}
.chieTop .more {
	border-top: 1px solid #d0e2e0;
	text-align: right;
	font-size: 1.4rem;
}
.chieTop .more a {
	display: block;
	background: url(../img/icon-arrow02.svg) right 30px center no-repeat;
	padding: 15px 50px 15px 50px;
}
.chieTop .soudanList ul {
	list-style: none;
	font-size: 1.4rem;
}
.chieTop .soudanList li {
	border-top: 1px solid #d0e2e0;
	position: relative;
}
.chieTop .soudanList li:nth-child(odd) {
	background-color: #f7f9f9;
}
.chieTop .soudanList li:before {
	content: "";
	position: absolute;
	left:  30px;
	top: 50%;
	width: 6px;
	height: 6px;
	background-color: #1a7067;
	border-radius: 100%;
	margin-top: -3px;
}
.chieTop .soudanList li a {
	display: block;
	padding: 12px 30px 12px 45px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.chieTop .soudanNow h2 {
	color: #f47086;
}
.chieTop .soudanNow .soudanList li,
.chieTop .soudanNow .more {
	border-color: #fbdde2;
}
.chieTop .soudanNow .soudanList li:nth-child(odd) {
	background-color: #fef8f7;
}
.chieTop .soudanNow .soudanList li:before {
	background-color: #f47086;
}
.chieTop .mainContents .search {
	padding-bottom: 25px;
}
.chieTop .mainContents .category {
	padding-bottom: 30px;
}
.chieTop .search h2 {
	margin-bottom: 0;
	padding-right: 40px;
}
.search form {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	padding-right: 30px;
}
.search [type="search"] {
	height: 50px;
	margin: 0;
	border: 2px solid #87b5b0;
	background-image: none;
	padding: 2px 5px;
	outline: none;
	font-size: 1.6rem;
	flex-grow: 1;
}
.search [type="search"]::-webkit-search-decoration {
	display: none;
}
.search [type="submit"] {
	margin: 0 0 0 5px;
	border-radius: 6px;
	height: 50px;
	padding: 0 20px;
	background: linear-gradient(to bottom, #0c685e 0%, #003336 100%);
	font-size: 1.6rem;
	font-weight: bold;
}
.chieTop .catList ul {
	list-style: none;
}
.chieTop .catList li {
	border-top: 1px solid #d0e2e0;
}
.chieTop .catList li > a {
	display: block;
	text-decoration: none;
	padding: 15px 30px 15px 20px;
}
.chieTop .catList > ul > li:last-child {
	border-bottom: 1px solid #d0e2e0;
}
.chieTop .catList .midashi {
	background: url(../img/icon-folder.svg) 0 3px no-repeat;
	padding-left: 30px;
	color: #1a7067;
	font-size: 1.6rem;
}
.chieTop .catList .childCat {
	padding-left: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.chieTop .hashtag ul {
	padding: 0 30px 5px 20px;
	margin-left: -8px;
	font-size: 1.4rem;
}
.chieTop .hashtag li {
	margin: 0 0 8px 8px;
}
.chieTop .hashtag li a {
	display: block;
	background-color: #f2f2f2;
	padding: 4px 10px 2px;
	border: 1px solid #d0d0d0;
	border-radius: 1.2em;
	color: #666;
}
.chieTop .ranking h2 {
	color: #a68034;
}
.chieTop .ranking .more {
	border-color: #eee4c6;
	margin-top: 25px;
}
.chieTop .rnkbox {
	font-size: 1.4rem;
}
.chieTop .rnkbox a {
	justify-content: flex-start;
	min-height: 58px;
	padding-top: 20px;
	text-align: left;
}
.chieTop .rnkbox .text {
	display: block;
	flex-grow: 1;
	min-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.chieTop .rnkbox .uranaishi {
	min-width: 0;
	text-decoration: none;
	font-weight: normal;
	font-size: 100%;
}
.chieTop .rnkbox .seibetsu {
	float: none;
}
.rnkbox .text span + span {
	margin-left: 1em;
}
@media screen and (min-width: 768px) {
	.chieBnr .btn a:hover {
		text-decoration: none;
		background: linear-gradient(to top, #0c685e -10%, #003336 100%);
	}
	.search [type="submit"]:hover {
		cursor: pointer;
		background: linear-gradient(to top, #0c685e -10%, #003336 100%);
	}
	.chieTop .catList li a:hover .midashi {
		text-decoration: underline;
	}
	.chieTop .hashtag li a:hover {
		text-decoration: none;
		background-color: #f9f9f9;
	}
	.chieTop .rnkbox a:hover {
		text-decoration: underline;
	}
}
@media screen and (max-width: 767px) {
	.chieBnr {
		background-image: url(../img/bnr-soudan-bg-sp.png);
		background-size: cover;
		width: auto;
		height: auto;
		margin: 20px 10px;
		font-size: 1.4rem;
	}
	.chieBnr .midashi {
		padding-top: 15px;
		margin-bottom: 5px;
		font-size: 2.2rem;
	}
	.chieBnr .btn {
		background: url(../img/bnr-soudan01.png) center top no-repeat;
		background-size: 100% auto;
		padding: 36.31% 10px 0;
		margin-top: 0;
		width: auto;
		font-size: 1.6rem;
	}
	.chieBnr .help {
		margin-top: 0;
		padding: 10px 0;
	}
	.chieTop .more a {
		padding: 10px 35px;
		background-position: right 10px center;
	}
	.chieTop .mainContents > [class*="ad"] img {
		max-width: 100%;
	}
	.chieTop .soudanList li:before {
		display: none;
	}
	.chieTop .soudanList li a {
		padding: 12px 10px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		white-space: normal;
	}
	.chieTop .soudanList li a:after {
		content: "";
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 12px;
		background-color: #fff;
	}
	.chieTop .soudanList li:nth-child(odd) a:after {
		background-color: #f7f9f9;
	}
	.chieTop .soudanNow .soudanList li:nth-child(odd) a:after {
		background-color: #fef8f7;
	}
	.chieTop .search form {
		display: block;
		overflow: hidden;
		padding: 0 10px 5px;
	}
	.chieTop .search h2 {
		padding: 0;
		margin-bottom: 20px;
	}
	.search [type="search"] {
		float: left;
		min-width: 1px;
		border-radius: 6px 0 0 6px;
		border-right: none;
		width: 76%;
	}
	.search [type="submit"] {
		float: left;
		margin: 0;
		border: none;
		border-radius: 0 6px 6px 0;
		width: 24%;
	}
	.chieTop .catList li a {
		padding: 15px 10px;
	}
	.chieTop .hashtag ul {
		padding-right: 10px;
		padding-left: 10px;
	}
	.chieTop .rnkbox a {
		padding-bottom: 20px;
		display: block;
	}
	.chieTop .rnkbox a:before {
		top: 50%;
		margin-top: -29px;
	}
	.chieTop .rnkbox .text {
		text-overflow: initial;
		white-space: normal;
	}
	.chieTop .rnkbox .uranaishi {
		min-width: 100%;
		display: block;
		margin-right: 0;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.chieTop .rnkbox .uranaishi + span {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		margin-left: 0;
	}
}

/* 検索結果一覧 */
.chieSearch .search {
	background-color: #f4eedb;
	padding: 25px 160px 30px;
	margin: 25px auto;
}
.chieSearch .search form {
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	padding: 0;
	text-align: center;
}
.chieSearch .search .midashi {
	margin-bottom: 20px;
	min-width: 100%;
	color: #1a7067;
	font-size: 2.0rem;
	font-weight: bold;
}
.noResult {
	margin: 25px 20px 40px;
	padding: 5em 0;
	font-size: 1.6rem;
	text-align: center;
}
.tagbox {
	font-size: 1.4rem;
	margin: 40px -20px;
}
.tagbox .title {
	background-color: #1a7067;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 12px 20px 10px;
	margin-bottom: 7px;
}
.tagbox .tagList {
	list-style: none;
	margin-left: -8px;
	padding: 0 20px;
	letter-spacing: -0.4em;
}
.tagList li {
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
	margin-top: 8px;
	letter-spacing: normal;
}
.tagList li a {
	display: block;
	background-color: #f2f2f2;
	padding: 4px 10px 2px;
	border: 1px solid #d0d0d0;
	border-radius: 1.2em;
	color: #666;
}
h2 + .tagbox .tagList li:nth-child(-n+50) {
	font-size: 2.0rem;
}
h2 + .tagbox .tagList li:nth-child(-n+10) {
	font-size: 2.6rem;
}
.btnProfile {
	margin: 40px auto;
	width: 400px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}
.btnProfile a {
	display: block;
	background: linear-gradient(180deg, rgba(12, 104, 94, 1) 0%, rgba(0, 51, 54, 1) 100%);
	border-radius: 6px;
	padding: 16px 0;
	color: #fff;
}

@media screen and (min-width: 768px) {
	.tagList li a:hover {
		text-decoration: none;
		background-color: #f9f9f9;
	}
	.btnProfile a:hover {
		text-decoration: none;
		background: linear-gradient(0deg, rgba(12, 104, 94, 1) -10%, rgba(0, 51, 54, 1) 100%);
	}
}
@media screen and (max-width: 767px) {
	.chieSearch .search {
		padding: 25px 10px 30px;
	}
	.noResult {
		margin: 25px 10px;
	}
	.tagbox {
		margin: 40px 0;
	}
	.tagbox .title {
		padding-left: 10px;
		padding-right: 10px;
	}
	.tagbox .tagList {
		padding-left: 10px;
		padding-right: 10px;
	}
	h2 + .tagbox .tagList li {
		font-size: 1.2rem;
	}
	h2 + .tagbox .tagList li:nth-child(-n+50) {
		font-size: 1.6rem;
	}
	h2 + .tagbox .tagList li:nth-child(-n+10) {
		font-size: 2.2rem;
	}
	.btnProfile {
		width: auto;
		margin-left: 10px;
		margin-right: 10px;
	}
	.btnProfile a span {
		display: block;
	}
}

/* 相談詳細 */
.chieShosai .mainContents .caution {
  padding: 0 20px 5px;
  color: #ed5a73;
}
.chieShosai .mainContents .comment .caution {
  padding: 0;
	color: #ed1c24;
}
.chieShosai .mainContents > .inner {
	padding: 0;
}
.questionbox form > [class] {
	padding-bottom: 40px;
}
.question h2 {
	background-color: #f47086;
	padding: 8px 20px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
}
.question h2 .nokori {
	display: inline-block;
	background-color: #fff;
	margin: 0 2px;
	padding: 0 5px;
	color: #f47086;
	font-size: 2.0rem;
}
.questionbox .title{
	margin: 30px auto 25px;
	width: 800px;
	font-weight: bold;
	font-size: 2.8rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.questionbox .date {
	margin: 25px auto 5px;
	width: 800px;
	font-size: 1.1rem;
	color: #666;
}
.questionbox .name {
	margin: 0 auto 20px;
	width: 800px;
	font-size: 1.4rem;
}
.questionbox .text {
	margin: 20px auto;
	width: 800px;
	font-size: 1.5rem;
	line-height: 1.8;
}
.questionbox .text p + p {
	margin-top: 1.5em;
}
.questionbox .hosoku {
	margin-top: 2em;
}
.questionbox .hosoku .midashi {
	display: inline-block;
	padding: 3px 10px;
	margin-bottom: 8px;
	background-color: #808080;
	line-height: 1.0;
	letter-spacing: 0.15em;
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
}
.questionbox .hosoku .text {
	margin: 0;
}
.questionbox .hosoku .chui {
	color: #1a7067;
}
.questionbox .hosoku .kome {
	list-style: none;
	margin-top: 1em;
	text-indent: -1em;
	padding-left: 1em;
	color: #ed1c24;
}
.questionbox .cat {
	margin: 30px auto 10px;
	width: 800px;
	color: #808080;
	font-size: 1.4rem;
}
.questionbox .cat li + li:before {
	content: ">";
	display: inline-block;
	padding-right: 1em;
}
.questionbox .cat a {
	text-decoration: underline;
}
.questionbox .hashtag {
	margin: 10px auto 5px;
	width: 820px;
	color: #808080;
	font-size: 1.4rem;
}
.questionbox .hashtag li {
	margin: 5px;
}
.questionbox .hashtag a {
	display: inline-block;
	border: 1px solid #d0d0d0;
	border-radius: 30px;
	padding: 2px 10px;
}
.questionbox .ihan {
	margin: 5px auto 0;
	width: 800px;
	text-align: right;
	font-size: 1.2rem;
	color: #808080;
}
.questionbox .ihan a {
	text-decoration: underline;
}
.questionbox .btn {
	margin: 20px 60px 0;
	text-align: right;
	font-weight: bold;
	font-size: 1.5rem;
	color: #fff;
}
.questionbox .btn a {
	display: inline-block;
	text-align: center;
	padding: 10px 20px;
	background: linear-gradient(to bottom, #0c685e 0%, #003437 100%);
	border-radius: 6px;
}
.bestAnswer h2 {
	background-color: #f47b50;
	padding: 8px 20px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
}
.questionbox .uranaishi {
	overflow: hidden;
	margin: 30px auto 0;
	width: 800px;
}
.questionbox .uranaishi .img {
	width: 100px;
	height: 150px;
	float: left;
	text-align: center;
}
.questionbox .uranaishi .img img {
	max-width: 100%;
	max-height: 100%;
}
.questionbox .uranaishi .namebox {
	margin: 8px 0 15px 120px;
}
.bestAnswer .uranaishi .namebox {
	margin-right: 100px;
}
.questionbox .uranaishi .kana {
	font-size: 1.2rem;
	letter-spacing: 0.01em;
}
.questionbox .uranaishi .name {
	font-weight: bold;
	font-size: 1.8rem;
}
.questionbox .uranaishi .date {
	font-size: 1.1rem;
	margin-top: 15px;
	margin-left: 120px;
	width: auto;
}
.questionbox .uranaishi .text {
	margin: 15px 0 15px 120px;
	width: auto;
}
.questionbox .uranaishi .hashtag {
	width: auto;
	margin: 0 0 0 110px;
}
.questionbox .uranaishi .ihan {
	width: auto;
	margin-left: 120px;
}
.questionbox .comment {
	border: 1px solid #ccc;
	width: 800px;
	margin: 30px auto 60px;
	padding: 40px 75px 35px 120px;
	position: relative;
}
.questionbox .comment:before {
	content: "";
	position: absolute;
	left: 55px;
	top: 40px;
	border-width: 0 0 4px 4px;
	border-style: solid;
	border-color: #ccc;
	width: 38px;
	height: 30px;
}
.questionbox .comment:after {
	content: "";
	position: absolute;
	left: 95px;
	top: 70px;
	margin-top: -12px;
	margin-left: -15px;
	border-width: 10px 0 10px 17px;
	border-style: solid;
	border-color: transparent transparent transparent #ccc;
}
.questionbox .comment .name {
	margin-bottom: 15px;
	width: auto;
}
.questionbox .comment .date {
	margin-top: 15px;
	width: auto;
}
.questionbox .comment .text {
	margin: 15px auto;
	width: auto;
}
.questionbox .comment .ihan {
	margin: 15px auto 0;
	width: auto;
}
.questionbox .text textarea {
	width: 100%;
	margin-top: 15px;
}
.questionbox form > .bestAnswer {
	padding-bottom: 0;
}
.bestAnswer .uranaishi {
	background: url(../img/bestanswer.svg) right top no-repeat;
	background-size: 90px 90px;
}
.btnSoudansha {
	margin: 0 auto;
	padding-bottom: 60px;
	width: 800px;
}
.btnSoudansha [type="submit"] {
	width: 100%;
	background: linear-gradient(to bottom, #D25056 0%, #C00C15 100%);
	border-radius: 6px;
	border: none;
	padding: 16px 0;
	margin: 0;
	outline: none;
	font-size: 1.8rem;
	font-weight: bold;
}
.otherAnswer h2 {
	background-color: #3a68ab;
	padding: 8px 20px;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
}
.otherAnswer ul {
	list-style: none;
}
.selectBest {
	margin: 15px 0 0;
}
.selectBest input {
	width: 0;
	height: 0;
	padding: 0;
	border: none;
	background-color: transparent;
}
.selectBest input + label {
	cursor: pointer;
	background-image: none;
	padding: 0 0 0 2em;
	min-height: 1.6em;
	position: relative;
}
.selectBest input + label:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 21px;
	height: 21px;
	border: 2px solid #ccc;
	border-radius: 3px;
}
.selectBest input:checked + label {
	background-image: none;
}
.selectBest input:checked + label:after {
	content: "";
	display: block;
	position: absolute;
	left: 2px;
	top: 0;
	border-color: #0c685e;
	border-style: solid;
	border-width: 0 0 4px 4px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	width: 20px;
	height: 12px;
}
.selectBest + div {
	margin-top: 10px;
	color: #ed1c24;
}
.otherQuestion h2 {
	background-color: #808080;
	padding: 8px 20px;
	margin-bottom: 0;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
}
.otherQuestion .listbox {
	margin: 0;
	padding-bottom: 55px;
}
.otherQuestion .list {
	border-bottom-color: #ccc;
}
.otherQuestion .list:first-child {
	border-top: none;
}
.otherQuestion .btn {
	margin: 28px auto 0;
	width: 75%;
}
.otherQuestion .btn a {
	display: block;
	background: #1a7067 url(../img/icon-arrow.svg) no-repeat right 20px center;
	background-size: 8px 12px;
	border-radius: 4px;
	padding: 12px 30px;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	font-size: 1.6rem;
	color: #fff;
}
.end .question h2 {
	background-color: #609C96;
}
/* PC only */
@media screen and (min-width: 768px) {
	.questionbox .ihan a:hover {
		text-decoration: none;
	}
	.questionbox .namebox a:hover {
		text-decoration: none;
	}
	.questionbox .namebox a:hover .name {
		text-decoration: underline;
	}
	.questionbox .cat a:hover {
		text-decoration: none;
	}
	.questionbox .btn a:hover {
		text-decoration: none;
		background: linear-gradient(to top, #0c685e -30%, #003437 100%);
	}
	.btnSoudansha [type="submit"]:hover {
		background: linear-gradient(to top, #D25056 -20%, #C00C15 80%);
	}
	.otherQuestion .btn a:hover {
		background-color: #207c73;
	}
}
/* SP style */
@media screen and (max-width: 767px) {
	.chieShosai .mainContents .caution {
		padding-left: 10px;
		padding-right: 10px;
	}
	.questionbox h2 {
		padding: 5px;
		font-size: 1.4rem;
	}
	.question h2 .nokori {
		font-size: 1.8rem;
	}
	.questionbox .title {
		margin: 20px 10px;
		width: auto;
		line-height: 1.4;
		font-size: 2.0rem;
		white-space: normal;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}
	.questionbox .date {
		margin: 20px 10px 0;
		width: auto;
	}
	.questionbox .name {
		margin: 0 10px 20px;
		width: auto;
	}
	.questionbox .text {
		margin: 20px 10px;
		width: auto;
		line-height: 1.6;
		font-size: 1.4rem;
	}
	.questionbox .cat {
		width: auto;
		margin: 30px 10px 0;
	}
	.questionbox .cat li:first-child {
		width: auto;
		margin-bottom: 0;
	}
	.questionbox .hashtag {
		margin-left: 0;
		margin-right: 0;
		width: auto;
	}
	.questionbox .ihan {
		margin: 0 10px;
		width: auto;
	}
	.questionbox .btn {
		margin-left: 10px;
		margin-right: 10px;
	}
	.questionbox .btn a {
		display: block;
	}
	.questionbox .uranaishi {
		margin: 20px 10px;
		width: auto;
	}
	.questionbox .uranaishi .img {
		width: 80px;
		height: 115px;
		padding-bottom: 15px;
	}
	.questionbox .uranaishi .namebox {
		margin-left: 90px;
	}
	.bestAnswer .uranaishi .namebox {
		margin-right: 80px;
	}
	.questionbox .uranaishi .name {
		margin: 0;
	}
	.questionbox .uranaishi .date {
		margin-left: 90px;
		margin-right: 0;
	}
	.questionbox .uranaishi .text {
		clear: both;
		margin-left: 0;
	}
	.questionbox .uranaishi .hashtag {
		margin-left: -5px;
	}
	.questionbox .uranaishi .ihan {
		margin: 0;
	}
	.questionbox .comment {
		width: auto;
		margin: 20px 10px 40px;
		padding: 45px 0 20px;
	}
	.questionbox .comment:before {
		border-width: 0 0 2px 2px;
		width: 16px;
		height: 16px;
		left: 15px;
		top: 15px;
	}
	.questionbox .comment:after {
		border-width: 5px 0 5px 10px;
		margin-left: -4px;
		margin-top: -6px;
		left: 31px;
		top: 31px;
	}
	.questionbox .comment .name {
		margin: 0 15px;
	}
	.questionbox .comment .date {
		margin: 15px;
	}
	.questionbox .comment .text {
		margin: 15px;
	}
	.questionbox .comment .ihan {
		margin: 15px 15px 0;
	}
	.selectBest {
		margin: 15px 15px 0;
	}
	.selectBest + div {
		margin: 10px 15px 0;
	}
	.bestAnswer .uranaishi {
		background-size: 70px 70px;
	}
	.btnSoudansha {
		width: auto;
		margin: 0 10px;
		padding-bottom: 40px;
	}
	.btnSoudansha [type="submit"]:active {
		background: linear-gradient(to top, #D25056 -20%, #C00C15 80%);
	}
	.otherQuestion .listbox {
		padding-bottom: 40px;
	}
	.otherQuestion .btn {
		width: auto;
		margin: 22px 10px;
	}
	.otherQuestion .btn a {
		background-position: right 10px center;
		padding: 12px 18px;
		font-size: 1.4rem;
	}
	.otherQuestion .btn a:active {
		background-color: #207c73;
	}
}

/* 相談フォーム */
.chieForm .mainContents > .inner {
	padding-top: 40px;
}
.chieForm .formFlow {
	list-style: none;
	display: -webkit-flex;
	display: flex;
	height: 50px;
	overflow: hidden;
	margin-bottom: 40px;
	padding-right: 23px;
	text-align: center;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.2;
}
.chieForm .formFlow .now {
	color: #1A7067;
}
.chieForm .formFlow li {
	width: 33.33%;
	background-color: #B3DCD3;
	position: relative;
	padding-top: 15px;
	padding-left: 15px;
}
.chieForm .formFlow li:first-child {
	background-color: #C9E6DD;
}
.chieForm .formFlow li:last-child {
	background-color: #96CCC0;
}
.chieForm .formFlow li:after {
	content: "";
	position: absolute;
	right: -20px;
	top: 0;
	z-index: 1;
	border-width: 25px 0 25px 20px;
	border-style: solid;
	border-color: transparent transparent transparent #B3DCD3;
}
.chieForm .formFlow li:first-child:after {
	border-left-color: #C9E6DD;
}
.chieForm .formFlow li:last-child:after {
	border-left-color: #96CCC0;
}
.chieForm .formFlow li + li:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 0px;
	top: -5px;
	border-width: 30px 0 30px 24px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
}
.chieForm .own_point {
	margin-bottom: 40px;
}
.chieForm h2 {
	margin-bottom: 35px;
	text-align: center;
	font-size: 3.0rem;
}
.chieForm .lead {
	text-align: center;
	color: #1a7067;
	font-size: 1.5rem;
	margin-bottom: 25px;
}
.chieForm .lead p + p {
	margin-top: 1.2em;
}
.chieForm .lead .kome {
	list-style: none;
	margin: 0.25em 0 1.2em;
	text-align: center;
	font-size: 1.3rem;
}
.chieForm .help ul {
	list-style: none;
	text-align: center;
	font-size: 1.4rem;
}
.chieForm .help li {
	display: inline-block;
}
.chieForm .help li + li:before {
	content: "｜";
	display: inline-block;
	padding: 0 0.5em;
}
.form {
	background-color: #f4eedb;
	margin-top: 40px;
	padding: 25px 20px;
	font-size: 1.4rem;
}
.form dl {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e2d2a0;
	padding: 18px 15px 18px 10px;
}
.form dt {
	font-weight: bold;
	flex: 0 0 220px;
	font-size: 1.6rem;
}
.form .long dt {
	align-self: flex-start;
	padding-top: 15px;
}
.form dt .hissu {
	display: inline-block;
	background-color: #ed1c24;
	margin-right: 0.8em;
	padding: 4px 0.6em 2px 0.8em;
	border-radius: 4px;
	letter-spacing: 0.1em;
	line-height: 1.2;
	color: #fff;
	font-size: 1.3rem;
}
.form dt .nini {
	display: inline-block;
	background-color: #609c96;
	margin-right: 0.8em;
	padding: 4px 0.6em 2px 0.8em;
	border-radius: 4px;
	letter-spacing: 0.1em;
	line-height: 1.2;
	color: #fff;
	font-size: 1.3rem;
}
.form dd {
	flex: 1 0 595px;
}
.form input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: 2px solid #ccc;
	background-color: #fff;
	border-radius: 6px;
	height: 50px;
	width: 100%;
	padding: 0 5px;
	margin: 0;
	font-size: 100%;
	font-family: inherit;
	color: #333;
}
.form textarea {
	border-radius: 6px;
	width: 100%;
	font-size: 100%;
	font-family: inherit;
	color: #333;
}
.form .qInfo ~ dl textarea {
	height: 24em;
}
.form select {
	border: 2px solid #ccc;
	border-radius: 6px;
	outline: none;
	margin: 0;
	height: 50px;
	background: url(../img/arrow-select.png) right center no-repeat, linear-gradient(to bottom, #fefefe 0%, #bababa 100%);
	background-size: 35px 50px, 100% 100%;
	padding: 0 38px 0 10px;
	width: 55.5%;
	font-size: 100%;
	font-family: inherit;
	color: #333;
}
.form .radioList label {
	background: linear-gradient(to bottom, #fefefe 0%, #bababa 100%);
	font-size: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.form .radioList [type="radio"]:checked + label {
	background: #1a7067;
}
.form .checkbox {
	display: inline-block;
	position: relative;
}
.form .checkbox [type="checkbox"] {
	outline: none;
	background-color: transparent;
	border: none;
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
}
.form .checkbox [type="checkbox"] + label {
	background-image: none;
	min-height: 21px;
	cursor: pointer;
}
.form .checkbox [type="checkbox"] + label:before {
	content: "";
	background-color: #fff;
	border: 2px solid #ccc;
	border-radius: 3px;
	width: 21px;
	height: 21px;
	position: absolute;
	left: 0;
	top: 0;
}
.form .checkbox [type="checkbox"] + label:after {
	content: "";
	width: 20px;
	height: 12px;
	position: absolute;
	left: 2px;
	top: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 0 0 4px 4px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
}
.form .checkbox [type="checkbox"]:checked + label:after {
	border-color: #0c865e;
}
.form dd ul {
	list-style: none;
}
.form dd .text {
	margin-bottom: 15px;
	color: #1a7067;
}
.form dd .text a {
	text-decoration: underline;
}
.form dd .text p + p {
	margin-top: 0.4em;
}
.form dd .text em {
	font-style: normal;
	color: #ed1c24;
}
.hikoukai {
	display: inline-block;
	background-color: #1a7067;
	padding: 0 0.8em;
	margin-right: 0.8em;
	color: #fff;
	font-weight: bold;
}
.form .long {
	flex-wrap: wrap;
}
.form .long [class^="tgl-btn"] {
	padding: 0;
	position: relative;
	cursor: pointer;
	flex-grow: 1;
	flex-basis: 100%;
}
.form [class^="tgl-btn"]:after {
	content: "";
	position: absolute;
	right: 0px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	border-width: 10px 8px 0;
	border-style: solid;
	border-color: #c3b17c transparent transparent;
}
.form [class^="tgl-btn"].open:after {
	border-width: 0 8px 10px;
	border-color: transparent transparent #c3b17c;
}
.form [class^="tgl-btn"] + dd {
	display: none;
	margin-left: 220px;
	font-size: 100%;
}
.form .personalInfo {
	border-style: dotted;
	border-color: #c5a642;
	padding-left: 0;
	padding-right: 0;
}
.personalInfo:first-of-type {
	padding-top: 0;
}
.personalInfo:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}
.form .personalInfo dt {
	flex-basis: 152px;
}
.form .personalInfo dd {
	flex: 1 1 100%;
}
.birthdaybox > * {
	display: inline-block;
	vertical-align: middle;
	width: 30%;
}
.birthdaybox select {
	width: 82%;
}
.form .tag li {
	margin-top: 8px;
}
.form .tag input {
	width: 60%;
}
.sousa li {
	display: inline-block;
	margin-right: 5px;
	font-size: 1.3rem;
}
.sousa a {
	display: inline-block;
	border-radius: 6px;
	background : linear-gradient(180deg, #0c685e 0%, #003336 100%);
	padding: 5px 10px;
	color: #fff;
}
.simei li + li {
	border-top: 1px dotted #c5a642;
}
.simei li:first-of-type dl {
	padding-top: 0;
}
.simei li:last-of-type dl {
	padding-bottom: 0;
	border-bottom: none;
}
.form .simei dl {
	border-bottom: none;
	padding: 18px 0;
}
.form .simei dt {
	flex-basis: 55px;
	padding-top: 0;
	-webkit-align-self: center;
	align-self: center;
}
.simei dd {
	flex-basis: 55px;
}
.simei select {
	width: 45%;
}
.simei select + select {
	margin-left: 0.5em;
}
.form .btn {
	margin: 30px 10px 35px;
	text-align: center;
}
.form .btn [type="submit"] {
	border: none;
	border-radius: 6px;
	background : linear-gradient(180deg, #0c685e 0%, #003336 100%);
	outline: none;
	height: 60px;
	width: 400px;
	font-size: 1.8rem;
	font-weight: bold;
}
.errorbox {
	border: 1px solid #ed1c24;
	background-color: #ffeded;
	margin: 40px auto;
	padding: 20px;
	color: #ed1c24;
}
.errorbox h3 {
	font-size: 2.4rem;
	margin-bottom: 10px;
}
.errorbox ul {
	margin-left: 20px;
	font-size: 1.5rem;
}
.form .error input,
.form .error textarea {
	border-color: #ed1c24;
	background-color: #fff1f1;
}
.form .error select {
	border-color: #ed1c24;
	background: url(../img/arrow-select.png) right center no-repeat, linear-gradient(to bottom, #fff7f7 0%, #ffeded 100%);
	background-size: 35px 50px, 100% 100%;
}
.form .errorText {
	color: #ed1c24;
	margin-top: 10px;
}

/* 回答フォーム */
.qInfo .long dt {
	padding-top: 0;
}

/* PC only */
@media screen and (min-width: 768px) {
	.sousa a:hover {
		background : linear-gradient(0deg, #0c685e -20%, #003336 100%);
		text-decoration: none;
	}
	.form dd .text a:hover {
		text-decoration: none;
	}
	.form .btn [type="submit"]:hover {
		background : linear-gradient(0deg, #0c685e -20%, #003336 100%);
	}
}
/* SP style */
@media screen and (max-width: 767px) {
	.chieForm .mainContents > .inner {
		padding-top: 24px;
	}
	.chieForm .formFlow {
		margin: 0 10px 30px;
		font-size: 1.6rem;
	}
	.chieForm .formFlow li {
		padding-left: 24px;
	}
	.chieForm .formFlow span {
		display: block;
	}
	.chieForm .formFlow li:first-child {
		padding-left: 10px;
		padding-top: 6px;
	}
	.chieForm .own_point {
		margin: 0 10px 30px;
	}
	.chieForm h2 {
		font-size: 2.0rem;
		margin-bottom: 20px;
	}
	.chieForm .lead {
		margin: 20px 10px;
		font-size: 1.4rem;
	}
	.chieForm .lead span {
		display: block;
	}
	.chieForm .lead .kome {
		font-size: 1.2rem;
	}
	.chieForm .help ul {
		border-top: 1px solid #b1cfcc;
		text-align: left;
	}
	.chieForm .help li {
		display: list-item;
		width: 100%;
		border-bottom: 1px solid #b1cfcc;
		position: relative;
	}
	.chieForm .help li + li:before {
		display: none;
	}
	.chieForm .help li a {
		display: block;
		padding: 10px;
		background: url(../img/icon-arrow02.svg) right 10px center no-repeat;
	}
	.form {
		margin-right: 10px;
		margin-left: 10px;
		padding: 0;
	}
	.form select {
		width: 100%;
	}
	.form dl {
		display: block;
	}
	.form dt {
		margin-bottom: 15px;
	}
	.form .long dt {
		padding-top: 0;
	}
	.form dd .text {
		margin-bottom: 10px;
		font-size: 1.3rem;
	}
	.form dd .text a:active {
		text-decoration: none;
	}
	.form [class^="tgl-btn"] {
		margin-bottom: 0;
	}
	.form [class^="tgl-btn"] + dd {
		margin-left: 0;
		margin-top: 15px;
	}
	.form .personalInfo {
		padding: 10px 0 10px 16px;
	}
	.form .personalInfo:first-of-type {
		padding-top: 0;
	}
	.form .personalInfo dt {
		margin-bottom: 5px;
	}
	.form .personalInfo dd .text {
		margin-bottom: 0;
	}
	.birthdaybox > * {
		display: block;
		margin-right: 0;
		margin-top: 5px;
		width: auto;
	}
	.birthdaybox select {
		width: 50%;
	}
	.form .tag input {
		width: 100%;
	}
	.sousa li {
		display: list-item;
		margin-right: 0;
	}
	.sousa li + li {
		margin-top: 10px;
	}
	.sousa a:active {
		background : linear-gradient(0deg, #0c685e -20%, #003336 100%);
		text-decoration: none;
	}
	.form .simei dl {
		display: flex;
	}
	.form .simei dt {
		margin: 13px 0 0;
		-webkit-align-self: flex-start;
		align-self: flex-start;
	}
	.simei select {
		width: 100%;
	}
	.simei select + select {
		margin-left: 0;
		margin-top: 10px;
	}
	.form .btn {
		margin: 0 10px;
		padding: 30px 0;
	}
	.form .btn [type="submit"] {
		width: 100%;
		padding: 20px 0;
		height: auto;
		line-height: 1.2;
	}
	.form .btn [type="submit"] span {
		display: block;
	}
	.form .btn [type="submit"]:active {
		background : linear-gradient(0deg, #0c685e -20%, #003336 100%);
	}
	.errorbox {
		margin-left: 10px;
		margin-right: 10px;
		padding: 20px 10px;
	}
	.errorbox h3 {
		font-size: 2.0rem;
	}
}
/* 相談フォーム 確認画面 */
.confirm .long > dt {
	padding-top: 0;
}
.confirm .long .personalInfo dt {
	align-self: center;
	padding-top: 0;
}
.confirm .personalInfo:last-child {
	padding-bottom: 0;
}
.confirm .btn ul {
	list-style: none;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
.confirm .btn li {
	width: 250px;
}
.confirm .btn [type="submit"] {
	width: 100%;
}
.confirm .btn .back [type="submit"] {
	background: linear-gradient(to bottom, #808080 0%, #444 100%);
}
.chieForm .thanks {
	color: #1a7067;
	font-size: 1.5rem;
	margin: 0 40px;
}
.chieForm .thanks h3 {
	font-size: 2.6rem;
	font-weight: normal;
	text-align: center;
	margin-bottom: 30px;
	border-width: 1px 0;
	border-style: solid;
	padding: 10px;
}
.chieForm .thanks .kome {
	list-style: none;
	text-indent: -1em;
	padding-left: 1em;
	margin: 0.25em 0 1.2em;
	font-size: 1.3rem;
}
.chieForm .thanks p {
	margin-bottom: 1.2em;
	margin-top: 2em;
}
.chieForm .thanks .chieTopLink:before {
	content: "";
	display: inline-block;
	margin-right: 5px;
	border-width: 5px 0px 5px 8px;
	border-style: solid;
	border-color: transparent transparent transparent #1a7067;
}
/* PC only */
@media screen and (min-width: 768px) {
	.confirm .btn .back [type="submit"]:hover {
		background: linear-gradient(to top, #808080 -20%, #444 80%);
	}
}
/* SP style */
@media screen and (max-width: 767px) {
	.confirm .simei li:first-child dl {
		padding-top: 0;
	}
	.confirm .simei li:last-child dl {
		padding-bottom: 0;
	}
	.confirm .simei dt {
		margin-top: 0;
	}
	.confirm .btn li {
		width: 48%;
	}
	.confirm .btn .back [type="submit"]:active {
		background: linear-gradient(to top, #808080 -20%, #444 80%);
	}
	.chieForm .thanks {
		margin: 5px 10px 0;
	}
	.chieForm .thanks h3 {
		margin-bottom: 20px;
		font-size: 2rem;
	}
}

/* 違反報告 */
.ihan dl {
	padding-top: 30px;
	padding-bottom: 30px;
	line-height: 1.8;
}
.ihan .long dt {
	padding-top: 0;
}
.ihan dd {
	color: #666;
}
.ihan textarea {
	height: 200px;
}
/* SP style */
@media screen and (max-width: 767px) {
	.ihan dl {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.ihan dt {
		margin-bottom: 5px;
	}
	.ihan .btn ul li {
		width: 60%;
	}
	.ihan textarea {
		height: 160px;
	}
	.ihan .btn ul .back {
		width: 38%;
	}
}

/* kiyaku */
.chieHelp {
	background-color: #F5F1E2;
	background-image: none;
}
.chieHelp main a {
	color: #006DD9;
}
.chieHelp .pageTitle {
	padding-bottom: 20px;
	font-size: 2.8rem;
}
.chieHelp .path {
	color: inherit;
}
.chieHelp .path a {
	color: #006DD9;
}
.chieHelp .mainInner {
	max-width: 980px;
	margin: 0 auto 80px;
}
.chieHelp h2 {
	background-color: #dcd9cb;
	margin: 20px 0 10px;
	padding: 5px 5px 5px 20px;
	font-size: 100%;
	color: inherit;
}
.chieHelp .kiyakuTtl {
	margin: 0;
	padding: 5px 10px;
}
.chieHelp .contents {
	background-color: #fff;
	padding: 10px 10px 20px;
}
.o_container {
	margin-left: 1.5em;
}
.o_container li + li {
	margin-top: 10px;
}
.o_container .ol {
	list-style: none;
}
.o_container .ol > li {
	text-indent: -1em;
	padding-left: 1em;
}
.o_container .ol > li + li {
	margin-top: 0;
}
.o_container .count01 {
	counter-reset: olcount;
}
.o_container .count01 > li {
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.o_container .count01 > li::before {
	counter-increment: olcount;
	content: "(" counter(olcount) ")";
}
.chieHelp .text > p + p {
	margin-top: 1.5em;
}
/* PC only style */
@media screen and (min-width: 768px) {
	.chieHelp main a:hover,
	.chieHelp .path a:hover {
		color: #0059B2;
	}
}
/* SP style */
@media screen and (max-width: 767px) {
	.chieHelp main a:active,
	.chieHelp .path a:active {
		color: #0059B2;
	}
	.chieHelp .pageTitle {
		font-size: 2.0rem;
		padding-bottom: 10px;
	}
	.chieHelp h2 {
		text-align: left;
	}
}

@media screen and (max-width: 767px) {
	.footerbox {
		padding: 0;
	}
}
