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

body {
	font-size: 1.4em;
}
body {
  -webkit-text-size-adjust: 100%;
}
* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a,a:visited{
	text-decoration: none;
	color: #000;
}
a:hover{
	color: #000;
	text-decoration: underline;
	cursor: pointer;
}
a.tel {
	display:inline-block!important;
	padding: 0!important;
	font-size: 1em!important;
    letter-spacing: 0!important;
    font-weight: normal!important;
}

/* ----------------------------------------
 ヘッダー
---------------------------------------- */

header {
  position: fixed;
  top: 0;
  right: 0px;
  width: 100%;
  z-index: 99;
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* -webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease; */
}
header .wrap {
	padding: 0;
	position: relative;
}
header .row {
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 10px 4%;
}
header .logo_area {
	width: 48%;
	position: relative;
}
header .logo_area p {
	display:none;
}
header .logo_area img {
}
header .line_btn {
	width: 28%;
}
header .blocks {
	width: 17%;
	display: flex;
}
header .favorite {
	border-left: solid 1px #cccccc;
	width: 100%;
}
header .favorite .box {
	position: relative;
}
header .favorite .num {
	width: 12px;
	height: 12px;
	border-radius: 6px;
	position: absolute;
	top: 0;
	right: 6px;
	background: #ff9000;
	display: flex;
	justify-content: center;
	align-items: center;
}
header .favorite .num .count {
	color: #fff;
	font-size: 1rem;
	line-height: 1;
}
header .favorite span.txt {
	display:none;
}
.menu-toggle {
	background: #ff9000;
	width: 100%;
	text-align: center;
	padding: 10px 0;
}
.menu-toggle label img {
	width: 25%;
}
.menu-toggle .menu_btn.close {
	display:none;
}
.menu-toggle.active .menu_btn.close {
	display: block;
}
.menu-toggle.active .menu_btn.open {
	display: none;
}
header .menu_area {
	position: absolute;
	top: 100%;
	width: 100%;
}
header .main_menu {
	position: fixed;
	top: 100%;
  right: 0;
	width: 100%;
	height: 0;
	background: #fff;
	padding: 17px 5.666%;
	transition: .2s;
	visibility: hidden;
	overflow: hidden;
}
header .menu_area.active .main_menu {
	/* -webkit-transform: translateY(100%);
   transform: translateY(100%); */
	 height: 100vh;
	 visibility: visible;
	 transition: .2s;
	 overflow:scroll;
	 z-index: 9;
}
header .main_menu {
}
header .main_menu li {
	padding: 17px 0;
}
header .main_menu li a {
	color: #000;
	display: block;
	position:relative;
	text-align: center;
}
header .main_menu li a:after {
	content: '';
	display: inline-block;
	position:absolute;
	right: 0;
	top: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #ff9000 #ff9000 transparent transparent;
  transform: rotate(45deg) translateY(-50%);
}
header .main_menu li a:hover {
	text-decoration: none;
}

/* ----------------------------------------
 フッター
---------------------------------------- */

footer {
	background: #feecd4;
	width: 100%;
	border-top: solid 3px #ff9000;
	position: relative;
	text-align: center;
	padding: 30px 0;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
}
footer .wrap {
	padding-top: 30px;
}
footer .banners {
	background: #fed8a6;
	width: 100%;
	padding: 20px 0 0;
}
footer .banners .wrap.row {
	padding-top: 0;
	display: block;
}
footer .banners .ban {
	width: 100%;
	padding: 0 5.97% 20px;
}
footer .foot_menu {
	width: 50%;
}
footer .foot_menu li {
	margin-bottom: 15px;
	font-size: 1.2rem;
	text-align: left;
	line-height: 1;
}
footer .logo_area {
	margin: 15px auto 10px;
	text-align: center;
}
footer .logo_area p {
	font-size: 1rem;
	line-height: 1;
	margin-bottom: 15px;
}
footer .logo_area .logo {
	margin: auto;
}
#footer_copy {
}
#footer_copy .copy {
	font-size: 11px;
	line-height: 1;
	margin-bottom: 0;
}

/* ----------------------------------------
* フローティングボタン
---------------------------------------- */
#floating_btn {
	display:none;
  width: 100%;
  background: #ff9000;
  position: fixed;
  bottom: -90px;
  opacity: 0;
  transition-duration: 1s;
	z-index:9999;
	text-align: center
}
#floating_btn.active {
  /* bottom: 0;
  opacity: 1; */
}
#floating_btn a {
	width: 100%;
	display: block;
}

/* ----------------------------------------
* お気に入り登録完了
---------------------------------------- */
#favorite_area {
	background: rgba(0,0,0,0.75);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 999;
	display: none;
	transition-duration: 0.3s;
}
#favorite_area.active {
	display: block;
}
#favorite_area .inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#favorite_area .inner .close {
	width: 7%;
	position: absolute;
	top: 20px;
	right: 5.333%;
	cursor: pointer;
}

/* ----------------------------------------
* SP-pagetop
---------------------------------------- */
#totop {
	width: 10.66%;
	opacity: 0;
	position: fixed;
	/* bottom: 70px; */
	right: 0;
	transition-duration: 1s;
}
#totop.active {
	opacity: 1;
  bottom: 0;
}
#totop.last {
	position: absolute;
	bottom: calc(100% + 3px);
}

.sp_none {
	display: none;
}

/* ----------------------------------------
 パンクズ
---------------------------------------- */
#contents .pankuzu {
	text-align: left;
	padding: 1em 0 2em;
}
.pankuzu .breadcrumb {
}
.pankuzu li {
	display: inline-block;
  font-size: 1rem;
  letter-spacing: 0;
  margin-right: 3px;
}
.pankuzu .fa {
  display: none;
}
.pankuzu span {
}
.pankuzu span:before {
  margin: 0 5px;
}
.pankuzu a {
  text-decoration: none;
  color: #ff9000;
	margin-right: 5px;
}
.breadcrumb-area a:hover {
  text-decoration: underline;
}

/* ----------------------------------------
 下層ページ共通
---------------------------------------- */

/*--button--*/
.btn a,
.formbt a,
button[type="submit"],
input[type="submit"],
input[type="button"] {
	background: #ff9000 url(../img/common/btn_arrow_right.png) no-repeat right 10px center;
	background-size: 6px;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	display: inline-block;
	width: 100%;
	height: 3em;
	border: none;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
	position: relative;
}
.btn a:hover,
.formbtn a:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	text-decoration: none;
	opacity: 0.7;
}

.fav_btn {
	width: 48.5%;
}
.fav_btn a {
	color: #000;
	font-size: 1.2rem;
	font-weight: bold;
	display: inline-block;
	width: 100%;
	height: 3em;
	border: solid 1px #cccccc;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	margin: auto;
	position: relative;
}
.fav_btn.off a {
	background: url(../img/common/favo_off.png) no-repeat left 25px center;
	background-size: 15px;
}
.fav_btn.on a {
	background: url(../img/common/favo_on.png) no-repeat left 25px center;
	background-size: 15px;
}
.fav_btn a:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	text-decoration: none;
	opacity: 0.7;
}

.b_350 {
	width: 74.6%;
}
.b_150 {
	width: 48.5%;
}

#page_nav {
	display: flex;
	justify-content: center;
}
#page_nav li span {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: solid 1px #ff9000;
	color: #ff9000;
	margin: 0 2px;
	font-size: 1.2rem;
}
#page_nav li a span {
  color: #000;
}
#page_nav li.current span, #page_nav li a:hover span {
	color: #fff;
	background: #ff9000;
	text-decoration: none;
}

