@charset "UTF-8";
/**
* 部品群
* 
* 注意
* flex-basisはie11でバグがあるため不使用推奨
**/
/**
* 広告など
**/
.banner {}
* + .banner {
  margin-top: 1rem;
}
.banner img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.banner a {
  display: block;
}
@media (max-width: 767px) {}
.ads_wrap {
  margin-top: 1.75rem;
  padding: 2.5rem 0;
  background-color: #fff;
}
.ads_wrap img {
  max-width: 728px;
  margin: 0 auto 1.25rem;
}
@media (max-width: 767px) {}
/**
* 内側囲い一般
**/
.parts_wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 767px) {}
/**
* リスト一般
**/
.parts_list {
  list-style: none;
  margin: 1.75rem 1.75rem 1.75rem 3.75rem;
}
.parts_list li {
  margin-bottom: 0.3125rem;
}
.parts_list li:last-child {
  margin-bottom: 1rem;
}
.parts_list li span {
  width: 1.75rem;
  margin-left: -1.75rem;
  color: #595757;
  display: inline-block;
}
.parts_wrap .right_parts {
  text-align: right;
}
.parts_wrap .last_parts {
  margin-bottom: 1.75rem;
}
@media (max-width: 767px) {}
/**
* タイトル一般
**/
.parts_title {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1.5rem;
  padding-top: 1rem;
}
.parts_title img {
  margin: 0 0.5rem 0 0;
}
/* タイトルアイコン width */
.parts_title .faq_img {
  width: 2.25rem;
}
.parts_title .login_img {
  width: 2.25rem;
}
.parts_title .support_img {
  width: 2.25rem;
}
.parts_title .company_img {
  width: 2.25rem;
}
.parts_title .sitemap_img {
  width: 2.25rem;
}
.parts_title .tos_img {
  width: 2.25rem;
}
.parts_title .policy_img {
  width: 2.25rem;
}
.parts_title .notice_img {
  width: 2.25rem;
}
@media (max-width: 767px) {
  .parts_title {
    font-size: 22px;
    margin: 0 0 1rem;
    padding-top: 0;
  }
}
/**
* リード
**/
.parts_lead {
  margin: 0 auto 2.5rem;
  max-width: 980px;
  position: relative;
  padding: 10px 25px;
  border-top: solid 2px black;
  border-bottom: solid 2px black;
}
.parts_lead:before, .parts_lead:after {
  content: '';
  position: absolute;
  top: -10px;
  width: 2px;
  height: -webkit-calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: black;
}
.parts_lead:before {
  left: 10px;
}
.parts_lead:after {
  right: 10px;
}
.parts_lead p {
  margin: 0;
  padding: 0;
}
* + .parts_lead {
  margin: 2.5rem auto;
}
.parts_lead > p {
  font-size: 1rem;
  line-height: 1.8;
  padding: 40px;
  background: #fff
}
.parts_lead > p + p {
  margin-top: -60px;
}
@media (max-width: 767px) {
  .parts_lead {
  }
  .parts_lead p {
    font-size: 0.75rem;
	padding: 15px;
  }
	.parts_lead > p + p {
  margin-top: -15px;
}
  .parts_lead.text_underline {
    margin: 1.5rem auto;
  }
}
/**
* 注釈
**/
.parts_notes {
  color: #666;
}
/**
* ショートカットリンク
**/
.parts_link_shortcut {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.75rem;
}
* + .parts_link_shortcut {
  margin-top: 1rem;
}
.parts_link_shortcut > li {
  position: relative;
}
.parts_link_shortcut > li + li {
  padding-left: 2em;
}
.parts_link_shortcut > li + li::before {
  content: '';
  display: block;
  border-left: solid 1px;
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: calc(1em - 1px);
  z-index: 1;
  opacity: 0.5;
}
/**
 * 続きをよむ
 **/
 .readmore{
  position: relative;
  box-sizing: border-box;
  /*以下お好み*/
  /* ボーダーを付ける場合 */
  padding: 10px;
  /*border: 1px solid #CCC;*/
}

.readmore-content{
  position: relative;
  overflow: hidden;
  /*以下お好み*/
  /*高さの初期値*/
  height: 450px;
}
.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
  height: 50px;
  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
}
/* 続きを読むボタン */
.readmore-label{
  display: block;
  bottom: 5px;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin: 0 auto;
  z-index: 2;
  padding: 0 15px;
  background-color: #670000;
  border-radius: 10px;
  color: #FFF;
}
.readmore-label:before{
  content: '続きを読む';
}