#contents {
}
section {
}
.wrap {
	max-width: 750px;
  width:100%;
	padding: 0 5.333%;
	margin: 0 auto;
}
p {
	line-height: 2;
}
#page_ttl {
	background: #f2f1ea;
  width: 100%;
	padding: 15px 0;
}
#page_ttl h1 {
	margin: 0;
	text-align: center;
}
#page_ttl h1 span.main {
	font-size: 1.9rem;
}
#page_ttl h1 span.sub {
	display: block;
	font-size: 1rem;
}
h2 {
	font-size: 2rem;
	text-align: center;
}
h2.orange_ttl {
 background: #ff9000;
 color: #fff;
 font-size: 1.5rem;
 text-align: left;
 width: 100%;
 padding: 12px 15px;
}
h3.orange_line {
 border: solid 1px #ccc;
 border-left: solid 5px #ff9000;
 font-size: 1.4rem;
 text-align: left;
 width: 100%;
 padding: 11px 15px 10px;
 margin-bottom: 20px;
}
h3 span.ribbon_ttl {
	background: url(../img/common/ttl_back_ribbon_sp.png) no-repeat right center;
	text-align: left;
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	line-height: 2em;
	padding: 0 24px 0 10px;
	display:inline-block;
	width: auto;
}
.bg_gray {
background: #f2f1ea;
}
span.yellow_border_img {
	background: url(../img/common/yellow_border_pc.png) repeat-x;
	background-position: center bottom 0px;
}
span.yellow_border {
	background:linear-gradient(transparent 70%, #fffc00 0%);
}

/*------------------------------------------------------------
.form_block
------------------------------------------------------------*/

.form_block {
	width: 100%;
  padding: 20px 5.333%;
	border-radius: 5px;
}
.form_block select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
	appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none transparent;
  vertical-align: middle;
	font-size: 1.1rem;
  padding: 8px 12px;
  border: none;
  color: #000;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
}
.form_block select option {
	font-size: 1.4rem;
  background-color: #fff;
  color: #000;
}
.form_block select::-ms-expand {
    display: none;
}
.form_block select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #828c9a;
}

.form_block input::placeholder, .form_block textarea::placeholder {
  color: #CCC;
  font-weight: bold;
  font-size: 1.2rem; }

/* IE */
.form_block input:-ms-input-placeholder, .form_block textarea:-ms-input-placeholder {
  color: #CCC;
  font-weight: bold;
  font-size: 1.2rem; }

/* Edge */
.form_block input::-ms-input-placeholder, .form_block textarea::-ms-input-placeholder {
  color: #CCC;
  font-weight: bold;
  font-size: 1.2rem;
}
.form_block .form_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
	flex-wrap: wrap;
}
.form_block .searchBox {
	background-color: #fff;
  width: 46.25%;
	height: 3em;
  box-sizing: border-box;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.form_block .searchBox .searchBox_ttl {
  font-size: 1rem;
  color: #aaaaaa;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
  border-right: 1px solid #e5e5e5;
	width: 14%;
}
.form_block .searchBox.pref .searchBox_ttl {
  width: 30%;
}
.form_block .searchBox.genre .searchBox_ttl {
  width: 23%;
}
.form_block .searchBox .select-wrap {
	width: 100%;
  position: relative;
}
.form_block .searchBox.pref .select-wrap {
}
.form_block .searchBox.genre .select-wrap {
}
.form_block .searchBox .select-wrap:before {
	content: '';
	background: url(../img/common/arrow_under_gray_pc.png) no-repeat;
	display: inline-block;
	background-size: 10px;
  z-index: 1;
  position: absolute;
  right: 10px;
  top: calc(50% - 4px);
	width: 10px;
  height: 8px;
  pointer-events: none;
}
.form_block .icon {
  line-height: 0;
	width: 7.5%;
	padding: 0 2%;
	text-align: center;
	margin: auto;
}
.form_block .freeword_wrap {
  width: 100%;
}
.form_block .freeword_wrap input[type="text"] {
  font-size: 1.6rem;
}
.form_block .s_btn {
	width: 100%;
	margin-top: 10px;
}
.form_block .s_btn input {
	font-size: 1.3rem;
}
.form_block .s_btn span {
	width: 100%;
	display: inline-block;
	position: relative;
}
.form_block .s_btn span:before  {
	content: '';
  background: url(../img/common/icon_lens.png)no-repeat;
	background-size: 16px;
  width: 16px;
	height: 16px;
  display: inline-block;
	position: absolute;
	top: 50%;
	left: calc(50% - 3em);
	transform: translateY(-50%);
	z-index: 99;
}

.form_block .s_btn.pref_select .true,
.form_block .s_btn.pref_select.active .dummy {
	display:none;
}
.form_block .s_btn.pref_select.active .true {
	display: inline-block;
}

.alertArea {
	display:none;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.7);
	position:fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.alertArea.active {
	display:block;
}
.alert_inner {
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.alertArea .close {
	position: absolute;
	top: 20px;
	right: 5.33%;
	cursor: auto;
}

/* ----------------------------------------
	トップページ index.html
---------------------------------------- */
#top_mv {
	width: 100%;
	overflow: hidden;
}
#top_mv .wrap {
	width: 100%;
	padding: 0;
}
#top_mv .form_block {
	background: #feecd4;
	width: 100%;
  padding: 15px 5.33% 20px;
	border-radius: 0;
}
#top_mv .form_ttl {
	position: relative;
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 10px;
}
#top_mv .form_ttl .ttl {
	width: 100%;
	text-align: center;
	display: inline-block;
	font-size: 1.5rem;
	font-weight: bold;
}
#top_mv .form_ttl .user {
	font-size: 1rem;
	text-align: right;
	position: absolute;
	top: 0;
	right: 0;
}
#top_mv .form_ttl .user .count {
	font-size: 1.4rem;
	font-weight: bold;
}

#top_news {
  padding: 45px 0 0;
	position: relative;
}
#top_news h2 {
	border-bottom: solid 3px #ff9000;
	padding-bottom: 5px;
}
#top_news ul {
	padding: 8px 3% 5px;
	border-bottom: dotted 1px #d2d2d2;
}
#top_news li {
	display: flex;
	justify-content: space-between;
}
#top_news li .date {
	width: 6.5em;
	line-height: 1.5;
}
#top_news li p.ttl {
	width: calc(100% - 6.5em);
	line-height: 1.5;
}
#top_news li a {
	color: #ff9000;
	text-decoration: underline;
}
#top_news li a:hover {
	opacity: 0.75;
}
#top_news .more_btn {
	width: 6em;
	position: absolute;
	right: 5.333%;
	top: 3px;
}
#top_news .more_btn a {
	background: #ff9000 url(../img/common/btn_arrow_right.png) no-repeat center right 10px;
	background-size: 5px;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	border-radius: 5px;
	font-size: 1rem;
	text-align: center;
	padding: 5px 5px 6px 0;
}
#top_news .more_btn a:hover {
	text-decoration: none;
	opacity: 0.75;
}

#top_caution {
	padding: 45px 0 0;
}
#top_caution p {
	text-align: left;
	font-size: 1.125em;
	font-weight: bold;
	margin-bottom: 1em;
}
#top_caution .btn {
	margin: 3em auto 0;
}

#top_jisseki {
	padding: 45px 0 0;
}
#top_jisseki h2 {
  background: url(../img/top/h2_line.png) repeat-x center;
	margin: 0 0 15px;
}
#top_jisseki h2 span {
	background: #fff;
	display: inline-block;
	padding: 0 15px;
}
#top_jisseki .boxes {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 0 15px;
}
#top_jisseki .box {
	width: 48.1%;
	border: solid 2px #ff9000;
	border-radius: 10px;
	text-align: center;
	padding: 9px 0 9px;
}
#top_jisseki .box:first-child {
	margin-right: 3.8%
}
#top_jisseki .box:last-child {
	margin-top: 15px;
}
#top_jisseki .box .txt {
	color: #ff9000;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 7px;
}
#top_jisseki .box .jisseki_num {
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
}
#top_jisseki .box .txt .jisseki {
	line-height: 1;
}
#top_jisseki p.caution {
	line-height: 1.5;
	font-size: 1rem;
	text-align: left;
}

#top_first {
	padding: 35px 0 30px;
}
#top_first h2 {
  background: url(../img/top/h2_line.png) repeat-x center;
	margin: 0 0 15px;
}
#top_first h2 span {
	background: #fff;
	display: inline-block;
	padding: 0 15px;
}
#top_first ol {
  padding-left: 5.333%;
}
#top_first ol li {
	font-size: 1.4rem;
	font-weight: bold;
	list-style: decimal;
	margin-bottom: 0.5em;
}

#top_second {
	padding: 35px 0 20px;
}
#top_second h2 {
	margin: 0 0 20px;
}
#top_second h3 {
	font-size: 1.7rem;
	margin: 0 0 10px;
	text-align: center;
}
#top_second .img {
	width: 100%;
	margin: 0 0 15px;
}
#top_second .text {
	width: 100%;
	line-height: 1.5;
}
#top_second .btn {
	margin: auto;
}
.tatsujin_slide {
	overflow: hidden;
}
.tatsujin_slide .slide-content p {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0.25em;
}
.tatsujin_slide .slide-content p.name {
	color: #ff9000;
	font-size: 1.1rem;
	text-decoration: underline;
	margin-bottom: 0.75em;
}
/* スライダー */
.slide_wrap {
	position: relative;
	-webkit-box-sizing: content-box;
					box-sizing: content-box;
	max-width: 1080px;
	margin: 0 auto;
	padding: 40px 20px;
}
.slide_wrap .swiper {
	overflow: visible;
}
[class*=swiper]:focus {
	outline: none;
}
.slide-media,
.thumb-media {
	position: relative;
	overflow: hidden;
}
.slide-media img,
.thumb-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
		 object-fit: cover;
}
.swiper-button-prev::before, .swiper-button-next::before {
	content:'';
	display:none;
}
.swiper-button-prev::after, .swiper-button-next::after {
	content:'';
	display:none;
}
.swiper-button-disabled {
	pointer-events: none;
	opacity: 0;
}
.slide_wrap .swiper-button-prev, .slide_wrap .swiper-button-next {
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	margin: auto;
	display: grid;
	place-content: center;
	cursor: pointer;
}
.slide_wrap .swiper-button-prev {
	background: url(../img/top/slide_arrow_prev.png) no-repeat;
	background-size: 100%;
	width: 20px;
	height: 20px;
	left: -10px;
}
.slide_wrap .swiper-button-next {
	background: url(../img/top/slide_arrow_next.png) no-repeat;
	background-size: 100%;
	width: 20px;
	height: 20px;
	right: -10px;
}
.slide_wrap .slide {
	overflow: hidden;
	border-radius: 0;
	box-shadow: 1px 2px 2px 1px #8f8f8f;
}
.slide_wrap .slide-media {
	padding-top: 62.5%;
}
.slide_wrap .slide-media img {
	/* height: calc(100% + 16px);
	-webkit-transform: translateY(-16px);
					transform: translateY(-16px); */
}
.slide_wrap .slide-content {
	background: #fff;
	padding: 5px;
}
.swiper-slide:not(.swiper-slide-visible) .slide {
	pointer-events: none;
	opacity: 0.3;
}
/* /スライダー */

#top_third {
	padding: 35px 0 20px;
}
#top_third h2 {
	margin: 0 0 10px;
}
#top_third p.desc {
	text-align: center;
	line-height: 1.5;
	margin-bottom: 40px;
}
#top_third .area1 {
	background: #feecd4;
	padding: 35px 0 35px;
	margin-bottom: 20px;
	position: relative;
}
#top_third .area1 h3 {
	width: 100%;
	position:absolute;
	top: 0;
	left: 0;
	transform:translateY(-50%);
}
#top_third .area1 ul {
  padding: 0 5.66%;
}
#top_third .area1 ul li {
	font-size: 1.4rem;
	font-weight: bold;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
#top_third .area1 ul li .sub {
	font-size: 1rem;
}
#top_third .area1 ul li:before {
	content: '';
	background: url(../img/top/check_icon.png) no-repeat top;
	background-size: 100%;
	width: 15px;
	height: 20px;
	position: absolute;
	top: 3px;
	left: 0;
}
#top_third .area1 .human {
	position: absolute;
	bottom: 0;
	right: -4%;
}
#top_third .btn {
    margin: 0 auto;
}
#top_third .area2 h3 {
	font-size: 1.7rem;
	margin: 0 0 10px;
	text-align: center;
}
#top_third .area2 .img {
	width: 100%;
	height: 190px;
	margin: 0 0 15px;
}
#top_third .area2 .text {
	width: 100%;
}

#top_profile {
	padding: 35px 0 20px;
}
#top_profile h2 {
	margin: 0 0 20px;
}
#top_profile .area1 {

}
#top_profile .area1 .ttl {
	width: 50%;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: solid 1px #000;
}
#top_profile .area1 .ttl .name {
	font-size: 1.6rem;
	margin-bottom: 10px;
}
#top_profile .area1 .ttl .name span {
	font-size: 1rem;
}
#top_profile .area1 .ttl .job {
	font-size: 1.2rem;
	line-height: 1.5;
}
#top_profile .area1 .ttl .job a {
	display: block;
	width: 60%;
	margin-top: 5px;
}
#top_profile .area1 p.profile {
  font-size: 1.2rem;
}
#top_profile .area1 p.profile .space_br {
	display: block;
	height: 1em;
}
#top_profile .area1 p.profile .right {
	float: right;
	width: 47%;
	margin: -130px 0 10px 4%;
}
#top_profile .area1 p.profile .li {
	padding-left: 1.2em;
	position: relative;
}
#top_profile .area1 p.profile .li:before {
	content: '● ';
	font-size: 1rem;
	position: absolute;
	top: 0;
	left: 0;
}
#top_profile .btn {
	margin: auto;
}

#top_satei {
	padding: 31px 0 34px;
}
#top_satei h2 {
	margin: 0 0 20px;
	font-size: 2rem;
	font-weight: normal;
}
#top_satei h2 span {
	font-size: 1.3rem;
	line-height: 1.5;
  display: inline-block;
}

#top_blog {
	padding: 31px 0 50px;
	overflow: hidden;
}
#top_blog h2 {
	margin: 0 0 20px;
	position: relative;
}
#top_blog h2 span {
	font-size: 1.3rem;
	line-height: 1.5;
  display: inline-block;
}
#top_blog h2:before {
	content: '';
	background: url(../img/top/blog_ttl_icon.png) no-repeat top;
	background-size: 100%;
	width: 18%;
	height: 50px;
	position: absolute;
	top: -15px;
	left: 7%;
}
#top_blog .slide_wrap {
  padding: 0 20px 30px;
}
#top_blog .boxes {
}
#top_blog .box {
}
#top_blog .box .img {}
#top_blog .box .text {
	background: #fff;
	padding: 0.7em 15px;
}
#top_blog .box .text p {
	margin-bottom: 0;
	font-size: 1.2rem;
	line-height: 1.5;
}
#top_blog .btn {
	margin: auto;
}

/* ----------------------------------------
	達人を探す search_ichiran.html
---------------------------------------- */

#search_form {}
#search_form .form_block {
	background: #feecd4;
	padding: 20px 5.666% 10px;
}
#search_form .form_block p.next_form {
	line-height: 3em;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 0;
}
#search_form .form_block .searchBox {
   width: 100%;
}
#search_form .form_block .searchBox.genre {
	margin-bottom: 10px;
}
#search_form .form_block .form_inner.second .searchBox {
  width: 100%;
 	height: auto;
	padding: 10px 0;
}
#search_form .form_block .searchBox.shikaku {
	margin-bottom: 10px;
}
#search_form .form_block .searchBox.shikaku .check-wrap {
}
#search_form .form_block .form_inner.second .check_box {
	display: inline-block;
	padding: 5px 0;
}
#search_form .form_block .searchBox.pref .searchBox_ttl,
#search_form .form_block .searchBox.genre .searchBox_ttl {
  width: 14%;
}
#search_form .form_block .icon {
	margin: 10px auto;
}
#search_form .form_block .searchBox.radio,
#search_form .form_block .searchBox.check {
  width: 100%;
 	height: 3em;
	margin-bottom: 10px;
}
#search_form .form_block .searchBox.radio .radio-wrap,
#search_form .form_block .searchBox.check .check-wrap {
	width: 100%;
	padding-left: 15px;
	margin-top: -4px;
}
#search_form .form_block .searchBox.radio .radio-wrap .txt,
#search_form .form_block .searchBox.check .check-wrap .txt {
	font-size: 1rem;
	font-weight: bold;
	padding: 0 10px 0 5px;
	display: inline-block;
	line-height: 1;
}