.readmore-check{
  display: none;
}
/*チェック時にボタンを非表示*/
.readmore-check:checked ~ .readmore-label{
  /*
  position: absolute;
  left: 40%;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  bottom: auto;
  */
  /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションをコメントアウトして下の1行をコメント解除する */
  /* 「続きを読む」を押した後、元に戻すボタンを表示する場合は、上のオプションのコメントを解除して下の一行をコメントアウトする */
  display: none;
}
.readmore-check:checked ~ .readmore-label:before{
  content: '閉じる';
}
/*チェック時に高さを自動に戻す*/
.readmore-check:checked ~ .readmore-content{
  height: auto;
}
/*チェック時グラデーション等を削除*/
.readmore-check:checked ~ .readmore-content::before {
  display: none;
}
/**
* 警告やお知らせなど
**/
.parts_alert {
  border: 1px solid #f00;
  background: #fff;
  color: #f00;
  font-size: 0.875rem;
  text-align: center;
  padding: 1.25rem;
  margin: 0 auto 0.5rem;
}
.parts_alert .er {
  width: 100%;
  margin-top: 0.3125rem;
}
.parts_alert .er span {
  display: inline-block;
  color: #f00;
  font-size: 0.875rem;
  margin-left: 0.3125rem;
}
.parts_alert em {
  display: inline-block;
  width: 1rem;
}
@media (max-width: 767px) {
  .parts_alert {
    border: 1px solid #f00;
    background: #fff;
    color: #f00;
    font-size: 0.75rem;
    text-align: center;
    padding: 1.25rem;
    margin: 0 auto 0.5rem;
  }
}
/**
* ログイン画面
**/
.login_wrap {
  max-width: 375px;
  margin: 0 auto 4rem;
  padding: 3rem 2rem;
  border-radius: 3px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
  background: #fff;
}
.login_wrap::before {
  content: '';
  display: block;
  height: 2rem;
  background-image: url("../images/logo-b.png");
  background-size: auto 100%;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0 0 2rem;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .login_wrap {
    padding: 4rem 1rem 2rem;
  }
}
.login_wrap > * {
  text-align: center;
}
.login_wrap > * + * {
  margin-top: 1rem;
}
.login_wrap > div > label {
  display: block;
  color: #aaa;
  font-size: 0.75rem;
  line-height: 1rem;
  text-align: left;
  margin: 0 0 5px;
}
.login_wrap > div > input {
  font-size: 1rem;
  width: 100%;
  height: 2.75rem;
}
.login_wrap > div > .btn {
  font-size: 0.875rem;
  max-width: 12.5rem;
  width: 100%;
  height: 2.75rem;
  border-radius: 3em;
}
/**
* 会社情報
**/
.company_wrap {
  background-color: #fff;
  margin: 0 0 1.75rem 0;
  padding: 3.125rem 1.5rem;
  border: 1px solid #e7e6e6;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.company_wrap > div {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-top: 1px solid #ccced3;
  min-height: 50px;
  padding: 0.3125rem 0;
}
.company_wrap > div:last-child {
  border-bottom: 1px solid #ccced3;
}
.company_wrap > div > div {
  display: flex;
  justify-content: space-between;
}
.company_wrap > div > div:first-child {
  flex-basis: 20%;
}
.company_wrap > div > div:first-child > p {
  font-size: 1rem;
  font-weight: 700;
  color: #3f3f3f;
  margin: 0 0 0 1.5625rem;
}
.company_wrap > div > div:last-child > p {
  font-size: 1rem;
  color: #3f3f3f;
  margin: 0 0 0 1.5625rem;
}
@media (max-width: 767px) {
  .company_wrap {
    padding: 1.25rem 0;
  }
  .company_wrap > div {
    width: 85%;
    flex-wrap: wrap;
  }
  .company_wrap > div > div:first-child {
    flex-basis: 100%;
  }
  .company_wrap > div > div:first-child > p {
    font-size: 1rem;
    font-weight: 700;
    color: #3f3f3f;
    margin: 0.5rem 0.5rem 0;
  }
  .company_wrap > div > div:last-child > p {
    margin: 0.5rem;
  }
}
/**
* サイトマップ
**/
.sitemap_wrap {
  background-color: #fff;
  margin: 0 0 1.75rem 0;
  padding: 1.25rem 1.75rem;
  border: 1px solid #e7e6e6;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sitemap_wrap > a {
  flex-basis: 100%;
  font-size: 1.375rem;
  color: #670000;
  text-decoration: underline;
  margin: 0 0 1.25rem;
}
.sitemap_wrap ul {
  flex-basis: 100%;
  padding: 0 1rem;
}
.sitemap_wrap ul > li {
  margin: 0 0 1rem;
}
.sitemap_wrap ul > li:last-child {
  margin: 0;
}
.sitemap_wrap > ul > li::before,
.arrow_a::before {
  content: '\f125';
  display: inline-block;
  font-family: "Ionicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 0.5rem 0 0;
  transform: scale(0.75);
  transform-origin: left center;
}
.sitemap_wrap ul > li > a,
.arrow_a {
  text-decoration: underline;
}
.sitemap_wrap .pref_list ul li {
  font-size: 13px;
}
.sitemap_wrap ul > li:last-child {
  margin: 0 0 1.25rem;
}
.sitemap_wrap .pref_list ul li a {
  text-decoration: none;
}
@media (max-width: 767px) {
  .sitemap_wrap {
    padding: 1.25rem 0;
    justify-content: space-around;
  }
  .sitemap_wrap > a {
    flex-basis: 85%;
    text-align: left;
    margin: 0 0 1rem;
  }
  .sitemap_wrap .list {
    line-height: 1.4em;
    font-size: 1rem;
    overflow: hidden;
  }
  .sitemap_wrap li {
    margin: 0;
    padding: 0;
  }
  .sitemap_wrap li ul {
    margin: 0;
    padding: 0;
  }
  .sitemap_wrap li ul > li {
    margin: 0;
    padding: 0;
    line-height: 1.4em;
    font-size: .875rem;
  }
}
/**
* 利用規約
**/
.tos_wrap {
  background-color: #fff;
  margin: 0 0 1rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e7e6e6;
}
.tos_wrap h2 {
  background-color: #670000;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75rem;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  padding: 0.8rem 0.8rem;
}
.tos_wrap h3 {
  margin: 0 0.25rem 0.5rem;
}
.tos_wrap p {
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1.5rem;
  color: #000000;
  margin: 0 0.5rem 1.25rem;
}
.tos_wrap ul {
  margin: 0 0.5rem 1.25rem;
}
.tos_wrap ul > li p {
  margin: 0;
}
@media (max-width: 767px) {
  .tos_wrap {
    padding: 1rem;
    text-align: left;
  }
  .tos_wrap h4 {
    margin: 0 0 1rem;
  }
  .tos_wrap p {
    margin: 0 0.5rem 1rem;
  }
  .tos_wrap ul {
    margin: 0 0.5rem;
  }
}
/**
* プライバシーポリシー
**/
.policy_wrap {
  background-color: #fff;
  margin: 0 0 1.75rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid #e7e6e6;
}
.policy_wrap h2 {
  background-color: #670000;
  color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.8rem;
  margin: 0 0 1rem;
  padding: 0.8rem 0.8rem;
}
.policy_wrap h3 {
  border-left: solid 6px #670000;
  font-size: 22px;
  font-weight: 700;
  margin: 1.75rem 1rem 1rem;
  padding: 0 0 0 0.75rem;
}
.policy_wrap h6 {
  border-radius: 3px;
  border: 1px solid #ccced3;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375rem;
  margin: 0 0 1rem;
  padding: 0.75rem;
}
.policy_wrap p {
  margin: 0 1rem 1.25rem;
}
@media (max-width: 767px) {
  .policy_wrap {
    padding: 1rem;
    text-align: left;
  }
  .policy_wrap h6 {
    margin: 0 0.5rem 1rem;
  }
  .policy_wrap p {
    margin: 0 0.5rem 1rem;
  }
  .notice_wrap {
    padding: 1rem;
  }
  .notice_wrap > div {
    flex-wrap: wrap;
    margin: 0 0 1rem;
    text-align: left;
  }
}
/**
* 現在地ページ
**/
.n_wrap {
  background-color: #fff;
  margin: 0 0 1.75rem 0;
  padding: 3.125rem 3.125rem;
  border: 1px solid #e7e6e6;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.n_wrap .gmap_form {
  width: 100%;
  max-width: 400px;
  margin: 1.75rem auto 0;
}
.n_wrap .box_search01_yoyaku {
  text-align: center;
}
.n_wrap .box_btn {
  margin-top: 1.25rem;
}
.n_loading {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #999;
  widows: 100vw;
  height: 100vh;
}
@media (max-width: 767px) {
  .n_wrap {
    padding: 1.25rem;
  }
}
/**
 * 検索枠
**/
.search-form__wrap {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 15px #ccc;
  margin: -50px auto 0;
  padding: 20px;
}
#top .search-form__wrap {
  box-shadow: 0 0 10px #999;
}
.search-form__wrap form {
  width: 100%;
  height: 4.375rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.search-form__wrap .form .icon {
  flex-basis: auto;
}
.search-form__wrap .form .select {
  position: relative;
  border: solid 1px #ccc;
  border-radius: 3px;
  flex-basis: 28%;
  max-width: 250px;
}
#slist .search-form__wrap .form .select {
  flex-basis: 100%;
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  #slist .search-form__wrap .form .select {
    max-width: 100%;
  }
}
.search-form__wrap .form .select::after {
  content: '';
  margin-top: -4px;
  top: 45%;
  right: 15px;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  pointer-events: none;
  border-top: 2px solid #670000;
  border-right: 2px solid #670000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.search-form__wrap .form .search {
  flex-basis: 12%;
  margin-left: 2%;
}
.search-form__wrap {
  font-size: 14px;
}
#slist .search-form__wrap .form .select::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (max-width: 959px) {
  .search-form__wrap {
    margin-top: 0.1rem;
  }
  .search_item_submit {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .search-form__wrap .form .select::after {
    right: 10px;
    width: 6px;
    height: 6px;
  }
  .search-form__wrap {
    padding: 1rem;
    font-size: 13px;
  }
  .search-form__wrap .form {
    margin: 0;
    padding: 0;
  }
  .search-form__wrap form {
    height: auto;
    flex-wrap: wrap;
  }
  .search-form__wrap .form .search {
    flex-basis: 100%;
    margin: 0 auto;
  }
  .search-form__wrap .form .icon {
    flex-basis: 10%;
    height: 3.3125rem;
  }
  .search-form__wrap .form .select select::-ms-expand {
    display: none;
  }
  .search-form__wrap .form .select {
    max-width: 100%;
    width: 100%;
    flex-basis: auto;
  }
  .search-form__wrap .form .select.full_w {
    width: 100%;
  }
  .search-form__wrap .form .search-form_box {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
  }
  .search-form__wrap:not(#slist .search-form__wrap) .form .search-form_box {
    margin-bottom: 1rem;
  }
}
.search-form_box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  gap: 0.5rem;
}
.select select,
.select .select-button {
  margin: 0;
  padding: 0 30px 0 34px;
  width: 100%;
  height: 60px;
  cursor: pointer;
  border: none;
  border-radius: 3px;
  background: #fff;
  text-align: left;
}
.select label::before,
.select .select-button::before {
  content: '';
  position: absolute;
  left: 5px;
  background-size: contain;
  background-repeat: no-repeat;
}
.select .dropdown_area::before {
  background-image: url(../images/icon_dropmenu_area.svg);
  top: 30%;
  width: 25px;
  height: 25px;
}
.select .dropdown_type::before {
  background-image: url(../images/icon_dropmenu_type.svg);
  top: 30%;
  width: 24px;
  height: 24px;
}
.select .dropdown_cond::before {
  background-image: url(../images/icon_dropmenu_cond.svg);
  top: 37%;
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .select .dropdown_area::before {
    top: 25%;
  }
  .select .dropdown_type::before {
    top: 25%;
  }
  .select .dropdown_cond::before {
    top: 32%;
  }
}
.select .select-button span {
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select .select-button + fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.select .select-button + fieldset > div {
  display: none;
  position: absolute;
  top: 61px;
  left: 0;
  padding: 5px;
  width: 100%;
  background: #fff;
  border: 1px #ccc solid;
  z-index: 999;
}
.select .select-button + fieldset > div > div {
  padding: 5px;
}
.select select::-ms-expand {
  display: none;
}
@media (max-width: 767px) {
  .select select,
  .select .select-button {
    height: 45px;
  }
}
/**
* タグ
**/
.box_tags {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.box_tags > a, .box_tags > div, .box_tags span {
  margin-right: 10px;
  margin-bottom: 15px;
}
.box_tags > a, .box_tags span {
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  font-size: 13px;
  padding: 7px 20px;
}
@media (max-width: 767px) {
  .box_tags > a, .box_tags > div, .box_tags span {
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px;
    border: none;
    background-color: #f2f2f2;
  }
}
/**
* 口コミ
**/
.review__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.review__item {
  display: block;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  font-size: 12px;
  width: 15.83333%;
  margin-right: 1%;
  padding: 10px;
  position: relative;
}
@media (min-width: 960px) {
  .review__item:last-child {
    margin: 0
  }
}
.review__prof {
  display: flex;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 10px;
  padding-bottom: 10px;
  align-items: center;
}
.review__prof img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  margin-right: 10px;
}
.review__prof time {
  font-size: 12px
}
.review__username {
  font-size: 18px;
  font-weight: 700
}
.review__desc {}
.review__tags {
  margin-bottom: 10px;
}
.review__tags span {
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  display: inline-block;
  margin-right: 5px;
  padding: 4px 10px;
}
.review__ttl {
  font-size: 14px;
  font-weight: 700;
}
.review__txt {
  margin-bottom: 10px
}
.review__more {
  color: #025bbb;
  float: right;
  font-weight: 100;
  font-size: 12px;
  text-decoration: underline;
}
@media (max-width: 959px) {
  .review__item {
    width: 31.333333%;
    margin: 0 1% 1%;
  }
}
@media (max-width: 767px) {
  .review__item {
    width: 100%;
    margin: 0 0 2%;
  }
  .review__item:last-child {
    margin: 0
  }
}
/**
* よくある質問
**/
.faq__list {
  background: #efefef;
  padding: 30px;
}
.faq__item {
  background: #fff;
  padding: 30px;
  margin-bottom: 15px
}
.faq__item:last-child {
  margin-bottom: 0
}
.faq__q {
  color: #670000;
  font-size: 14px;
  font-weight: 700;
  padding-left: 25px;
  padding-right: 20px;
  position: relative;
}
.faq__iconQ {
  margin-right: 5px;
  position: absolute;
  left: 0;
}
.faq__a {
  margin-top: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
}
.faq__iconA {
  font-weight: 700;
  margin-right: 5px;
  position: absolute;
  left: 0;
}
.faq__a a {
  color: #025bbb;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 767px) {
  .faq__list, .faq__item {
    padding: 0rem 0.25rem 0.5rem;
    background: #fff;
    font-size: 14px;
  }
  .faq__item {
    border-bottom: 1px solid #f2f2f2;
  }
  .faq__item:last-child {
    border-bottom: none;
  }
}

.foot_pref_wrap {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .foot_pref_wrap {
    margin-top: 0;
    padding-top: 0;
  }
}
.pref_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box_pref {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.box_pref::before {
  display: block;
  width: 100%;
  content: attr(data-pref-area-name);
  color: #670000;
  font-weight: 700;
  padding: .6rem 0rem;
}
.box_pref > li {
  font-size: 13px;
}
.box_pref a {
  border-right: 1px solid #bbb;
  padding-right: 10px;
  color: #025bbb;
}
.box_pref li:last-child a {
  border: none;
}
@media (max-width: 767px) {
  .box_pref {
    width: 100%;
    margin: 0 0 1rem;
  }
  .box_pref::before {
    display: none;
  }
}

/*汎用アコーディオン*/
.accordion_title {
  position: relative;
}
.accordion_option {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .accordion_toggle {
    display: none;
  }
  .accordion_title,.accordion_content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }
  .accordion_title {
    padding: .6rem .6rem 0 0;
    display: block;
    color: #670000;
    font-weight: 700;
  }
  .accordion_title::after,
  .accordion_title::before {
    content: '';
    margin-top: -4px;
    top: 50%;
    right: 0px;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border-top: 2px solid #670000;
    border-right: 2px solid #670000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .accordion_content {
    max-height: 0;
    overflow: hidden;
    border-bottom: solid 1px #ccc;
  }
  .faq__a.accordion_content {
      border-bottom: 0;
      margin: 0;
  }
  .accordion_toggle:checked + .accordion_title + .accordion_content {
      max-height: 9999px;
      transition: all 5s;
  }
}
@media (min-width: 768px) {
  .accordion_option.max {
    width: 100%;
  }
}

/*toppage全国エリア検索アコーディオン*/
@media (max-width: 767px) {
  .pref_list_accordion {
    margin: 0 auto;
    width: 100%;
    }
    .pref_toggle {
    display: none;
    }
    .pref_option {
    position: relative;
    width: 100%;
    }
    .pref_title,
    .pref_content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
    }
    .pref_title {
    padding: .6rem 0rem;
    display: block;
    color: #670000;
    font-weight: 700;
    }
    .pref_title::after,
    .pref_title::before {
    content: '';
    margin-top: -4px;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    border-top: 2px solid #670000;
    border-right: 2px solid #670000;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    }
    .pref_content {
    max-height: 0;
    overflow: hidden;
    border-bottom: solid 1px #ccc;
    }
    .faq__a.pref_content {
      border-bottom: 0;
      margin: 0;
    }
    .pref_toggle:checked + .pref_title + .pref_content {
      max-height: 9999px;
      transition: all 5s;
    }

    .detail_hikaku__table .pref_title {
      padding: 1.5rem 1rem;
    }
    .detail_hikaku__table .pref_content {
      border-bottom: none;
    }
    .detail_hikaku__table .pref_option {
      background: #f2f2f2;
    }
}
@media (min-width: 768px) {
  .pref_content {
    display: flex;
    flex-flow: wrap;
    margin: 0 0 1rem;
  }
  .pref_content.pc_noflex {
    display: block;
    flex-flow: unset;
  }
  .pref_option {
    position: relative;
    width: 49%;
  }
  .pref_option.max {
    width: 100%;
  }
}

/**
* .paging
* /detail/[ID]/ページ ページャー
**/
.paging {
  margin: 1.25rem 0;
  padding: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap : 2rem;
}
.paging ul {
  display: flex;
  justify-content: center;
  gap : 0.25rem;
}
.paging li {
  display: inline-block;
}
.paging li a {
  display: block;
  border: 1px solid #000;
  background: #fff;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0 0.75rem;
}
@media (max-width: 767px) {
  .paging {
    padding: 0;
    justify-content: space-between;
    gap : 0.25rem;
  }
  .paging li a {
    padding: 0 0.35rem;
  }
}
.paging li a:focus, .paging li a:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
}
.paging li .current {
  display: block;
  border: 1px solid #670000;
  background: #670000;
  color: #fff;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0 0.75rem;
}
.paging li .ten {
  display: block;
  border: 1px solid #670000;
  background: #fff;
  color: #670000;
  border-radius: 3px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 2.25rem;
  min-width: 2.25rem;
  padding: 0 0.75rem;
}
.paging li a.prev {
  padding: 0;
  width: 2.1875rem;
  line-height: 2.25rem;
  text-align: left;
  text-indent: -624.9375rem;
  background: #fff url("../images/prev.png")no-repeat center center;
  background-size: 25% 25%;
  border-radius: 3px;
}
.paging li a.next {
  padding: 0;
  width: 2.1875rem;
  line-height: 2.25rem;
  text-align: left;
  text-indent: -624.9375rem;
  background: #fff url("../images/next.png")no-repeat center center;
  background-size: 25% 25%;
  border-radius: 3px;
}