#search_form .area_caution p,
#search_list .area_error p {
	color: #ff9000;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 1;
	margin-bottom: 15px;
}
#search_list .area_error {
	padding: 30px 0 0;
}

#search_list {
	padding: 15px 0 40px;
}
body.favorite #search_list {
	padding: 0 0 40px;
}
#search_list .search_count {
  margin: 0;
	line-height: 1;
}
#search_list .search_count .count {
	font-size: 1.8rem;
  color: #ff9000;
}
#search_list .boxes {

}
#search_list .box {
	width: 100%;
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
	padding: 20px 0 30px;
}
#search_list .box p {
	margin-bottom: 0;
}
#search_list .box p.com {
	font-weight: bold;
	margin-bottom: 10px;
}
#search_list .box .img {
  margin-bottom: 5px;
}
#search_list .box .name {
  font-size: 2.1rem;
	display: flex;
	align-items: center;
	font-weight: bold;
}
#search_list .box .name .sub {
	font-size: 1rem;
	line-height: 1.5;
	font-weight: normal;
	padding: 5px 0 0 1em;
}
#search_list .box .add {
	font-size: 1.2rem;
	line-height: 1.5;
  margin-bottom: 10px;
}
#search_list .box .desc {
  font-size: 1.2rem;
	margin-bottom: 25px;
}
#search_list .box .btns {
	display:flex;
	justify-content: space-between;
}
#search_list #page_nav {
	margin-top: 30px;
}

/* ----------------------------------------
	達人を探す　詳細 search_detail.html
---------------------------------------- */

#search_detail {
 padding-bottom: 40px;
}
#search_detail h3 {
 margin-bottom: 20px;
}
#search_detail .to_form {
 display:none;
 text-align: center;
 padding-bottom: 20px;
}

#search_detail .area_com {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding-bottom: 30px;
}
#search_detail .area_com .left {
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 margin-bottom: 20px;
}
#search_detail .area_com .left .logo {
 margin-right: 20px;
 width: 19.4%;
}
#search_detail .area_com .left .text {
	width: 77.6%;
}
#search_detail .area_com .left .text p {
 font-size: 1.2rem;
 line-height: 1.64;
 margin: 0;
}
#search_detail .area_com .left .text p.com {
 font-size: 1.4rem;
 font-weight: bold;
}
#search_detail .area_com .left .text p.com a {
	color: #ff9000;
	border-bottom: solid 1px #ff9000;
}
#search_detail .area_com .left .text p.com a:hover {
	text-decoration: none;
	border-bottom: none;
}
#search_detail .area_com .right {
 width: 100%;
 height: 110px;
}
#search_detail .area_com .right iframe {
	max-width: 100%;
}
#search_detail .area_person {
 padding: 30px 0 20px;
}
#search_detail .area_person .img {
 width: 100%;
 margin-bottom: 20px;
 overflow: hidden;
 position: relative;
}
#search_detail .area_person .text {
 width: 100%;
 position: relative;
}
#search_detail .area_person .text .name {
 font-size: 2.1rem;
 line-height: 1.4;
 padding-bottom: 12px;
 margin-bottom: 20px;
 border-bottom: solid 1px #000;
 position: relative;
}
#search_detail .area_person .text .name .sub {
 font-size: 1rem;
 display: block;
}
#search_detail .area_person .text .name.representative:after {
	content: '';
	display:block;
	background: url(../img/search/icon_representative.png) no-repeat bottom;
	background-size: 100%;
	width: 15%;
	height: 68px;
  position: absolute;
	bottom: 10px;
	right: 44%;
}
#search_detail .area_person .text .status {
}
#search_detail .area_person .soudan_btn3 {
	padding-bottom: 25px;
  margin: auto;
}
#search_detail .area_person .text .status li {
 display: flex;
 font-size: 1.2rem;
 margin-bottom: 12px;
}
#search_detail .area_person .text .status li p {
	width: 86.4%;
  padding-left: 1em;
  line-height: 1.428;
	margin: 0;
}
#search_detail .area_person .text .status li .ttl {
 width: 13.6%;
 border-right: solid 1px #ccc;
 font-weight: bold;
 padding-left: 0;
}
#search_detail .area_person .text .fav_btn {
 position: absolute;
 top: 0;
 right: 0;
 width: 41.8%;
}
#search_detail .area_person .text .fav_btn a {
 width: 100%;
 height: 40px;
}
#search_detail .area_person .text .fav_btn.off a {
 background: url(../img/common/favo_off.png) no-repeat left 16px center;
 background-size: 15px;
}
#search_detail .area_person .text .fav_btn.on a {
 background: url(../img/common/favo_on.png) no-repeat left 16px center;
 background-size: 15px;
}
#search_detail .area1 {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 border-radius: 10px;
 padding: 15px 0 15px;
 margin-bottom: 0;
}
#search_detail .area1 .box {
 width: 100%;
}
#search_detail .area1 .box:first-child {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
  padding-bottom: 16px;
}
#search_detail .area1 .box:last-child {
 padding-top: 16px;
}
#search_detail .area2 {
}
#search_detail .area2 .box {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
  padding: 16px 0;
  width: 100%;
}
#search_detail .area2 .box .icons {
	padding: 7px 0;
	display:flex;
}
#search_detail .area2 .box .icons li {
	width: 40px;
	margin: 0 5px 5px 0;
}
#search_detail .area_meta .box h5 {
 display: flex;
 align-items: center;
 font-size: 1.2rem;
 line-height: 1;
 margin-bottom: 5px;
}
#search_detail .area_meta .box h5 img {
 margin-right: 7px;
 width: 15px;
}
#search_detail .area_meta .box p {
 font-size: 1.2rem;
 margin: 0;
}
#search_detail .area3 {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area3 .box {
 width: 100%;
 margin-bottom: 20px;
}
#search_detail .area3 .box p {
 margin-top: -4px;
}
#search_detail .area3 .box .soudan_btn3 {
	width: 74.6%;
  margin: 15px auto 0;
}
#search_detail .area4 {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 30px;
}
#search_detail .area4 .movie {
 width: 100%;
 height: 190px;
}
#search_detail .area_news {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 30px;
}
#search_detail .area_news h3 {
 margin-bottom: 17px;
}
#search_detail .area_news li {
 line-height: 1.5;
 margin-bottom: 14px;
 padding-left: 1em;
 position: relative;
}
#search_detail .area_news li:before {
 content: '';
 background: #ff9000;
 display:inline-block;
 width: 6px;
 height: 6px;
 border-radius: 50%;
 position:absolute;
 left: 0;
 top:0.65em;
}
#search_detail .area_news .btn {
	padding-top: 15px;
	margin: auto;
}
#search_detail .area_book {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area_book .box {
 background: #f2f1ea;
 border-radius: 5px;
 width: 100%;
 display: flex;
 justify-content: space-between;
 padding: 20px 5.33%;
 margin-bottom: 20px;
}
#search_detail .area_book .box .img {
 width: 28.8%;
}
#search_detail .area_book .box .text {
 width: 63.56%;
 display: flex;
 flex-wrap: wrap;
 align-items:flex-end;
}
#search_detail .area_book .box .text p {
 line-height: 1.4;
 font-size: 1.5rem;
 font-weight: bold;
 margin-bottom: 0;
}
#search_detail .area_book .box .text p .sub {
 font-size: 1.2rem;
 display: block;
 margin-bottom: 5px;
}
#search_detail .area_book .box .text .to_store {
}
#search_detail .area_movies {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area_movies .ttl {
	display: flex;
	justify-content: space-between;
}
#search_detail .area_movies .ttl .link {
	font-size: 1.2rem;
	font-weight: bold;
}
#search_detail .area_movies .ttl .link:after {
	content: url(../img/search/movie_link_arrow.png);
	margin-left: 10px;
}
#search_detail .area_movies .box {
 width: 100%;
 height: 190px;
 margin-bottom: 20px;
}
#search_detail .area_taidan {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area_taidan .box {
 width: 100%;
 margin-bottom: 20px;
}
#search_detail .area_taidan .box p {
 margin-top: -8px;
}
#search_detail .area_taidan .movie {
 width: 100%;
 height: 190px;
}
#search_detail .area_voice {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area_voice .row {
 flex-wrap: wrap;
 justify-content: flex-start;
}
#search_detail .area_voice .box {
 background: #f2f1ea;
 border-radius: 10px;
 padding: 16px 20px 14px;
 margin-bottom: 20px;
}
#search_detail .area_voice .box .left {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
}
#search_detail .area_voice .box h5 {
 font-size: 1.4rem;
 margin-bottom: 6px;
}
#search_detail .area_voice .box .meta {
 display: flex;
 align-items: center;
 font-size: 1.2rem;
 line-height: 1;
 padding-bottom: 12px;
}
#search_detail .area_voice .box .age {
 width: 5.5em;
}
#search_detail .area_voice .box .naiyou {
 font-size: 1.2rem;
 line-height: 1;
}
#search_detail .area_voice .box .naiyou span {
 background: #fff;
 display: inline-block;
 font-size: 1.2rem;
 line-height: 1;
 color: #ff9000;
 border: solid 1px #ff9000;
 border-radius: 9px;
 margin-right: 10px;
 padding: 1px 8px 2px;
}
#search_detail .area_voice .box p.txt {
 font-size: 1.4rem;
 margin: 0.5em 0 0;
}
#search_detail .area_voice .box .left .img {
	padding: 0 0 15px;
}
#search_detail .area_voice .box .right .movie {
	margin-top: 15px;
	width: 100%;
	height: 190px;
}
#search_detail .area_voice .more {
	color: #ff9000;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	padding: 0 0 10px;
}
#search_detail .area_voice .more a {
	color: #ff9000;
}
#search_detail .area_voice .more a:hover {
	text-decoration: none;
}

#search_detail .area_suisen_voice {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area_suisen_voice .row {
 flex-wrap: wrap;
 justify-content: flex-start;
}
#search_detail .area_suisen_voice .box {
 background: #f2f1ea;
 border-radius: 10px;
 padding: 16px 20px 14px;
 margin-bottom: 20px;
}
#search_detail .area_suisen_voice .box .l_left {
	padding-bottom: 11px;
}
#search_detail .area_suisen_voice .box .left {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
	padding-bottom: 6px;
	margin-bottom: 6px;
}
#search_detail .area_suisen_voice .box h5 {
 font-size: 1.4rem;
 margin-bottom: 6px;
}
#search_detail .area_suisen_voice .box .option {
 font-size: 1.2rem;
 line-height: 1.5;
 margin-bottom: 6px;
}
#search_detail .area_suisen_voice .box p.txt {
 font-size: 1.4rem;
 margin: 0.5em 0 0;
}

#search_detail .area_episode {
 background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
 background-size: 423px;
 padding: 30px 0 10px;
}
#search_detail .area_episode .row {
 flex-wrap: wrap;
 justify-content: flex-start;
}
#search_detail .area_episode .box {
 background: #feecd4;
 border-radius: 10px;
 padding: 16px 20px 14px;
 margin-bottom: 20px;
}
#search_detail .area_episode .box .left {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
	padding-bottom: 6px;
	margin-bottom: 6px;
}
#search_detail .area_episode .box h5 {
 font-size: 1.4rem;
 margin-bottom: 6px;
 display: flex;
}
#search_detail .area_episode .box h5 span.icon {
	width: 40px;
	margin: 3px 10px 0 0;
}
#search_detail .area_episode .box h5 span.catch {
	width: calc(100% - 50px);
}
#search_detail .area_episode .box p.txt {
 font-size: 1.4rem;
 margin: 0.5em 0 0;
}

/* ----------------------------------------
	相談フォーム search_soudan_form.html
---------------------------------------- */

#search_form_block1 {
  padding-bottom: 20px;
}
#search_form_block1 h3.mail {
	font-size: 1.4rem;
	text-align: center;
	margin-bottom: 17px;
}
#search_form_block1 h3.mail span {
	display: inline-block;
	padding-left: 30px;
	position: relative;
}
#search_form_block1 h3.mail span:before {
	content: '';
	display: inline-block;
	background: url(../img/common/mail_icon.png) no-repeat center;
	background-size: 100%;
	width: 20px;
	height: 18px;
	position: absolute;
	top: 0.2em;
	left: 0;
}
#search_form_block1 .row {
 background: #feecd4;
 border-radius: 10px;
 padding: 15px 4.477% 15px;
 position: relative;
}
#search_detail .area1 .box {
 width: 100%;
}
#search_form_block1 .row .left {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
  padding-bottom: 16px;
	display: flex;
	align-items: center;
}
#search_form_block1 .row .left .img {
	width: 24%;
	margin-right: 15px;
}
#search_form_block1 .row .left .name {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0;
}
#search_form_block1 .row .left .name .sub {
	font-size: 1rem;
	font-weight: normal;
	display: block;
}
#search_form_block1 .row .right {
	padding-top: 10px;
}
#search_form_block1 .row .right .text {
	width: 100%;
}
#search_form_block1 .row .right .com {
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0;
}
#search_form_block1 .row .right .add {
	font-size: 1rem;
	line-height: 1.5;
	margin-bottom: 0;
}
#search_form_block1 .row .right .btn {
	width: 32%;
	position: absolute;
	top: 25px;
	right: 4.477%;
}
#search_form_block1 .row .right .btn a {
	font-size: 1rem;
}

/* ----------------------------------------
	問い合わせフォーム 共通
---------------------------------------- */

#contact_form {
  padding: 0 0 50px;
}
#contact_form h2 {
	margin-bottom: 13px;
}
#contact_form h3 {
	margin-bottom: 0;
}
#contact_form p.desc {
  text-align: left;
  line-height: 2;
  margin-bottom: 13px;
}
#contact_form p.desc span  {
  font-size: 0.8125em;
}
#contact_form form {
}
#contact_form .error {
	background: #f2f1ea;
	padding: 10px;
}
#contact_form .error li {
	color: #cd0000;
	font-size: 1.2rem;
	line-height: 1.5;
	list-style: circle;
	list-style-position: inside;
}
#contact_form table {
  width: 100%;
  margin: 10px auto 30px;
}
body.search_soudan_form #contact_form table {
  width: 100%;
	margin: 10px auto 30px;
}
#contact_form table p {
  margin: 0;
	font-size: 1.2rem;
	line-height: 1.5;
}
#contact_form tr {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
  text-align: left;
}
#contact_form th {
  width: 100%;
  padding: 17px 0 10px;
	font-weight: bold;
  vertical-align: top;
	display: block;
}
#contact_form th .his {
	color: #fff;
	background: #ff9000;
	font-size: 1.0rem;
	line-height: 14px;
	padding: 0 3px 1px;
	margin-top: 0;
	float: right;
}
#contact_form th .sub {
	color: #ff9000;
	font-size: 1rem;
	margin-top: -2px;
	display: block;
}
#contact_form td {
  width: 100%;
  padding: 0 0 15px;
	display: block;
}
#contact_form td.radio,
#contact_form td.checkbox {
	padding: 0 0 15px;
}
#contact_form td .radio-text,
#contact_form td .check-text {
  margin: 0 0 15px;
	display: block;
	width: 100%;
	position:relative;
}
#contact_form td.kiboubi select {
	width: 120px;
	margin-right: 10px;
}
#contact_form td.kiboubi p.txt {
	font-size: 1.2rem;
	margin-top: 10px;
}
#contact_form td .vertical-item {
	display: block;
	margin-bottom: 10px;
}
/* form */
#contact_form button[type="submit"],
#contact_form input[type="submit"],
#contact_form input[type="button"] {
	width: 74.62%;
}
#contact_form button[type="submit"]:disabled,
#contact_form input[type="submit"]:disabled,
#contact_form input[type="button"]:disabled {
	background: #ccc;
	pointer-events: none;
	border: none;
}
#contact_form.comfirm button[type="submit"],
#contact_form.comfirm input[type="submit"],
#contact_form.comfirm input[type="button"] {
	width: 48%;
	margin: 0 1%;
}
button[type="submit"].back,
input[type="submit"].back,
input[type="button"].back {
	background: #cccccc url(../img/common/btn_arrow_left.png) no-repeat left 10px center;
}
#contact_form input[type="text"], #contact_form input[type="tel"], #contact_form input[type="email"], #contact_form input[type="date"], #contact_form select{
  width: 100%;
  padding: 12px 12px;
  border: none;
  background: #f3f3f3;
  border-radius: 0;
  line-height: 1;
}
#contact_form select {
	/* color: #bbbbbb; */
	position:relative;
}
#contact_form select:after {
	content: '';
	display: inline-block;
	background: url() no-repeat top;
	width: 6px;
	height: 8px;
	position: absolute;
	top: 15px;
	right: 20px;
}
#contact_form select option {
	color: #000;
	font-size: 1.2rem;
	font-weight: normal;
}
#contact_form input[type="radio"],
#contact_form td input[type="checkbox"] {
  position: absolute;
  opacity: 0;/*既存のチェックボックスを見えなくする*/
	width: 15px;
	height: 15px;
	z-index:5;
}
#contact_form .check-text:before {/*チェックボックスの枠*/
  content: '';
	background: #f3f3f3;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: 0px;
  margin-right: 19px;
  vertical-align: middle;
  cursor: pointer;
  text-align: center;
}
input[type="radio"]:checked + .radio-text:after,
input[type="checkbox"]:checked + .check-text:after {/*チェックアイコン*/
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 15px;
  height: 15px;
  background: url("../img/common/check_icon.png") no-repeat center;
	background-size: 100%;
}
#contact_form textarea {
  padding: 15px 0 15px 20px;
  width: 100%;
  height: 150px;
  border: none;
  background: #f3f3f3;
}
#contact_form input::placeholder , #contact_form table td textarea::placeholder {
  color: #bbbbbb;
	font-size: 1.2rem;
	font-weight: normal;
}
#contact_form input[type="date"] {
	color: #bbbbbb!important;
	font-size: 0.875em;
}
#contact_form .doui {
	text-align: center;
}
#contact_form .doui input[type="checkbox"] {
	margin-right: 1rem;
}
#contact_form .doui a {
	text-decoration: underline;
}
#contact_form .formbt {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#contact_form .formbt a {
	width: 48%;
	margin: 0 1%;
}
#contact_form .formbt a.back {
	background: #cccccc url(../img/common/btn_arrow_left.png) no-repeat left 10px center;
}