/**
 * module サイト紹介
**/
.module_introduction_wrap {
  padding: 80px 0;
  margin: 0;
  position: relative;
  z-index: 0;
}
.module_introduction_wrap:before {
  content: '';
  background-image: url('../images/bg_footer.jpg');
  position: absolute;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(80%);
  z-index: -1;
}

@media (max-width: 767px){
	.module_introduction_wrap {
		margin: 0 -1rem;
	}
}
.box_introduction {
	color: #fff;
	text-align: center
}
@media (max-width: 767px){
	.box_introduction {
		padding: 0 15px;
		font-size: 14px;
	}
}
.box_introduction_body p {
	margin: 25px 0 35px;
}
.box_introduction_body a {
	text-decoration: underline;
}
.box_introduction_head {
	font-size: 1.375rem;
}
@media (max-width: 767px){
	.box_introduction_head {
		font-size: 16px;
		text-align: left;
	}
}
@media (max-width: 767px){
	.box_introduction_body {
		text-align: left;
	}
}
/**
 * widget共通部品
**/
.widget__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.widget__list__item {
  display: block;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  font-size: 12px;
  width: 19%;
  position: relative;
  cursor: pointer;
}
.widget__img img {
  max-width: none;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.widget__desc {
  padding: 0.5rem 0.5rem;
}
.widget__ttl {
  font-size: 14px;
  font-weight: 700;
}
.widget__list__item .info_heading {
  font-weight: 700;
}
.widget__list__item .tags .list > div, .widget__list__item .tags .list > .cell {
  margin: 2px;
  padding: 2px 6px;
  font-size: 10px;
}
.widget__list__item .tags:first-of-type {
  margin-top: .5rem;
}
.widget__list__item .tags:last-of-type {
  margin-bottom: .5rem;
}
@media (max-width: 767px) {
  .widget__list.direction_column {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .widget__list.direction_column .widget__list__item {
    min-width: 280px;
    margin-bottom: 2px;
  }
  .widget__list__item {
    width: 100%;
  }
  .direction_column .widget__list__item {
    min-width: 240px;
    margin-bottom: 2px;
  }
}

/**
 * 施設リンク共通部品
**/
.facility_link__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.facility_link__list__item {
  display: block;
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  font-size: 12px;
  width: 19%;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .facility_link__list.direction_column {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .facility_link__list__item {
    width: 100%;
    min-width: 280px;
  }
  .facility_link__list.direction_column .facility_link__list__item {
    min-width: 280px;
    margin-bottom: 2px;
  }
}
.facility_link__img img {
  max-width: none;
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.facility_link__desc {
  padding: 0.5rem 0.5rem;
}
.facility_link__ttl {
  font-size: 14px;
  font-weight: 700;
}
.facility_link__txt {
  font-size: 10px;
  margin-bottom: 0.6rem;
}
.facility_link__price {
  font-size: 10px;
  margin-bottom: 0.6rem;
}
.facility_link__detail, 
.facility_link__link {
  display: none;
}
.facility_link__star5 {
  font-size: 14px;
}
.facility_link__star5 a {
  color: #025bbb;
  text-decoration: underline;
}
.search_result__img.pickup_enabled:before,
.widget__img.pickup_enabled:before,
.facility_link__img.pickup_enabled:before,
.leaflet_popup__img.pickup_enabled:before {
  content: 'PICK UP施設';
  position: absolute;
  top: 0;
  right: 0.5rem;
  padding: 2px 6px;
  background: #fcaf17;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.35);
  z-index: 10;
}

/** No.1調査概要 */
.about_annotetion {
  background-color: #fff;
  font-size: 0.8rem;
  padding: 1rem 5vw 2rem 5vw;
  margin:0 auto;
  max-width: 1450px;
}
.about_annotetion_etc {
  font-size: 0.8rem;
  padding: 1rem 3vw 2rem 3vw;
  margin:0 auto;
  max-width: 1180px;
}
@media (max-width: 767px) {
  .about_annotetion {
    background-color: #fff;
    font-size: 0.75rem;
    padding: 1rem 1rem;
    margin: 0rem 0rem 1rem 0rem;
  }
  .about_annotetion_etc {
    font-size: 0.75rem;
    background-color: #fff;
    /* padding: 1rem 2rem 1rem 1rem; */
  }
}

/* タグアイコン ▼ */
/* 詳細ページと検索結果で共有 */
.tags > .list {
  display: flex;
  flex-wrap: wrap;
}
.tags .list > div, .tags .list > .cell {
  border: 1px solid #c6c6c6;
  border-radius: 3px;
  color: #c6c6c6;
  display: inline-block;
  margin: 2px;
  padding: 2px 8px;
  font-size: 12px;
}
.tags .list > .on {
  color: #000;
}
@media (max-width: 767px) {
  /* 余白・カラム数（SP3列） */
  .tags .list > div, .tags .list > .cell {
    margin: 2px;
    padding: 2px 6px;
    font-size: 10px;
  }
}
/* ロケーションアイコン */
.tags .list > div.location_icon_blue,
.tags .list > .cell.location_icon_blue
 {
  border: none;
  background-color: #87ceeb;
}
.tags .list > div.location_icon_sky,
.tags .list > .cell.location_icon_sky
 {
  border: none;
  background-color: #C5E7F1;
}
.tags .list > div.location_icon_green,
.tags .list > .cell.location_icon_green
 {
  border: none;
  background-color: #bef2e5;
}
.tags .list > div.location_icon_gray,
.tags .list > .cell.location_icon_gray
 {
  border: none;
  background-color: #b7b1bc;
}
.tags .list > div.location_icon_green_blue,
.tags .list > .cell.location_icon_green_blue
 {
  border: none;
  background-color: #BEF2E5;
}
/* タグアイコン ▲ */

/* テキストリンクリスト ▼ */
.text_link_area {
  margin: 0 0.25rem;
}
.text_link_list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}
.text_link_list > li {
  font-size: 13px;
}
.text_link_list a {
  color: #025bbb;
  border-right: 1px solid #bbb;
  padding-right: 10px;
}
.text_link_list li:last-child a {
  border: none;
}
@media (max-width: 767px) {
  .text_link_list {
    width: 100%;
  }
}
/* テキストリンクリスト ▲ */

/* 無効リンク▼ */
/*.text_link_list .disabled_link , label.disabled_link{
  color: #c6c6c6;
  pointer-events: none;
}*/
/* 無効リンク▲ */

/* もっと見る type01 ▼ */
.read_more_type01 input {
  display: none;
}
@media (max-width: 767px) {
  .read_more_type01 {
    position: relative;
  }
  .read_more_type01 .expand_area {
    position: relative;
    max-height: 70px; /* 初期表示する高さ */
    margin-bottom: 0;
    overflow: hidden;
    transition: none;
  }
  .read_more_type01:has(:checked) .expand_area {
    max-height: 9999px;
    transition: max-height 5s;
  }
  .read_more_type01 .expand_area::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .7) 50%, hsla(0, 0%, 100%, .7) 0, #fff);
    content: '';
  }
  .read_more_type01:has(:checked) .expand_area::after {
    content: none;
  }
  .read_more_type01 .control_box {
    text-align: center;
  }
  .read_more_type01 label {
    color: #025bbb;
    font-size: 0;
  }
  .read_more_type01 label::before {
    content: 'もっと見る';
    font-size: 12px;
  }
  .read_more_type01 label::after {
    display: inline-block;
    width: 10px;
    height: 7px;
    margin-left: 4px;
    background-color: #b6bdc3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}
  .read_more_type01:has(:checked) label::before {
    content: '';
    display: none;
  }
  .read_more_type01:has(:checked) label::after {
    display: none;
  }
  .read_more_type01 input {
      display: none;
  }
}
/* もっと見る type01 ▲ */

/* 天気予報 詳細ページと検索結果で共有 */
ul.weather_horizonal {
  width: 100%;
  overflow-x: auto;
  display: flex;
}
ul.weather_horizonal li {
  min-width: 100px;
}
ul.weather_horizonal dl {
  text-align: center;
}
ul.weather_horizonal dl img {
  width: 65%;
  height: auto;
  margin-bottom: 5px;
}
ul.weather_horizonal dl span.red {
  color: #f00;
}
ul.weather_horizonal dl span.blue {
  color: #00f;
}

/* 地図表示 leaflet.js ▼ */
#leafletmap {
  width: 75%;
  margin-left: 25%;
  height: 100vh; /* 20230901 ヘッダ削除し高さマックスに */
}
#leafletmap .leaflet-popup-content {
  max-width: 65vw;
}
#leafletmap .leaflet-popup-content a {
  color: #333;
}
#leafletmap .leaflet-popup-content span {
  display: inline-block;
}
#leafletmap .leaflet-popup-content .map_ttl {
  font-weight: 600;
  font-size: 1.23333em;
  margin-bottom: 8px;
  color: #0078A8;
}
#leafletmap .leaflet-popup-content .map_link {
  line-height: 2em;
  color: #0078A8;
}
#leafletmap .leaflet-popup-content .leaflet_popup__img {
  position: relative;
}
#leafletmap .leaflet-popup-content img {
  width: 100%;
  height: auto;
}
#search_this_area,
#listpane__toggle {
  display: none;
  padding: 6px 0 8px;
  background-color: #333;
  border-radius: 37px;
  -webkit-border-radius: 37px;
  -moz-border-radius: 37px;
  box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4);
  color: #fff;
  font-size: 0.9em;
  text-align: center;
  position: fixed;
  bottom: 120px;
  left: calc(50% + 100px);
  width: 160px;
  z-index: 2000;
}
#go_back_from_map {
  padding: 5px;
  background-color: #333;
  border: 2px solid rgba(0,0,0,0.2);
  background-clip: padding-box;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4);
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4);
  position: fixed;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  z-index: 2000;
}
#go_back_from_map::before, #go_back_from_map::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 20px;
  background: #fff;
}
#go_back_from_map::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
#go_back_from_map::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.listpane_overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 25%;
  height: calc(100% - 90px);
  overflow-y: scroll;
  z-index: 2000;
  background: #fff;
}
.listpane_overlay .listpane_append {
  display: flex;
  flex-direction: column;
}
.listpane_overlay .listpane__item {
  font-size: .75em;
  padding: 10px;
  position: relative;
}
.listpane_overlay .listpane__item:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: #eee 1px solid;
  content: '';
}
.listpane_overlay .listpane__item .map_ttl {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.3em;
}
.listpane_overlay .listpane__item .map_ttl,
.listpane_overlay .listpane__item .map_link {
  color: #0078A8;
}
#listpane__toggle {
  display: none;
}
@media (max-width: 767px) {
  #leafletmap {
    width: 100%;
    margin-left: 0;
  }
  #search_this_area,
  #listpane__toggle {
    left: calc(50% - 80px);
  }
  #search_this_area {
    bottom: 180px;
  }
  #listpane__toggle {
    display: block;
    position: fixed;
    bottom: 130px;
    z-index: 2001;
    text-indent: 22px;
  }
  #listpane__toggle:before {
    content: 'リストを表示';
    color: #fff;
    text-align: right;
  }
  #listpane__toggle span,
  #listpane__toggle span:before,
  #listpane__toggle span:after {
    content: '';
    display: block;
    height: 2px;
    width: 20px;
    border-radius: 2px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
  }
  #listpane__toggle span {
    top: 47%;
    left: 22px;
  }
  #listpane__toggle span:before {
    bottom: 6px;
  }
  #listpane__toggle span:after {
    top: 6px;
  }
  .listpane_overlay {
    top: 0;
    left: -100vw;
    width: 100%;
    height: calc(100% - 90px);
    padding-bottom: 60px;
  }
  .listpane_overlay.open {
    left: 0;
  }
  .listpane_overlay.open ~ #listpane__toggle:before {
    content: '閉じる';
  }
  .listpane_overlay.open ~ #listpane__toggle span {
    height: 0px;
    top: 50%;
    left: 20%;
  }
  .listpane_overlay.open ~ #listpane__toggle span:before,
  .listpane_overlay.open ~ #listpane__toggle span:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 20px;
    background: #fff;
  }
  .listpane_overlay.open ~ #listpane__toggle span:before {
    transform: translate(-50%,-50%) rotate(45deg);
  }
  .listpane_overlay.open ~ #listpane__toggle span:after {
    transform: translate(-50%,-50%) rotate(-45deg);
  }
}
/* 地図表示 leaflet.js ▲ */

/* マーカー */
.option_marker{
  background:linear-gradient(transparent 60%, #ff6 60%);
}

/* 口コミTOPICS（吹き出し） */
.review_topics {
  position: relative;
  width:100%;
  margin: 0.5rem 0;
  padding: 0.25rem 0.5rem;
  line-height: 1.4em;
  border-radius:3px;
  -webkit-border-radius:3px;
  -moz-border-radius:3px;
  background: #ffffff;
  border: 1px solid #c6c6c6;
}
.review_topics:after,.review_topics:before {
  border: solid transparent;
  content:'';
  height:0;
  width:0;
  pointer-events:none;
  position:absolute;
  bottom:100%;
  left:5%;
}
.review_topics:after {
  border-top-width:6px;
  border-bottom-width:6px;
  border-left-width:6px;
  border-right-width:6px;
  margin-left: -6px;
  margin-bottom: -1px;
  border-bottom-color:#ffffff;
}
.review_topics:before {
  border-top-width:6px;
  border-bottom-width:6px;
  border-left-width:6px;
  border-right-width:6px;
  margin-left: -6px;
  margin-bottom: 0px;
  border-bottom-color:#c6c6c6;
}