#contact_form.done {
  padding: 0 0 40px;
}
#contact_form.done h3 {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 0.5em;
}
#contact_form.done p {
	font-size: 1.4rem;
	text-align: left;
	margin-bottom: 0px;
}

/* ----------------------------------------
営業担当者の方へ
---------------------------------------- */
#contact_form .tsr_block {
  padding: 0 0 10px;
}
#contact_form .tsr_block h2 {
	margin-bottom: 20px;
}
#contact_form .tsr_block h3 {
	margin: 20px 0 20px;
}
#contact_form .tsr_block p.txt1 {
	margin-bottom: 10px;
}
#contact_form .tsr_block .o_area {
	background: #feecd4;
	padding: 16px 5.66%;
	margin-bottom: 10px;
}
#contact_form .tsr_block .o_area li {
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 0.5em;
}
#contact_form .tsr_block .frow {
}
#contact_form .tsr_block .frow li {
	background: url(../img/common/dotted_line_vertical.png)repeat-y bottom left 14px;
	position: relative;
	padding: 0 0 20px 35px;

}
#contact_form .tsr_block .frow li:last-child {
	background: url();
}
#contact_form .tsr_block .frow .num {
	color: #fff;
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1;
	background: #ff9000;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
}
#contact_form .tsr_block .frow h6 {
	font-size: 1.6rem;
	padding-top: 1px;
	margin-bottom: 5px;
}
#contact_form .tsr_block .frow p {
	font-size: 1.4rem;
	font-weight: normal;
	margin-bottom: 0;
}

/* ----------------------------------------
* 達人の動画＆ブログ　一覧　blog-ichiran.html　
---------------------------------------- */

#blog_list {
 padding: 0 0 20px;
}
 #blog_list h2 {
	 margin-bottom: 30px;
 }
 #blog_list .boxes {
	 padding-bottom: 20px;
 }
#blog_list .box {
 margin-bottom: 30px;
}
#blog_list .img {
 width: 100%;
 margin-bottom: 20px;
}
#blog_list .text {
	width: 100%;
}
#blog_list .text .meta {
	 display: flex;
	 justify-content: space-between;
	 margin-bottom: 10px;
}
#blog_list .text .meta .category_name span {
	 display: inline-block;
	 font-size: 1.2rem;
	 background: #feecd4;
	 line-height: 22px;
	 padding: 0 10px;
	 margin: 0 5px 2px 0;
}
#blog_list .text .meta .date {
 display: inline-block;
 font-size: 1.4rem;
 padding-top: 1px;
}
#blog_list .text h4.ttl {
 font-size: 2rem;
 margin-bottom: 5px;
}
#blog_list .text p.cont {
 font-size: 1.4rem;
 margin-bottom: 0;
}

/* ----------------------------------------
* 達人の動画＆ブログ　詳細　blog-detail.html　
---------------------------------------- */

#blog_detail {
	padding: 0 0 20px;
}
.detail_head .post_title {
	font-size: 1.7rem;
	text-align: left;
	margin-bottom: 10px;
}
.detail_head .meta {
	display: flex;
 justify-content: space-between;
 margin-bottom: 10px;
}
.detail_head .meta .category_name span {
	display: inline-block;
	font-size: 1rem;
	font-weight: bold;
	background: #feecd4;
	line-height: 22px;
	padding: 0 10px;
	margin: 0 5px 2px 0;
}
.detail_head .meta .date {
	display: inline-block;
	font-size: 1.2rem;
	padding-top: 1px;
}
.detail_head .eyecatch {
	margin-bottom: 16px;
}
.detail_content {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
	padding-bottom: 10px;
}
#blog_detail .detail_content h2 {
	background: #ff9000;
	color: #fff;
	font-size: 1.5rem;
	text-align: left;
	width: 100%;
	padding: 12px 15px;
	margin-bottom: 20px;
}
#blog_detail .detail_content h3 {
 border: solid 1px #ccc;
 border-left: solid 5px #ff9000;
 font-size: 1.4rem;
 text-align: left;
 width: 100%;
 padding: 11px 15px 10px;
 margin-bottom: 20px;
}
 #blog_detail .detail_content h4 {
	font-size: 1.4rem;
	border-bottom: 1px #222 solid;
	text-align: left;
	margin-bottom: 20px;
}
 #blog_detail .detail_content h5 {
	 font-size: 1.4rem;
	 text-align: left;
}
 #blog_detail .detail_content h6 {
	text-align: left;
}
.detail_content strong {
	font-weight: bold;
	color: #cd0000;
}
.detail_content a {
	font-size: 1em;
	color: #ff9000;
	text-decoration: underline;
}
.detail_content a:hover {
	text-decoration: none;
}
.detail_content .small {
	font-size: 0.875em;
}
.detail_content p {
	font-size: 1em;
	font-weight: normal;
	text-align: left;
	margin: 0 0 2em;
}
.detail_content hr {
	border-bottom: 1px solid #ccc;
	margin: 2rem 0;
	clear: both;
}
.detail_content ul,
.detail_content ol,
.detail_content dl,
.detail_content blockquote,
.detail_content pre,
.detail_content table {
	margin-bottom: 20px;
}
.detail_content ol {
	list-style: decimal;
}
.detail_content ul,
.detail_content ol {
}
.detail_content li > ul,
.detail_content ul > ol,
.detail_content ol > ol,
.detail_content ol > ul {
	margin-bottom: 0px;
}
.detail_content ul {
	list-style: none;
	text-align: left;
}
.detail_content ul li {
	position: relative;
	padding-left: 1em;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0.75em;
}
.detail_content ul li ul {
	padding: 0.5em 0 0;
}
.detail_content ul li ul li {
	position: relative;
	font-size: 1em;
	line-height: 1.5;
	font-weight: normal;
	list-style: none;
	margin-bottom: 0.5em;
}
.detail_content ul li:before {
	content: '';
	background: #ff9000;
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	top: 0.5em;
	left: 0;
}
.detail_content ul li ul li:before {
	content: '';
	background: #fff;
	position: absolute;
	width: 6px;
	height: 6px;
	border: solid 2px #ff9000;
	border-radius: 3px;
	top: 0.5em;
	left: 0;
}

.detail_content dl dt {
	font-weight: bold;
}
.detail_content dl dd {
}
.detail_content pre {
	padding: 2rem;
	overflow: scroll;
	font-family: 'Courier', monospace;
}
.detail_content blockquote {
	clear: both;
	margin: 0 0 2.8rem;
	padding: 3rem 2rem 3.5rem 5.5rem;
	position: relative;
	border: 1px #e5e5e5 solid;
	background: #fafafa;
}
.detail_content blockquote:before {
	content: '';
	font-family: 'FontAwesome';
	font-size: 36px;
	color: #e7e7e7;
	position: absolute;
	top: 2rem;
	left: 1rem;
}
.detail_content blockquote cite {
	position: absolute;
	right: 2rem;
	bottom: 1rem;
	font-size: 12px;
	color: #808080;
}
.detail_content table {
	border: 1px #ccc solid;
	width: 100%;
}
.detail_content table th,
.detail_content table td {
	padding: 0.5em;
	border: #ccc solid 1px;
}
.detail_content table th {
	background: #f2f1ea;
	font-weight: bold;
	text-align: left;
	width: 30.30303%;
}
.detail_content img.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1.5rem;
}
.detail_content img.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}
.detail_content .row {
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.detail_content .col_2 {
	width: 50%;
	padding: 0 1%;
}
.detail_content .col_3 {
	width: calc(100% / 3);
	padding: 0 1%;
}
.detail_content .col_4 {
	width: 25%;
	padding: 0 1%;
}

.detail_foot {
 padding-top: 30px;
}
.detail_foot p {
 margin: 0;
}
.detail_foot .profile {
 margin-bottom: 20px;
}
.detail_foot .profile h3 {
 margin-bottom: 20px;
}
.detail_foot .profile .boxes {
 display: flex;
 justify-content: space-between;
}
.detail_foot .profile .img {
 width: 19.4%;
}
.detail_foot .profile .text {
 width: 78%;
}
.detail_foot .profile .text .name {
 font-size: 1.5rem;
 font-weight: bold;
 margin-top: -5px;
}
.detail_foot .profile .text .name .sub {
 font-size: 1rem;
 margin-left: 12px;
}
.detail_foot .profile .text .comment {
 font-size: 1.2rem;
 line-height: 1.8;
}
.detail_foot .category {
 background: #f2f1ea;
 padding: 16px 5.666% 16px;
}
.detail_foot .category h5 {
 font-size: 1.5rem;
 text-align: center;
 margin-bottom: 15px;
}
.detail_foot .category .boxes {
 display: flex;
 justify-content: space-between;
}
.detail_foot .category .box {
 width: 47.45%;
}
.detail_foot .category .box .img {
	margin-bottom: 10px;
}
.detail_foot .category .box .text {
}
.detail_foot .category .box .text .date {
 font-size: 1.1rem;
 line-height: 1.5;
 margin-bottom: 5px;
}
.detail_foot .category .box .text .ttl {
 font-size: 1.2rem;
 font-weight: bold;
 line-height: 1.5;

}
.detail_foot .page_nav {
 width: 85%;
 margin: auto;
 padding-top: 30px;
 text-align: center;
}
span.arrow {
 color: #ff9000;
 font-weight: bold;
 margin: 0 10px;
}
.detail_foot .page_nav .prev {
 font-size: 1.2rem;
 float: left;
 font-weight: bold;
 padding: 5px 0;
}
.detail_foot .page_nav .next {
 font-size: 1.2rem;
 float: right;
 font-weight: bold;
 padding: 5px 0;
}
.detail_foot .page_nav .to_list a {
 display: inline-block;
 font-size: 1.2rem;
 line-height: 26px;
 color: #fff;
 background: #ff9000;
 border-radius: 5px;
 padding: 0 10px;
 margin: auto;
}
.detail_foot .page_nav:after {
 content: '';
 display: block;
 clear:both;
}

/* ----------------------------------------
* サイドバー
---------------------------------------- */
#side {
  padding-top: 50px;
}
#side .side-block {
	padding-bottom: 22px;
}
#side .side-title {
	width: 100%;
	border-bottom: solid 1px #000;
	padding-bottom: 6px;
	margin-bottom: 20px;
}
#side .side-title .ttl {
 font-size: 1.5rem;
 font-weight: bold;
}
#side .side-title .link {
 background: #ff9000;
 font-size: 1rem;
 line-height: 18px;
 padding: 0 5px;
 float: right;
 margin-top: 5px;
}
#side .side-title .link a {
 color: #fff;
}
#side .side-title .link span {
 margin-left: 0.5em;
}
#side .side-title .link a:hover {
 text-decoration: none;
 opacity: 0.7;
}
#side .menu_area {
 text-align: left;
}
#side .menu_area ul {

}
#side .menu_area li a {
	display: block;
 font-weight: bold;
 border-bottom: solid 1px #fff;
}
#side .menu_area .main_menu {
 padding-bottom: 14px;
}
#side .menu_area .main_menu li a {
 background: #feecd4 url(../img/common/btn_arrow_right_orange.png) no-repeat right 10px center;
 font-size: 1.2rem;
 padding: 12px 0 12px 20px;
 transition-duration: 0s!important;
}
#side .menu_area .sub_menu li a {
 background: #f2f1ea url(../img/common/btn_arrow_right_gray.png) no-repeat right 10px center;
 font-size: 1rem;
 padding: 11px 0 11px 20px;
}
#side .menu_area .main_menu li:hover a {
	background: #ffc000 url(../img/common/btn_arrow_right.png) no-repeat right 10px center;
	color: #fff;
	text-decoration: none;
}
#side .menu_area .main_menu li.current-menu-item a,
#side .menu_area .main_menu li.current-menu-parent a {
		background: #ff9000 url(../img/common/btn_arrow_right.png) no-repeat right 10px center;
		color: #fff;
		text-decoration: none;
}
#side .posts li {
 margin-bottom: 10px;
 display: flex;
 justify-content: space-between;
}
#side .posts li:last-child {
 margin-bottom: 0;
}
#side .posts .side_blog_img {
 width: 20%;
 display: flex;
 align-items: center;
 background: #ededed;
}
#side .posts .side_blog_tx {
	width: 76%;
	text-align: left;
}
#side .posts .side_blog_tx .side_time {
	font-size: 1rem;
}
#side .posts .side_blog_tx .blog_tx {
	font-size: 1.2rem;
	line-height: 1.5;
}
#side .categories .cat-item {
	display: inline-block;
	margin: 0 5px 5px 0;
}
#side .categories .cat-item a {
	display: inline-block;
	color: #000;
	font-size: 1rem;
	line-height: 1.5;
	background: #feecd4;
	padding: 5px 0.5em;
}
#side .categories .cat-item a:hover {
	text-decoration: none;
}

/* ----------------------------------------
* サイトマップ
---------------------------------------- */
#sitemap {
	padding:0 0 0;
}
#sitemap h2 {
	margin-bottom: 26px;
}
#sitemap .sitemap_menu {
	display: flex;
	justify-content: space-between;
}
#sitemap .sitemap_menu ul {
	width: 50%;
}
#sitemap .sitemap_menu li {
	margin-bottom: 23px;
	padding-left: 15px;
	position: relative;
}
#sitemap .sitemap_menu li:last-child {
	margin-bottom: 0;
}
#sitemap .sitemap_menu li:before {
	content: '';
	background: url(../img/common/btn_arrow_right_orange.png) no-repeat left top 8px;
	width: 6px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* ----------------------------------------
* オススメの査定サイト recommended_site.html
---------------------------------------- */
#recommended_site {
	padding:0 0 40px;
}
#recommended_site .row {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
	margin-bottom: 30px;
	padding-bottom: 23px;
}
#recommended_site .img {
	margin-bottom: 30px;
}
#recommended_site .text {
}
#recommended_site .text p {
	margin-bottom: 0;
}
#recommended_site .text_head {
	margin-bottom: 20px;
}
#recommended_site .text_head .ttl {
	 font-size: 1.8rem;
	 line-height: 1.5;
}
#recommended_site .text_head .url {
	font-size: 1.6rem;
	line-height: 1.5;
}
#recommended_site .text .content {
	 font-size: 1.4rem;
}

/* ----------------------------------------
* 推薦者の声 voice.html
---------------------------------------- */
#voice {
	padding:0 0 40px;
}
#voice .voice_box {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
	margin-bottom: 30px;
	padding-bottom: 23px;
}
#voice .img {
	margin-bottom: 30px;
}
#voice .movie {
	width: 100%;
	height: 190px;
	margin-bottom: 30px;
}
#voice .text {
}
#voice .text p {
	margin-bottom: 0;
}
#voice .text_head {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
#voice .text_head .logo {
	width: 20%;
}
#voice .text_head .prof {
	width: 77.1%;
}
#voice .text_head .prof .name {
 font-size: 2.1rem;
 line-height: 1.5;
 margin: -5px 0 0;
}
#voice .text_head .prof .com {
	 font-size: 1.4rem;
	 line-height: 1.5;
}
#voice .text_head .prof .position {
	font-size: 1.4rem;
	line-height: 1.5;
}
#voice .text .content {
	 font-size: 1.4rem;
}

/* ----------------------------------------
* ご利用のQ&A faq.html
---------------------------------------- */
#faq {
	padding:0 0 20px;
}
#faq p.desc {
	margin-bottom: 23px;
}
#faq h2 {
	margin-bottom: 30px;
}
#faq .faq_list {

}
#faq .faq_list li {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
 margin-bottom: 30px;
 padding-bottom: 26px;
}
#faq .faq_list li .f_q {
	font-size: 1.6rem;
	font-weight: bold;
	padding-left: 11%;
	padding-bottom: 19px;
	margin-bottom: 0;
	position: relative;
	line-height: 1.5;
}
#faq .faq_list li .f_q:before {
	content: '';
	display: block;
	background: url(../img/faq/icon_q.png) no-repeat top;
	background-size: 100%;
	width: 8%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#faq .faq_list li .f_a {
	font-size: 1.4rem;
	padding-left: 11%;
	margin-bottom: 0;
	position: relative;
}
#faq .faq_list li .f_a:before {
	content: '';
	display: block;
	background: url(../img/faq/icon_a.png) no-repeat top;
	background-size: 100%;
	width: 8%;
	height: 100%;
	position: absolute;
	top: 1px;
	left: 0;
}

/* ----------------------------------------
* 運営会社　operating_company.html
---------------------------------------- */

#company {
 padding: 0;
}
#company h2 {
 margin-bottom: 30px;
}
#company h3 {
 margin-bottom: 13px;
}
#company table {
 width: 100%;
 margin: 0 auto 30px;
}
#company table p {
 font-size: 1.2rem;
 line-height: 1.5;
	margin: 0;
}
#company tr {
	background: url(../img/common/dotted_line_beside.png) repeat-x bottom;
  background-size: 423px;
  text-align: left;
}
#company th {
  width: 100%;
  padding: 17px 0 10px;
	font-weight: bold;
  vertical-align: top;
	display: block;
}
#company td {
	width: 100%;
	display: block;
	padding: 0 0 15px;
}

/* ----------------------------------------
* プライバシーポリシー・利用規約　privacy.html terms_of_service.html
---------------------------------------- */
#privacy h2 {
	margin-bottom: 23px;
}
#privacy p.privacy_desc {
	margin-bottom: 0;
}
.privacy_list {
	line-height: 2;
	padding-bottom: 0;
}
.privacy_list dt {
	font-weight: bold;
}
.privacy_list dd {
		margin-bottom: 26px;
}
.privacy_list dd:last-child {
		margin-bottom: 0;
}
.privacy_list dd ol {
}
.privacy_list dd li {
	padding-left: 35px;
	position: relative;
}
.privacy_list dd li ol {
	padding-left: 5px;
}
.privacy_list dd li ol li {
	padding-left: 20px;
}
.privacy_list dd > ol {
  counter-reset: count 0;
}
.privacy_list dd ol > li:before {
  content: "（" counter(count) "）";
  counter-increment: count 1;
	position: absolute;
	top: 0;
	left: 0;
}
.privacy_list dd ol li > ol {
  counter-reset: count 0;
}
.privacy_list dd ol li ol > li:before {
  content: counter(count) "）";
  counter-increment: count 1;
	position: absolute;
	top: 0;
	left: 0;
}
.privacy_list .at_mark:before {
	content:'@';
}

/* ----------------------------------------
達人はここが違う difference_other.html
---------------------------------------- */
#difference_other {
	padding-bottom: 20px;
}
#difference_other h2 {
	margin-bottom: 30px;
}
#difference_other .block {
	padding-bottom: 23px;
}
#difference_other .row {

}
#difference_other .img {
	width: 100%;
	margin-bottom: 14px;
}
#difference_other .text {
  width: 100%;
}
#difference_other .text li {
	line-height: 2;
	font-weight: bold;
}
#difference_other p {
	margin-bottom: 0;
}
#difference_other p.bottom {
	margin-top: 14px;
}

/* ----------------------------------------
協会について operating_company.html
---------------------------------------- */

#op_company_profile {
	padding: 0 0 20px;
}
#op_company_profile h2 {
	margin: 0 0 20px;
}
#op_company_profile .area1 {

}
#op_company_profile .area1 .ttl {
	width: 100%;
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: solid 1px #000;
}
#op_company_profile .area1 .ttl .name {
	font-size: 1.6rem;
	margin-bottom: 10px;
}
#op_company_profile .area1 .ttl .name span {
	font-size: 1rem;
}
#op_company_profile .area1 .ttl .job {
	font-size: 1.2rem;
	line-height: 1.5;
}
#op_company_profile .area1 .ttl .job a {
	display: block;
	width: 60%;
	margin-top: 5px;
}
#op_company_profile .area1 p.profile {
  font-size: 1.2rem;
}
#op_company_profile .area1 p.profile .space_br {
	display: block;
	height: 1em;
}
#op_company_profile .area1 p.profile .right {
	float: right;
	width: 47%;
	margin: 10px 0 10px 4%;
}
#op_company_profile .area1 p.profile .li {
	padding-left: 1.2em;
	position: relative;
}
#op_company_profile .area1 p.profile .li:before {
	content: '● ';
	font-size: 1rem;
	position: absolute;
	top: 0;
	left: 0;
}
#op_company_profile .area2 {
	margin-top: 27px;
}
#op_company_profile .area2 h3 {
	font-size: 2rem;
	margin: -0.4em 0 20px;
}
#op_company_profile .area2 .img {
	width: 100%;
  height: 190px;
  margin: 0 0 30px;
}
#op_company_profile .area2 .text {
	width: 100%;
}
#op_company_profile .area2 .text p {
	font-size: 1.2rem;
}

/* ----------------------------------------
メディア実績 media.html
---------------------------------------- */
#media {
	padding: 0 0 50px;
}
#media.top_media {
	padding: 31px 0 50px;
}
#media h2 {
	margin: 0 0 20px;
}
#media .bans {
	margin: 0 0 30px;
}
#media .boxes {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 0 5.97% 20px;
}
#media .media_4 .box {
	width: 48.4848%;
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
	display: block;
}
#media a {
}
#media a:hover {
	text-decoration: none;
}
#media .box .img {
  margin-bottom: 10px;
}
#media .box .text {
	width: 100%;
	padding: 0;
}
#media .box.active .text {
	top: 0;
}
#media .box .text p {
	font-size: 1.3rem;
	line-height: 1.5;
	width: 100%;
	margin: 0;
}
#media .box .text p.ttl {
	margin-bottom: 0.5em;
	max-height: 4.7em;
	overflow: hidden;
}
#media .btn {
    margin: auto;
}
