@charset "UTF-8";
/*********************************                  
基本設定
*********************************/
body {
  margin: 0px;
  overflow-x: hidden;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #1e1e1e;
  line-height: 1.6;
  font-size: 16px;
}
a {
  display: inline-block;
  color: #1e1e1e;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
/*********************************
共通設定
*********************************/
.inner {
  padding: 6rem 0;
}
.spacer {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .flex {
    display: flex;
    align-items: normal;
    justify-content: space-between;
  }
}
.mb-4 {
  margin-bottom: 4rem;
}
.mb-6 {
  margin-bottom: 6rem;
}
.cl-btn1 {
  color: #fc9d0e !important;
}
/*********************************
ボタン
*********************************/
@media screen and (min-width: 768px) {
  .btn-wrap {
    display: flex;
    align-items: end;
    justify-content: space-between;
    justify-content: space-evenly;
  }
}
.btn-wrap div + div {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .btn-wrap div + div {
    margin: 0 0 0 1%;
  }
}
.single .btn-wrap {
  display: block;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .single .btn-wrap {
    display: flex;
  }
}
.PRtable-set {
  margin-bottom: 4rem;
  margin-top: 4rem;
}
.PRtable-set .btn-wrap {
  margin-bottom: 4rem;
}
.single .single-box .btn-wrap {
  margin: 4rem auto;
}
.btn {
  width: 100%;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 480px) {
  .btn {
    width: 70%;
  }
}
@media screen and (min-width: 768px) {
  .btn {
    width: 31.3%;
    margin: 0;
  }
}
.btn a {
  position: relative;
  display: block;
  background: #CC0000;
  color: #ffffff;
  padding: 1rem;
  border-radius: 100px;
  border: 2px solid #CC0000;
  transition: 0.2s;
  box-shadow: 3px 6px 6px #8d8d8da1;
}
@media screen and (min-width: 768px) {
  .btn a {
    padding: 2rem 3rem;
  }
}
.btn a:hover {
  background: #ffffff;
  color: #CC0000;
}
.btn a i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  height: 16px;
  margin: auto;
}
.btn2 a {
  background: #faa82e;
  border-color: #faa82e;
}
.btn2 a:hover {
  color: #faa82e;
}
.btn3 a {
  background: #1E709E;
  border-color: #1E709E;
}
.btn3 a:hover {
  color: #1E709E;
}
.btn.btn_top {
  width: 100%;
  max-width: 550px;
}
.btn.btn_top a {
  background: #e58d6d;
  border-color: #e58d6d;
  padding: 1rem 4rem;
}
@media screen and (min-width: 768px) {
  .btn.btn_top a {
    padding: 2rem 3rem;
  }
}
.btn.btn_top a:hover {
  background-color: #ffffff;
  color: #e58d6d;
}
/*********************************
更新日設定
*********************************/
.update {
  background: #6498b696;
  padding: 1rem;
  box-sizing: border-box;
  position: fixed;
  top: 70px;
  left: 0;
  opacity: 0;
  transform: translateY(-50px);
  z-index: 99;
}
.update span {
  color: #ffffff;
}
/* 表示するアニメーション */
.update.fadeIn {
  -webkit-animation: fadeInAnime 0.3s ease-in forwards;
  animation: fadeInAnime 0.3s ease-in forwards;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(-200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 非表示にするアニメーション */
.update.fadeOut {
  -webkit-animation: fadeOutAnime 0.3s ease-in forwards;
  animation: fadeOutAnime 0.3s ease-in forwards;
}
@keyframes fadeOutAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-200px);
  }
}
@media screen and (max-width: 768px) {
  .update {
    padding: 0.5rem 1rem;
  }
}
/*********************************
ブログカード
*********************************/
.blog-card {
  background: rgba(110, 115, 130, 0.05);
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-card {
    padding: 1.5rem;
  }
}
.blog-card a {
  display: flex;
  cursor: pointer;
}
.blog-card a .blog-card-thumbnail {
  width: 30%;
  min-width: 125px;
}
@media screen and (min-width: 768px) {
  .blog-card a .blog-card-thumbnail {
    min-width: 150px;
  }
}
.blog-card a .blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  margin: 0;
}
.blog-card a .blog-card-content {
  padding: 0.7rem 0 0 0.7rem;
}
@media screen and (min-width: 768px) {
  .blog-card a .blog-card-content {
    padding: 1rem 0 0 1rem;
  }
}
.blog-card a .blog-card-content .blog-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 3px solid #fc9d0e;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .blog-card a .blog-card-content .blog-card-title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.blog-card a .blog-card-content .blog-card-excerpt {
  text-decoration: underline;
  color: blue;
  font-size: 1rem;
}
@media screen and (min-width: 600px) {
  .blog-card a .blog-card-content .blog-card-excerpt {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .blog-card a .blog-card-content .blog-card-excerpt {
    font-size: 1.4rem;
  }
}
/*********************************
パンくず
*********************************/
#breadcrumbs {
  font-size: 1.2rem;
}
.breadcrumb_list {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.4rem;
}
.breadcrumb_list ul {
  display: flex;
  align-items: center;
}
.breadcrumb_list ul li {
  font-size: 1.2rem;
}
.top_area {
  background-color: #ffffff;
  border-top: solid 1px #eaeaea;
  border-bottom: solid 1px #eaeaea;
}
/*********************************
HEADER
*********************************/
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  background: #1e709e;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.headerInner {
  position: relative;
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}
.headerInner-logo {
  padding: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}
.headerInner-logo .pr {
  border-radius: 5px;
  background: #bbbbbba6;
  padding: 0px 5px;
}
.header .site_name {
  position: relative;
  color: #ffffff;
}
.header .site_name div:first-child {
  font-size: 10px;
}
.header .site_name div:nth-child(2) {
  font-weight: bold;
  line-height: 19px;
}
/*********************************
MAIN VISUAL
*********************************/
.mv {
  position: relative;
  width: 100%;
  background: #eee;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-image: url(img/mvsp.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media screen and (min-width: 600px) {
  .mv {
    min-height: 550px;
    background-position: 50% 27%;
    background-size: cover;
  }
}
@media screen and (min-width: 1600px) {
  .mv {
    min-height: 750px;
  }
}
.mvInner {
  height: 70%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .mvInner {
    padding: 6rem 4rem;
  }
}
.mvInner .ttl {
  position: absolute;
  top: 86px;
  left: 85px;
  font-size: 13px;
  display: inline-block;
  height: auto;
  background: #65bff2;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 6px 0px 6px 0px;
  border-radius: 5px;
}
@media screen and (min-width: 600px) {
  .mvInner .ttl {
    top: 116px;
    left: 254px;
    font-size: 22px;
    height: 390px;
  }
}
.mvInner .ttl::before {
  content: "";
  position: absolute;
  top: 22px;
  left: -20px;
  border: 5px solid transparent;
  border-right: 15px solid #65bff2;
}
.mvInner .ttl .ttlspan {
  font-size: 20px;
  border-bottom: solid 1.5px;
  padding: 0px 0px 5px 0px;
  margin-bottom: 5px;
}
.mvInner .ttl .ttl1 {
  position: absolute;
  left: -70px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 36px;
  height: 600px;
  color: #6498b6;
  text-orientation: upright;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media screen and (min-width: 600px) {
  .mvInner .ttl .ttl1 {
    left: -85px;
	top: -7px;
    font-size: 48px;
    height: 600px;
  }
}
.mvInner .ttl .ttl2 {
  position: absolute;
  left: -118px;
  font-family: "M PLUS 1p", sans-serif;
  font-size: 36px;
  height: 600px;
  color: #6498b6;
  text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
@media screen and (min-width: 600px) {
  .mvInner .ttl .ttl2 {
    left: -143px;
    top: 9px;
    font-size: 48px;
    height: 600px;
  }
}
.mvInner .ttl .ttl2 span {
  color: #fc9d0e;
}
@media screen and (min-width: 600px) {
  .mvInner .ttl .ttl2 span {
    font-size: 46px;
  }
}
.mvInner img.mv-logo {
  max-width: 100%;
}
.mv-bottom {
  position: absolute;
  bottom: -4rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}
@media screen and (min-width: 480px) {
  .mv-bottom {
    max-width: 480px;
  }
}
.mv_sub {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url(img/sub.png) center left no-repeat;
  background-size: cover;
  height: 350px;
}
.mv_sub-ttl {
  position: relative;
  font-size: 2.8rem;
  padding: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .mv_sub-ttl {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .mv_sub-ttl {
    font-size: 4rem;
  }
}
.mv_sub .mvInner {
  writing-mode: inherit;
  height: auto;
  background-color: #ffffff;
  width: 90%;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .mv_sub .mvInner {
    width: auto;
    position: absolute;
/*     left: 10px; */
  }
}
.mv_sub .mvInner h1 {
  color: #1e709e;
  font-size: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv_sub .mvInner h1 {
    font-size: 25px;
  }
}
.mv_sub .time {
/*   padding:1rem; */
  position: relative;
  text-align: center;
  background: #ffffff;
  color: #1e709e;
  font-size: 1.2rem;
  margin: 0 auto;
  margin-top: -2rem;
  font-weight: 700;
/*   line-height: 1; */
  border-radius: 10px;
}
/*********************************
MAIN CONTENT
*********************************/
#rank_area {
  background: #ffdba5;
}
.ranking-card {
  margin-bottom: 4rem;
  padding: 3rem;
  background: #f5f5f5;
}
.ranking-img {
  margin-bottom: 3rem;
}
.ranking-ttl_h2 {
  font-size: 2.4rem;
}
.ranking-ttl_h2 span {
  background: #1e1e1e;
  color: #ffffff;
  padding: 1rem;
}
.ranking-ttl_h3 {
  margin-bottom: 3rem;
  padding: 1rem;
  background: #1e1e1e;
  color: #ffffff;
  font-size: 2rem;
}
.ranking-tbl {
  margin-bottom: 3rem;
}
.ranking-tbl table {
  width: 100%;
  border: 1px solid #1e1e1e;
}
.ranking-tbl th, .ranking-tbl td {
  border: 1px solid #1e1e1e;
  padding: 1rem;
  font-size: 1.4rem;
}
.ranking-tbl th {
  background: #aaa;
  color: #ffffff;
}
.ranking-tbl td {
  background: #ffffff;
}
.ranking-txt {
  margin-bottom: 3rem;
}
.ranking-link {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.rankingRecommend {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding: 2rem;
  border: 1px solid #1e1e1e;
  background: #ffffff;
}
.rankingRecommend-head {
  top: -20px;
  right: 0;
  left: 0;
  position: absolute;
  width: 200px;
  margin: auto;
  padding: 10px;
  background: #1e1e1e;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  border-radius: 30px;
}
#rank_table {
  background: #ffdba5;
}
/*********************************
FOOTER
*********************************/
.bg-footer {
  background-color: #ffdba5;
}
.bg-footer .inner {
  padding: 3rem 0;
}
.footer_rank {
  display: inline-block;
  position: relative;
  margin: 0.5rem 0;
  padding: 1rem 0;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .footer_rank {
    padding: 3px 10px;
  }
}
.footer {
  background: #6498b6;
  padding: 4rem 0;
}
.footerNav {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}
.footerNav ul {
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .footerNav ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
  }
}
.footerNav li {
  position: relative;
  margin: 0.5rem 0;
  padding: 1rem 0;
  padding-left: 2rem;
}
@media screen and (min-width: 768px) {
  .footerNav li {
    padding: 3px 10px;
  }
}
.footerNav li:before {
  position: absolute;
  top: 1rem;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "";
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footerNav li:before {
    display: none;
  }
}
.footerNav a {
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-weight: 700;
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .footerNav a {
    margin: 0;
  }
}
.footer h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .footer h3 {
    font-size: 2.4rem;
  }
}
.footer .cat-post-widget h3 {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
}
.footer .cat-post-widget:nth-of-type(3), .footer .cat-post-widget:nth-of-type(4) {
  display: inline-flex;
  width: 48%;
  justify-content: space-between;
}
.footerBtm {
  margin-bottom: 2rem;
  text-align: center;
}
.footerBtm a {
  color: #ffffff;
  font-weight: 700;
}
.footerCopy {
  margin-top: 4rem;
  color: #ffffff;
  text-align: center;
  font-size: 1.2rem;
}
.footerCopy a {
  color: #ffffff;
}
.sec-lead {
  background-color: #1e709e;
}
.sec-lead .lead-ttl {
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 2rem;
}
.sec-lead .ttl-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
.sec-lead .ttl-box p {
  color: #1e709e;
}
.sec-lead .img-ttl {
  text-align: center;
}
.sec-lead .img-ttl img {
  width: 61px;
}
/*********************************
SIDEBAR
*********************************/
#sideber_menu {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  #sideber_menu {
    margin-top: 0;
  }
}
#sideber_menu .sectionTtl-area span {
  position: relative;
  display: inline-block;
  color: #fc9d0e;
  font-size: 1.2rem;
  padding: 1rem 1rem 0rem 1rem;
  font-weight: 700;
}
#sideber_menu .sectionTtl_h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
}
/*********************************
PARTS
*********************************/
.filter {
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
h2.pr_point {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  background: #fff5e5;
  color: #fc9d0e;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 15px 50px 15px 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  h2.pr_point {
    font-size: 2.4rem;
    padding: 15px 50px 15px 100px;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  h2.pr_point {
    font-size: 3.2rem;
  }
}
h2.pr_point:after {
  content: "";
  background-image: url(img/car-orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 3em;
  height: 2em;
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
}
.sectionTtl {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  background: #fff5e5;
  padding: 15px 50px 15px 0px;
  color: #fc9d0e;
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sectionTtl {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 1024px) {
  .sectionTtl {
    font-size: 3.2rem;
  }
}
.sectionTtl:after {
  content: "";
  background-image: url(img/car-orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 3em;
  height: 2em;
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
}
/*　個別ページ
----------------------------------------------------------*/
#page {
  width: 100%;
  margin-top: 0;
  padding: 0 0 2% 0;
}
/* 問合せページ
----------------------------------------------------------*/
input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
  width: 100% !important;
  height: 30px;
  border: solid 1px #ccc;
}
input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email {
  width: 100% !important;
  height: 30px;
  border: solid 1px #ccc;
}
input.wpcf7-form-control.wpcf7-text {
  width: 100% !important;
  height: 30px;
  border: solid 1px #ccc;
}
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100% !important;
  border: solid 1px #ccc;
}
input.wpcf7-form-control.wpcf7-submit {
  padding: 8px 36px;
  margin: 0 auto;
  display: block;
  background: #fa5f2e;
  border-color: #fa5f2e;
  padding: 1rem 4rem;
  color: #ffffff;
  transition: 0.2s;
  box-shadow: 3px 6px 6px #8d8d8da1;
  border-radius: 29px;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  background-color: #ffffff;
  color: #fa5f2e;
}
.searchandfilter input[type="checkbox"], input[type="radio"], input[type="text"], select, .meta-range, .chosen-container {
  margin-left: 0px !important;
}
/* ハンバーガーメニュー
----------------------------------------------------------*/
.menu-btn {
  position: fixed;
  top: 0px;
  right: 0px;
  display: flex;
  height: 70px;
  width: 70px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #65bff2;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #ffffff;
  position: absolute;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
.menu-btn2 span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}
.menu-btn2 span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.menu-btn2 span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-btn2 {
  top: 10px;
  right: 0px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  margin-left: auto;
  margin-top: 0.7rem;
  background: #ffffff;
}
#menu-btn-check {
  display: none;
}
#rank_title_copy {
  display: flex;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: rgba(255, 255, 255, 0.9);
  transition: all 0.5s;
  /*アニメーション設定*/
  overflow-y: scroll;
}
.menu-content ul {
  padding: 20px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ccc;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  padding: 16px;
  position: relative;
  text-align: left;
}
.menu-content ul li a:before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 1px #444;
  border-right: solid 1px #444;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 24px;
}
.menu-content #search {
  padding-bottom: 0;
  position: relative;
  margin: 10px 2rem 0px !important;
  width: auto !important;
}
.menu-content li {
  margin-left: 0px;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;
  /*メニューを画面内へ*/
}
.hamburger-menu {
  display: flex;
}
#headbox {
  text-align: left;
  align-items: unset;
  width: 86% !important;
}
.sitename img {
  max-width: 100% !important;
  padding-bottom: 3px;
}
.widget.headbox {
  display: none;
}
#top_area {
  display: flex;
}
.search-menu {
  padding: 10% 8px 8px;
}
.search-menu h3 {
  margin: auto;
}
.search-menu h3:before {
  display: none;
}
.sideRank_title_0 {
  padding: 5% 0;
  text-align: center;
}
img.image {
  max-width: 100%;
  height: auto;
}
.sideber_rank_title {
  position: relative;
}
.sideber_rank_title img {
  width: 45px;
  height: auto;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
}
.sideber_rank_title .sideRank_title_0 {
  padding-left: 5rem;
  text-align: left;
  background: #f9f9f9;
  font-weight: 700;
}
.time i {
  margin: 0 5px;
}
.Not_TXT {
  font-weight: 700;
  font-size: 2.4rem;
}
.Not_h2 {
  margin-bottom: 4rem;
}
/*********************************
TablePress 
*********************************/
.tablepress {
  table-layout: fixed;
  background: #ffffff;
}
.tablepress tr {
  border: 0;
}
.tablepress tr.row-1 td {
  position: relative;
}
.tablepress tr.row-1 td span {
  position: absolute;
  left: 5px;
  top: -0.25rem;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  background: #666666;
  color: #ffffff;
  font-size: 18px;
  font-style: italic;
  text-align: center;
  text-indent: -0.04in;
}
.tablepress tr.row-1 td:nth-child(2) span {
  width: 50px;
  height: 50px;
  top: -0.5rem;
  border: 0;
  background: url(/wp-content/themes/e_ver004/img/ranking-one.svg);
  background-size: 100%;
  box-shadow: none;
  text-indent: -9999px;
}
.tablepress tr.row-1 td:nth-child(3) span {
  width: 50px;
  height: 50px;
  top: -0.5rem;
  border: 0;
  background: url(/wp-content/themes/e_ver004/img/ranking-two.svg);
  background-size: 100%;
  box-shadow: none;
  text-indent: -9999px;
}
.tablepress tr.row-1 td:nth-child(4) span {
  width: 50px;
  height: 50px;
  top: -0.5rem;
  border: 0;
  background: url(/wp-content/themes/e_ver004/img/ranking-three.svg);
  background-size: 100%;
  box-shadow: none;
  text-indent: -9999px;
}
.tablepress tr td a {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.3rem;
  padding: 1rem 0;
  text-align: center;
  background: #fa5f2e;
  color: #ffffff;
  box-sizing: border-box;
  border-radius: 40px;
  border: 2px solid #fa5f2e;
  position: relative;
  transition: 0.2s;
  box-shadow: 3px 6px 6px #8d8d8da1;
}
.tablepress tr td a:hover {
  background: #ffffff;
  color: #CC0000;
  transition: 0.2s;
}
.tablepress td {
  width: calc(calc(100% - 100px) / 5);
  padding: 10px;
  vertical-align: middle;
  font-size: 14px;
  word-break: break-all;
  box-sizing: border-box;
}
.tablepress td:first-child {
  padding: 4px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
  background: #adadad;
  font-size: 12px;
  box-sizing: border-box;
  border: 0;
  border-bottom: solid 1px #ccc;
}
.tablepress tbody td, .tablepress tfoot th {
  border-top: 0;
}
.column-1, .tablepress td:first-child {
  width: 72px;
  font-weight: 700;
  position: sticky !important;
  left: 0;
  z-index: 2;
}
.column-1:before, .tablepress td:first-child:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-left: none;
  border-right: none;
  border-top: none;
	border-bottom: 0.1rem solid #CCC;
}
/* テーブルボタン */
.tablepress tr:last-child td a {
  background: #CC0000;
  transition: 0.2s;
  border: 2px solid #CC0000;
}
.tablepress tr:last-child td a:hover {
  background: #ffffff;
  color: #CC0000 !important;
  transition: 0.2s;
}
.tablepress tr td a i {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
}
.row-2 td {
  font-weight: 700;
}
.tablepress {
  width: 1600px;
  border: 0.1rem solid #CCC;
}
#page .tablepress {
  width: 100%;
}
.tablepress td {
  width: calc(1600px / 10);
  font-size: 1.2rem;
  border: 0.1rem solid #CCC;
	border-left: none !important;
}
#page .tablepress td {
  width: auto;
}
.horizonal-scroll {
  margin: 0 auto;
  padding: 0 1rem 0 0;
  margin-bottom: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .horizonal-scroll {
    width: 100%;
  }
}
.horizonal-scroll::after {
  content: "※ このテーブルは横にスクロールできます。";
  color: #ff0000;
  font-size: 1.6rem;
}
.horizonal-scroll::-webkit-scrollbar {
  height: 10px;
}
.horizonal-scroll::-webkit-scrollbar-track {
  background-color: #ccc;
}
.horizonal-scroll::-webkit-scrollbar-thumb {
  background-color: #fc9d0e;
  border-radius: 100px;
}
.horizonal-scroll .tablepress caption {
  display: none;
  visibility: hidden;
}
.tablepress tbody tr:first-child td:first-child {
  position: static;
}
.img-center {
  display: block;
  margin: 0 auto;
}
/*********************************
目次 
*********************************/
.section.sec-toc .inner {
  padding: 0;
}
#toc_container {
  padding: 2rem 6rem;
  background: #ffffff;
  color: #666;
  max-width: 700px;
  width: 80% !important;
  margin: 0rem auto;
  border: 0;
}
#toc_container ul {
  padding-left: 0;
  list-style: none;
  font-size: 110%;
}
.toc_title {
  font-size: 27px;
  color: #fc9d0e;
  margin-bottom: 3rem;
  font-weight: bold;
  padding: 0 0 1rem;
  position: relative;
  text-align: center;
  letter-spacing: 4px;
}
.toc_title span {
  font-size: 1.4rem;
  display: block;
}
.toc_title span a {
  display: inline-block;
  background: #fc9d0e;
  padding: 0.4rem 2rem;
  border-radius: 30px;
  color: #ffffff;
}
.toc_title span a:hover {
  background: #f2554d;
  transition: 0.3s;
}
.toc_title small {
  font-size: 60%;
}
#toc_container .contents-subheading {
  font-size: 2.2rem;
  counter-increment: title;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  font-weight: 700;
}
#toc_container .contents-subheading a {
  line-height: 1.2;
  color: #1e1e1e;
}
.contents-subheading a:hover {
  text-decoration: underline;
  opacity: 0.5;
  transition: 0.3s;
}
#toc_container .contents-subheading:before {
  content: counter(title);
  display: inline-block;
  font-weight: bold;
  background: #fc9d0e91;
  width: 40px;
  height: 100%;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  margin-right: 1rem;
  padding: 0.5rem;
}
.toc_list {
  width: 93.5%;
  margin: 0 auto !important;
}
.toc_list:last-child {
  margin: 0;
}
.toc-link {
  font-size: 1.6rem;
  border: none;
  margin: 0 0 1.5rem;
  font-weight: 700;
  padding: 0;
  position: relative;
  transition: 0.3s;
}
.toc-link:before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}
.toc-link:last-child {
  margin: 0;
}
.toc-link a {
  padding-left: 1.5rem;
}
.toc-link a:hover {
  text-decoration: underline;
  opacity: 0.5;
  transition: 0.3s;
}
.single #toc_container {
  margin: 4rem auto !important;
  background-color: #fff5e5;
}
.single #toc_container .toc_list {
  width: 100% !important;
}
.single #toc_container .toc_list li {
  margin-top: 1.6rem;
  position: relative;
}
.single #toc_container .toc_list li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #fc9d0e;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}
.single #toc_container .toc_list li a {
  text-decoration: underline;
  padding-left: 1.2rem;
}
.single #toc_container .toc_list li a .toc_number.toc_depth_1 {
  display: none;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #toc_container {
    padding: 1.5rem 4vw;
    margin: 0 auto;
    width: 90% !important;
  }
  .toc_title {
    font-size: 24px;
    margin: 0 !important;
  }
  .toc_title:before {
    font-size: 2.8vw;
    padding: 1.5vw;
    margin-right: 0.5rem;
    vertical-align: 7%;
  }
  #toc_container .contents-subheading {
    font-size: 16px;
    margin-bottom: 1.3rem;
    line-height: 25px;
    padding: 0;
  }
  .toc_list {
    margin-bottom: 3vw;
  }
  .toc-link {
    font-size: 14px;
    margin-bottom: 0.8rem;
    padding-left: 2rem;
  }
  .toc-link:before {
    width: 3px;
    height: 3px;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 500px) {
  .toc_title {
    font-size: 20px;
  }
  .toc_title:before {
    font-size: 3.5vw;
    padding: 2vw;
    vertical-align: 15%;
  }
  .toc-link {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
  }
}
.toc_toggle a {
  font-size: 12px;
}
#toc_container span.toc_toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#toc_container .contents-subheading {
  margin: 2rem 0;
}
#toc_container .toc-link {
  display: block;
  margin-bottom: 1rem;
}
.recommend-box {
  position: relative;
  background: #ffffff;
  margin-bottom: 6rem;
  padding: 5rem 4rem;
}
.single .recommend-box .btn2, .single .recommend-box .btn3, .single .recommend-box .btn1 {
  width: 100%;
  margin: 1%;
	margin-bottom:20px;
}
.single-box {
  background: #ffffff;
  margin-bottom: 4rem;
}
.single-box img {
  display: block;
  margin: 0rem auto 3rem;
}
.single-box h3 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 0.8rem;
  padding-right: 6rem;
  margin-bottom: 1.6rem;
}
.single-box p {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 420px) {
  .recommend-box {
    padding: 4rem 2rem;
  }
}
.recommend-ttl_h3 {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  font-size: 2.2rem;
  text-align: left;
  background-color: #fc9d0e;
}
.recommend-ttl_h3 a {
  color: #ffffff;
  position: relative;
  display: block;
  font-weight: 700;
  text-align: left;
}
.recommend-ttl_h3 span {
  color: #ffffff;
  font-weight: bold;
}
.recommend-ttl_h3 .pr-tag {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0px 10px;
  font-size: 17px;
  background: #e1e1e1b0;
}
@media screen and (min-width: 480px) {
  .recommend-ttl_h3 {
    font-size: 2.8rem;
  }
}
.recommend-ttl_h3 a i {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 24px;
}
.recommend-ttl_h4 {
  font-size: 2.2rem;
  color: #1e1e1e;
  margin-bottom: 1.6rem;
  font-weight: 700;
  border-bottom: solid 2px;
}
.recommend-img img {
  display: block;
  width: 100%;
  height: auto;
}
.recommend-head {
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
  padding: 1rem;
  background: #00587a;
  color: #ffffff;
  font-weight: 700;
}
.recommend-info {
  position: relative;
}
.recommend-info .recommend-table td:first-child {
  background: #d9d9d9;
  color: #1e1e1e;
}
.recommend-info li {
  list-style-type: none;
}
.recommend-info li::before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 10px;
  color: #999;
}
.recommend-txt p {
  margin-bottom: 1.6rem;
}
.recommend-table {
  width: 100%;
  background: #ffffff;
  padding: 1rem;
}
.recommend-table td:first-child {
  padding: 1rem;
  background: #fc9d0e;
  color: #ffffff;
  text-align: center;
  width: 90px;
  border: 6px solid #ffffff;
  font-size: 1.4rem;
  vertical-align: middle;
}
@media screen and (min-width: 480px) {
  .recommend-table td:first-child {
    width: 150px;
    font-size: 16px;
  }
}
.recommend-table td {
  vertical-align: middle;
  box-sizing: border-box;
}
.recommend-table td:last-child {
  padding: 1rem;
  color: #1e1e1e;
}
@media screen and (min-width: 768px) {
  .recommend-table td:last-child {
    padding: 0 0 0 1rem;
  }
}
.recommend-btn--wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: center;
}
.recommend-map {
  margin-bottom: 2rem;
}
.recommend-map iframe {
  width: 100%;
}
/* 口コミ */
.review .wrap + .wrap {
  margin-top: 4rem;
}
.review blockquote {
  padding: 0px 10px;
}
.review .quote {
  padding: 10px;
}
.review .wrap .review_title, .review .wrap .admin_title {
  background-color: #adadad;
  border-radius: 5px 5px 0 0;
  color: #ffffff;
  padding: 1.2rem;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  word-wrap: break-word;
}
.review .wrap .review_title:before, .review .wrap .admin_title:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding-right: 5px;
}
.review .wrap .admin_title {
  background-color: #d9d9d9;
  color: #1e1e1e;
}
.review .wrap .quote {
  text-align: right;
  margin-top: 2rem;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .review .wrap .quote {
    font-size: 1.4rem;
  }
}
.review .wrap .quote a {
  color: #fc9d0e;
}
.review_comment {
  border: solid 2px #adadad;
  border-radius: 10px;
}
.admin_comment {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
}
.admin_comment .admin_title {
  border-radius: 5px !important;
}
.review.top {
  display: block;
}
@media screen and (min-width: 768px) {
  .review.top {
    display: flex;
	  flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {

	  .review.top .wrap {
    	margin: 1%;
  }
}
@media screen and (min-width: 768px) {
  .review.top .wrap {
    width: 48%;
  }
}
.single .single-box .review {
  margin-bottom: 4rem;
}
/*　ポイント */
.sectionPoint {
  background-color: #ffffff;
  border: 3px solid #fc9d0e;
  border-radius: 0 5px 5px 5px;
  margin-top: 70px;
  margin-bottom: 50px;
  padding: 20px;
  position: relative;
}
.sectionPoint .sectionPoint-head {
  background-color: #fc9d0e;
  border-radius: 5px 5px 0 0;
  color: #ffffff;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  left: -3px;
  letter-spacing: 0.05em;
  line-height: 2.1875;
  height: 35px;
  padding: 0 30px;
  position: absolute;
  top: -35px;
}
.sectionPoint .sectionPoint-head i {
  margin-right: 5px;
}
.sectionPoint ul {
  list-style: disc;
  padding-left: 30px;
}
.sectionPoint li {
  margin: 10px 0;
  font-weight: 700;
}
.related_post_title {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 0.8rem;
  padding-right: 6rem;
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  border-bottom: 3px solid #1e1e1e;
}
.wp_rp_title {
  font-weight: 700;
  display: block;
}
/* 企業一覧 */
.slidelist {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slidelist-view {
  position: relative;
  padding: 1.6rem;
  padding-right: 6.5rem;
  cursor: pointer;
}
.slidelist-view i {
  position: absolute;
  top: 0;
  right: 0rem;
  bottom: 0;
  background: rgba(252, 157, 14, 0.5);
  font-size: 2.4rem;
  margin: auto;
  padding: 2rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slidelist-view i.active {
  transform: rotate(180deg);
}
.slidelist li {
  position: relative;
  width: 98%;
  margin: 1%;
  background: #eff5fb;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .slidelist li {
    width: 31.3%;
  }
}
.slidelist-detail {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #eff5fb;
  padding: 1rem;
  display: none;
  z-index: 1;
  border-top: 1px solid #999;
}
.slidelist-tbl {
  width: 100%;
  background: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.slidelist-tbl th {
  background: #fc9d0e;
  color: #ffffff;
  padding: 0.6rem;
  border: 4px solid #ffffff;
}
.slidelist-tbl td {
  padding: 0.6rem;
}
.slidelist-intro {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.slidelist2 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.slidelist2-view {
  background: #ffffff;
  position: relative;
  padding: 1.6rem;
  padding-left: 2rem;
  padding-right: 5rem;
  font-weight: 700;
  cursor: pointer;
}
.slidelist2-view:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  height: 12px;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  margin: auto;
  color: #ffffff;
  content: "";
  font-weight: 900;
  line-height: 1;
  background: #df7e38;
  padding: 10px 10px 19px 10px;
  border-radius: 30px;
}
.slidelist2-view.active:before {
  content: "";
}
.slidelist2-view i {
  position: absolute;
  top: 0;
  left: 0rem;
  bottom: 0;
  background: #fc9d0e;
  font-size: 2.4rem;
  margin: auto;
  padding: 2rem;
  color: #ffffff;
}
.slidelist2-view i.active {
  transform: rotate(180deg);
}
.slidelist2-hide {
  display: none;
  background: #ffffff;
  padding: 2rem;
}
.slidelist2 li {
  width: 98%;
  margin: 1%;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .slidelist2 li {
    width: 48%;
  }
}
.slidelist2-detail {
  background: #ffffff;
  width: 100%;
  z-index: 1;
}
.slidelist2-detail .btn {
  width: 100%;
  max-width: 300px;
  margin: 1rem auto 0;
}
.slidelist2-detail .btn a {
  padding: 1rem;
}
.slidelist2-tbl {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.slidelist2-tbl td:first-child {
  background: #fc9d0e;
  color: #ffffff;
  border: 4px solid #ffffff;
  width: 100px;
  padding: 1rem;
  text-align: center;
  font-size: 1.4rem;
  vertical-align: middle;
}
.slidelist2-tbl td {
  padding: 0.6rem;
}
.faq-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.faq-box {
  list-style: none;
  margin: 1% auto;
  margin-top: 1rem;
  width: 90%;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .faq-box {
    width: 48%;
    margin: 1%;
  }
}
.faq-box .faq-q {
  width: 100%;
  position: relative;
  padding: 1rem;
  padding-left: 9rem;
  padding-right: 6.5rem;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .faq-box .faq-q {
    padding: 3rem;
    padding-left: 9rem;
    padding-right: 6.5rem;
  }
}
@media screen and (min-width: 768px) {
  .faq-box .faq-q {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: normal;
  }
}
.faq-box .faq-q br {
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-box .faq-q br {
    display: block;
  }
}
.faq-box .faq-q:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  color: #df7e38;
  height: 6rem;
  padding: 0 1.4rem;
  border-right: 2px dotted #fc9d0e;
  margin: auto;
  font-size: 6rem;
  content: "Q";
  font-weight: 700;
  line-height: 1;
}
.faq-box .faq-q i {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0rem;
  bottom: 0;
  background: #df7e38;
  font-size: 2.4rem;
  margin: auto;
  padding: 2rem;
  color: #ffffff;
}
.faq-box .faq-q i.active {
  transform: rotate(180deg);
}
.faq-box li {
  position: relative;
  background: #faf8f5;
  font-weight: 700;
  font-size: 1.6rem;
}
.faq-box a {
  position: relative;
  display: block;
  padding: 1.6rem;
  text-align: center;
  background: #ffdba5;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 100px;
}
.faq-box a i {
  position: absolute;
  height: 16px;
  top: 0;
  right: 2rem;
  bottom: 0;
  margin: auto;
}
.faq-box .faq-a {
  display: none;
  font-size: 1.4rem;
  background: rgba(250, 248, 245, 0.5);
  padding: 1rem;
  padding-left: 9rem;
  z-index: 1;
}
.faq-box .faq-a:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  color: #fc9d0e;
  height: 6rem;
  padding: 0 1.7rem;
  border-right: 2px dotted #fc9d0e;
  margin: auto;
  font-size: 6rem;
  content: "A";
  font-weight: 700;
  line-height: 1;
}
.single-box img, #bottom-content img {
  margin-bottom: 4rem;
}
.single-box p, #bottom-content p {
  margin-bottom: 1.6rem;
}
.single-box h3, #bottom-content h2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1rem;
  padding-left: 7rem;
  margin-bottom: 1.6rem;
  background: #ffdba5;
}
.single-box h3:before, #bottom-content h2:before {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 58px;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fc9d0e;
  color: #ffffff;
  text-align: center;
  font-family: "Font Awesome 5 Free";
  content: "";
}
#bottom-content .sectionTtl {
  text-align: left;
  padding-left: 1rem;
}
#bottom-content .sectionTtl {
  background-color: #fff5e5;
}
#bottom-content .sectionTtl:before {
  display: none;
}
.single-box h4, #bottom-content h3 {
  font-size: 2rem;
  font-weight: 700;
  padding-left: 10px;
  margin-bottom: 1.6rem;
  border-left: 6px solid #fc9d0e;
}
.single-box h5, #bottom-content h4 {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 2px dashed #fc9d0e;
  margin-bottom: 1.4rem;
}
@media screen and (min-width: 768px) {
  #bottom-content img {
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  #bottom-content .imgSize-50 {
    width: 50%;
  }
}
.left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .left {
    width: calc(100% - 280px);
  }
}
.left .recommend-box {
  margin-bottom: 0px;
}
.right {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .right {
    width: 250px;
  }
}
.bg-white {
  background: #ffffff !important;
}
.Thumbnail_box {
  width: 100%;
}
.Thumbnail_box a {
  display: block;
}
.Thumbnail_box img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 480px) {
  .Thumbnail_box {
    width: 220px;
    height: 220px;
    overflow: hidden;
    position: relative;
  }
  .Thumbnail_box img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.list_data_0 {
  width: 100%;
  padding: 1rem;
}
@media screen and (min-width: 480px) {
  .list_data_0 {
    width: calc(100% - 240px);
  }
}
.list_link_set_0 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.category_list_name {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  padding: 0.5rem;
  font-weight: 700;
  border-left: 10px solid #6498b6;
}
.category_list_name a {
  color: #6498b6;
}
.category_list_coments .btn {
  width: 100%;
  max-width: 250px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .category_list_coments .btn {
    margin: 2rem 0 0 auto;
  }
}
.category_list_coments .btn a {
  padding: 1rem 2rem;
}
.widget-title {
  background: #fff5e5;
  color: #fc9d0e;
  text-align: left;
  padding: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  border-right: 10px solid rgba(255, 255, 255, 0.2);
}
.widget-title:after {
  content: "";
  background-image: url(img/car-orange.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 3em;
  height: 2em;
  position: absolute;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
}
.side_list {
  margin-bottom: 2rem;
}
.side_list li {
  padding: 0 !important;
  margin: 0 !important;
}
.side_list li a {
  display: block;
  padding: 1rem !important;
  border-bottom: 1px solid #fc9d0e;
}
.side_list:nth-of-type(2) {
  text-align: center;
}
#sideber_menu .cat-post-item .cat-post-title {
  padding: 1rem !important;
  padding-left: 2rem !important;
  position: relative;
  text-align: left;
}
#sideber_menu .cat-post-item .cat-post-title:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  height: 12px;
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  margin: auto;
  color: #fc9d0e;
  content: "";
  font-weight: 900;
  line-height: 1;
}
.side_list a {
  width: 100%;
}
.sideber_rank {
  margin-bottom: 1rem;
  background: #ffdba5;
  padding: 1rem;
  width: 100%;
  display: flex;
}
.sideber_rank_img {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
}
.sideber_rank_img img {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: auto;
  max-width: initial;
}
.sideber_rank_title {
  width: calc(100% - 90px);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1rem;
}
.sideRank_title_1 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
/*--------------------------------
 下部固定リンク表示用スタイル
--------------------------------*/
.footer-banner {
  position: fixed;
  bottom: 30px;
  left: 0;
  padding: 4px 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.7);
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 100;
}
.footer-banner .btn-wrap {
  justify-content: center;
}
.footer-totop-btn, .footer-home-btn {
  width: 64px;
  font-size: 36px;
  padding: 7px 0 5px;
  margin: 0 15px 15px;
  text-align: center;
  box-sizing: border-box;
  background: rgba(214, 214, 214, 0.26);
  color: #6498b6;
}
.footer-home-btn {
  position: fixed;
  bottom: 0;
  left: 0;
}
.footer-totop-btn {
  position: fixed;
  bottom: 182px;
  border-radius: 10px;
  right: 0;
  z-index: 2;
}
.footer-banner .btn-wrap {
  margin: 2.4rem 0 1rem;
}
/*
a.footer-banner-btn {
display: block;
background: -webkit-linear-gradient(1deg, rgb(146, 0, 0), rgb(221, 0, 0));
background: linear-gradient(1deg, rgb(146, 0, 0), rgb(221, 0, 0));
color: $white;
text-align: center;
padding: 12px 80px;
font-weight: 700;
font-size: 20px;
letter-spacing: 1px;
border-radius: 8px;
border: 2px solid $white;
box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
transition: 0.2s;
width: 50%;
margin: 3px auto 6px
}
*/
.footer-banner-btn, a .footer-banner-btn, button .footer-banner-btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.7px;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-f {
  font-size: 2rem;
  position: relative;
  padding: 0px 20px 10px 30px;
  color: #ffffff;
  background: #c52929;
  box-shadow: 0 5px 0 #880e0e;
  width: 60%;
}
a.btn-f span {
  font-size: 1.3rem;
  position: absolute;
  top: -15px;
  left: calc(50% - 38%);
  display: block;
  width: 77%;
  padding: 0.7rem 0 0.5rem;
  color: #c52929;
  border: 2px solid #c52929;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
a.btn-f:hover {
  transform: translate(0, 3px);
  color: #ffffff;
  background: #c52929;
  box-shadow: 0 2px 0 #880e0e;
}
a.btn-f:hover:before {
  left: 2rem;
}
a.footer-banner-btn:hover {
  opacity: 0.7;
}
a.footer-banner-btn i {
  margin-left: 15px;
  font-size: 27px;
}
.footer-banner-txt {
  font-size: 15px;
  /*  width: calc(100% - 180px); */
  width: 80%;
  max-width: 1000px;
  /*  display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
*/
  display: block;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
  box-sizing: border-box;
  line-height: 1.4;
  text-align: center;
}
.footer-banner-txt p {
  /*  width: calc(100% - 500px); */
  width: 100%;
  line-height: 1.4;
  margin: 5px 0 0;
  font-weight: normal;
  padding: 0 10px;
  color: #ffffff;
}
.icon-space {
  color: #aaa;
  margin: 0 8px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .footer-banner-txt p {
    width: calc(100% - 400px);
  }
  .footer-banner-txt {
    font-size: 16px;
  }
  .footer-banner-txt p {
    font-size: 14px;
  }
  a.footer-banner-btn {
    padding: 0px 15px 9px;
  }
}
@media only screen and (max-width: 768px) {
  .footer-banner {
    padding: 5px 0 0;
  }
  a.btn-f {
    font-size: 1.5rem;
    width: 74%;
    margin-right: 40px;
  }
  a.btn-f span {
    font-size: 1rem;
    top: -9px;
    left: calc(50% - 40%);
    width: 80%;
    padding: 0.5rem 0 0.3rem;
  }
  .footer-home-btn {
    width: 40px;
    padding: 0;
    line-height: 1.5;
    position: absolute;
    bottom: 100%;
    font-size: 34px;
    margin: 0;
  }
  .footer-totop-btn {
    width: 47px;
    padding: 0;
    bottom: 175px;
    right: 1rem;
    line-height: 1.5;
    font-size: 34px;
    margin: 0;
  }
  .footer-banner-txt p {
    width: 100%;
  }
  .footer-banner-txt {
    font-size: 16px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .icon-space {
    display: none;
  }
  .footer-banner-txt p {
    padding: 5px 20px;
  }
  .footer-banner-btn, a .footer-banner-btn, button .footer-banner-btn {
    letter-spacing: 0.2px;
  }
  a.footer-banner-btn {
    padding: 0px 15px 10px;
    margin-bottom: 5px;
    width: 74%;
  }
  a.footer-banner-btn i {
    margin-left: 12px;
    font-size: 22px;
  }
}
@media only screen and (max-width: 600px) {
  .footer-banner-txt p {
    font-size: 12px;
  }
}
.footer a {
  font-size: 1.4rem;
  font-weight: 400;
}
.search-menu {
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7-form input, .wpcf7-form textarea {
  margin-bottom: 2rem;
}
.hamburger-menu h3 {
  font-size: 2rem;
  font-weight: 700;
}
.relative {
  position: relative;
}
.rank_table {
  position: relative;
}
#main_rank_table {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
#main_rank_table .ran_ico img {
  width: 110px;
}
.main_rank_table {
  width: 98%;
  margin: 1%;
  background: #ffffff;
  box-shadow: 4px 4px 0 rgba(252, 157, 14, 0.2);
}
@media screen and (min-width: 768px) {
  .main_rank_table {
    width: 31.3%;
  }
}
.sectionTtl2_h2 {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .sectionTtl2_h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .sectionTtl2_h2 {
    font-size: 3.2rem;
  }
}
.main_rank_table {
  text-align: center;
  padding-top: 20px;
}
.main_rank_table .ran_ico {
  position: relative;
}
.table_rank_title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.table_rank_title:after {
  display: block;
  width: 80px;
  height: 3px;
  background: #ffdba5;
  margin: 0.5rem auto 2rem;
  content: "";
}
.recommend-table td {
  display: table-cell;
}
@media screen and (max-width: 767px) {
  .recommend-table td {
    display: block;
    width: 100% !important;
  }
}
.btn-full {
  width: 80%;
  margin: 2rem auto;
}
.rank_top {
  position: absolute;
  top: -6.5rem;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  bottom: 2rem;
}
.recommend-box:last-of-type {
  margin-bottom: 0;
}
.rank_table_point_left b {
  display: block;
  padding: 10px;
  background: #f9f9f9;
  text-align: center;
}
.rank_table_point_left span {
  display: block;
  padding: 10px 10px 0;
  text-align: left;
}
.wsp-pages-list, .wsp-posts-list, .wsp-pickups-list {
  margin-bottom: 4rem;
}
.wsp-pages-list li, .wsp-posts-list li, .wsp-pickups-list li {
  margin-bottom: 1.6rem;
}
/*--------------------------------
 【ジャンル】・【エリア】ページ
--------------------------------*/
.area-read {
  border: 3px solid #fc9d0e;
  padding: 2rem;
  box-sizing: border-box;
}
.genre .toc_toggle {
  display: none !important;
}
.genre .genre-box {
  background-color: #fff5e5;
  padding: 2rem;
  box-sizing: border-box;
}
.genre .genre-box .genre_inner {
  background-color: #ffffff;
  padding: 2rem;
  box-sizing: border-box;
}
.genre .genre-box .btn-wrap {
  margin: 0 !important;
}
.genre .genre-box .btn-wrap .btn {
  width: 100% !important;
  max-width: 300px !important;
}
.genre .recommend-table {
  background-color: #ffffff;
}
/*--------------------------------
 関連記事 
--------------------------------*/
.rl_post ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 3rem;
  margin-left: 0 !important;
}
@media screen and (min-width: 768px) {
  .rl_post ul {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}
.rl_post ul li {
  max-width: 570px;
  transition: opacity 0.2s linear;
}
.rl_post ul li:hover {
  opacity: 0.7;
  transition: opacity 0.3s linear;
}
.rl_post ul li a {
  width: 100%;
}
.rl_post ul li a .img-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.rl_post ul li a .img-wrap .category {
  display: inline-block;
  background-color: #fc9d0e;
  color: #ffffff;
  padding: 0.5rem;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 0;
}
.rl_post ul li a .img-wrap img, .rl_post ul li a .img-wrap .noImg {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .rl_post ul li a .img-wrap img, .rl_post ul li a .img-wrap .noImg {
    height: 250px;
  }
}
@media screen and (min-width: 1024px) {
  .rl_post ul li a .img-wrap img, .rl_post ul li a .img-wrap .noImg {
    height: 300px;
  }
}
.rl_post ul li a .img-wrap .noImg {
  background-color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rl_post ul li a .img-wrap .noImg i {
  color: #ffffff;
  font-size: 6rem;
}
.rl_post ul li a .text-wrap {
  padding: 1.5rem 0;
}
.rl_post ul li a .text-wrap h4 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  padding-left: 1rem;
  border-left: 5px solid #fc9d0e;
}
/*--------------------------------
検索機能
--------------------------------*/
.nxrc-list *, .nxrc-search-form * {
  list-style: none;
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.nxrc-title {
  display: block;
  font-size: 1.2em;
}
.nxrc-search-form table, .nxrc-title {
  margin-bottom: 20px;
}
.nxrc-excerpt {
  margin-bottom: 10px;
}
.nxrc-search-form table {
  margin-bottom: 0;
}
.nxrc-list li, .nxrc-search-form {
  margin-bottom: 0px;
}
.nxrc-search-form input, .nxrc-search-form select {
  vertical-align: middle;
}
.nxrc-fields th, .nxrc-links, .nxrc-search-button, .nxrc-search-form th {
  text-align: center;
}
.nxrc-fields th, .nxrc-links, .nxrc-search-button, .nxrc-search-form caption, .nxrc-search-form th, .nxrc-title {
  font-weight: 700;
}
.nxrc-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.nxrc-links a, .nxrc-links span {
  width: 48%;
  margin: 1%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.nxrc-excerpt, .nxrc-fields {
  font-size: 0.8em;
}
.nxrc-list .nxrc-excerpt a {
  color: #777;
}
.nxrc-list .nxrc-excerpt a:link, .nxrc-list .nxrc-excerpt a:visited {
  color: #777;
}
.nxrc-fields, .nxrc-search-button button, .nxrc-search-form table {
  width: 100%;
}
.nxrc-link {
  display: inline-block;
  width: 40%;
}
.nxrc-fields th {
  width: 20%;
  background: #f5f5f5;
  color: #1e1e1e;
  font-size: 12px;
  border: 1px solid #ddd;
}
.nxrc-search-form th {
  width: 20%;
  background: #f5f5f5;
  color: #1e1e1e;
  font-size: 14px;
}
.nxrc-fields td {
  font-size: 12px;
  border: 1px solid #ddd;
}
.nxrc-search-form td {
  font-size: 14px;
}
.nxrc-search-button button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  width: 90%;
  margin: 0 auto;
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 700;
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #ffffff;
  background-image: linear-gradient(to right, #f44336 0%, #ffa825 100%);
  border-radius: 400px;
  cursor: pointer;
}
.nxrc-link {
  margin: 0 10px;
  height: 60px;
  line-height: 60px;
  background-color: #ffa825;
  color: #ffffff;
  border-radius: 40px;
  cursor: pointer;
}
.nxrc-link:hover, .nxrc-search-button button:hover {
  text-decoration: none;
  opacity: 0.5;
}
.nxrc-link.active {
  background-color: #c00;
}
.nxrc-link.disable {
  background-color: #ccc;
  pointer-events: none;
}
.nxrc-fields, .nxrc-search-form table {
  border-spacing: 0;
}
.nxrc-search-form td, .nxrc-search-form th {
  padding: 10px;
}
.nxrc-fields td, .nxrc-fields th {
  padding: 10px;
}
.nxrc-search-form select {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
.nxrc-search-form input[type="checkbox"], .nxrc-search-form input[type="radio"] {
  width: 1em;
}
.nxrc-list li {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1);
}
.nxrc-list li:first-child .search-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 6px solid #ffca28;
  z-index: 1;
  box-sizing: border-box;
  pointer-events: none;
}
.nxrc-list li:first-child .search-wrap:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  background: url(search/img/recommend.svg) center no-repeat;
  background-size: 100%;
  content: "";
}
.nxrc-title {
  position: relative;
  margin-bottom: 20px;
  padding: 0 12px 20px 12px;
  color: #333 !important;
  font-size: 22px;
}
.nxrc-title:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: "";
  background-image: -webkit-repeating-linear-gradient(135deg, #ccc, #ccc 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #ccc, #ccc 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.nxrc-title:before {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 5px;
  width: 12px;
  height: 12px;
  background: url(../img/angles-right.svg) center no-repeat;
  background-size: 100%;
  margin: auto;
  content: "";
}
.nxrc-fields {
  background: #ffffff;
}
.nxrc-fields tr:not(:first-child) th {
  border-top: dotted 1px #ddd;
}
.nxrc-search-form {
  padding: 30px;
  background: #f9f9f9;
  border-radius: 4px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}
.nxrc-search-form tr:not(:first-child) th {
  border-top: solid 1px #ddd;
}
.nxrc-search-form-content {
  padding: 40px;
  background: #ffffff;
  border: 1px solid #eee;
}
.nxrc-search-form caption {
  /*
  margin-bottom: 20px;
  padding: 10px;
  color: $white;
  background-color: #333;
  border-radius: 4px;
  font-size: 18px;
  text-align: left;
  */
  font-size: 20px;
  margin: auto;
  padding: 1rem 2rem;
  color: #ffffff;
  background: #444;
}
.nxrc-search-form caption span, .nxrc-search-form caption img {
  display: inline-block;
}
.nxrc-search-form caption img {
  margin-right: 6px;
}
.flexin {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-img {
  display: block;
  width: 320px;
  position: relative;
  overflow: hidden;
}
.search-img img {
  display: block;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: scale(1.6);
}
.search-txt {
  width: calc(100% - 340px);
}
@media screen and (max-width: 768px) {
  .search-img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }
  .search-img img {
    width: 100%;
    height: auto;
    position: static;
  }
  .search-txt {
    width: 100%;
  }
  .nxrc-list li {
    width: 90%;
    margin: auto;
  }
  .nxrc-title {
    font-size: 18px;
  }
}
.kensaku-space {
  margin-top: 60px;
}
.formWrapper {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.nxrc-search-form td label {
  margin-right: 10px;
}
.nxrc-search-form {
  position: relative;
  max-width: 700px;
  background: repeating-linear-gradient(-45deg, #fafafa, #fafafa 2px, white 0, white 4px);
  /* チェックボックス全体 */
  /* デフォルトチェックボックス非表示 */
  /* チェックボックスのスタイル */
  /* チェックマーク作成 */
  /* チェック時のスタイル */
  /* チェック時 チェックマーク表示 */
}
.nxrc-search-form a:link {
  color: #ffffff;
}
.nxrc-search-form td {
  padding: 14px;
}
.nxrc-search-form caption {
  border-radius: 0;
}
.nxrc-search-form select {
  max-width: 320px;
}
.nxrc-search-form label {
  display: inline-block;
  margin: 4px !important;
}
.nxrc-search-form input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  opacity: 0;
  width: 1px;
  position: absolute;
  height: 1px;
}
.nxrc-search-form input[type="radio"] + span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  padding: 10px 11px 8px 30px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 12px;
  background: #f9f9f9;
}
.nxrc-search-form input[type="radio"] + span::before, .nxrc-search-form input[type="radio"] + span::after {
  position: absolute;
  content: "";
  display: block;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  margin: auto 10px auto 0;
  box-sizing: border-box;
}
.nxrc-search-form input[type="radio"] + span::before {
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 2px solid #999999;
  left: 9px;
}
.nxrc-search-form input[type="radio"]:checked + span::before {
  border: 2px solid #0070bd;
}
.nxrc-search-form input[type="radio"] + span::after {
  width: 8px;
  height: 8px;
  background: #999999;
  left: 13px;
  opacity: 0;
}
.nxrc-search-form input[type="radio"]:checked + span::after {
  background: #0070bd;
}
.nxrc-search-form input[type="radio"]:checked + span::after {
  opacity: 1;
}
@media (max-width: 650px) {
  .nxrc-search-form input[type="radio"] + span {
    padding: 10px 11px 8px 30px;
  }
}
.nxrc-search-form table {
  background: #ffffff;
}
.nxrc-search-form-content {
  margin-bottom: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
}
.nxrc-search-form .checknox-wrap {
  display: inline-block;
  position: relative;
  padding: 10px 11px 8px 30px;
  background: #f9f9f9;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-weight: 400;
  border-radius: 4px;
}
.nxrc-search-form .checknox-wrap input {
  display: none;
  font-weight: 400;
}
.nxrc-search-form .checknox-wrap .checkmark {
  position: absolute;
  top: 13px;
  left: 9px;
  height: 14px;
  width: 14px;
  background: #ffffff;
  border: 2px solid #999999;
  box-sizing: border-box;
  border-radius: 4px;
}
.nxrc-search-form .checknox-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 2px;
  top: -3px;
  width: 5px;
  height: 10px;
  border: 2px solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.nxrc-search-form .checknox-wrap input:checked + .checkmark {
  background-color: #0070bd;
  border: 2px solid #0070bd;
}
.nxrc-search-form .checknox-wrap input:checked + .checkmark:after {
  display: block;
}
.nxrc-list a:link, .nxrc-list a:hover, .nxrc-list a:active, .nxrc-list a:visited {
  color: #ffffff;
}
.nxrc-list li {
  margin-bottom: 30px;
}
.nxrc-search-button img {
  margin-left: 8px;
}
.nxrc-search-form {
  width: 95%;
}
@media screen and (max-width: 768px) {
  .nxrc-search-form {
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  .nxrc-link {
    display: inline-block;
    width: 85%;
    margin: 10px;
  }
  .nxrc-search-form th, .nxrc-search-form td {
    display: block;
    width: 100%;
    padding: 4px;
  }
  .nxrc-list li {
    border-width: 2px;
  }
}
.nxrc-title a {
  color: #333 !important;
}
.search-block {
  background: #eee;
}
.search-result {
  max-width: 900px;
  margin: 0 auto;
}
.search-result--header {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
.search-result--header span {
  font-size: 150%;
  color: #d00;
}
.search-result th, .search-result td {
  padding: 1rem;
  font-size: 1.6rem;
}
.search-result .nxrc-fields th {
  background: #444444;
  color: #ffffff;
}
.search-totop {
  width: 100%;
  display: block;
  max-width: 320px;
  margin: auto;
  padding: 1rem 0;
  text-align: center;
  background: #444;
  color: #ffffff;
  box-sizing: border-box;
  border-radius: 40px;
  border: 2px solid #444;
  position: relative;
  transition: 0.2s;
}
.search-totop:hover {
  background: #ffffff;
  color: #444;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .nxrc-fields th, .nxrc-fields td {
    width: auto;
    font-size: 12px;
  }
  .nxrc-fields th {
    width: 40%;
  }
  .nxrc-fields td {
    width: 60%;
  }
  .nxrc-search-form caption {
    font-size: 18px;
  }
}
.nxrc-list li th {
  width: auto;
}
.nxrc-fields {
  table-layout: fixed;
}
.breadcrumb_wrap {
  background-color: #f4f4f4;
  color: #1e1e1e;
}
.breadcrumb_wrap span, .breadcrumb_wrap a {
  color: #1e1e1e;
}
/* 230524新サイトマップページ用CSS */
.sitemap-home {
  display: block;
  position: relative;
  margin-bottom: 3rem;
  padding: 1rem 1rem 1rem 4rem;
  background: rgba(252, 157, 14, 0.05);
  font-weight: 700;
}
.sitemap-home:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 100%;
  margin: auto;
  padding: 0.5rem;
  background: #fc9d0e;
  color: #ffffff;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-home:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-rank {
  display: block;
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  background: rgba(252, 157, 14, 0.05);
  font-weight: 700;
}
.sitemap-rank:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 100%;
  margin: auto;
  padding: 0.5rem;
  background: #fc9d0e;
  color: #ffffff;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-rank:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-ul > li > a {
  position: relative;
  padding-left: 3rem;
  font-weight: 700;
}
.sitemap-ul > li > a:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  color: #fc9d0e;
  margin: auto;
  font-size: 2rem;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-ul a {
  padding: 1rem;
  border-bottom: 1px solid #eeeeee;
}
.sitemap-ul ul {
  padding-left: 3rem;
}
.sitemap-ul ul a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
}
.sitemap-ul ul a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-pages a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding: 1rem;
}
.sitemap-pages a:before {
  content: "" !important;
}
.sitemap-pages a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.sitemap-pickup a {
  display: block;
  position: relative;
  border-bottom: 1px solid #eeeeee;
  padding: 1rem;
}
.sitemap-pickup a:before {
  content: "" !important;
}
.sitemap-pickup a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: auto;
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  line-height: 1;
  content: "";
}
.footer-banner {
  display: none;
  visibility: hidden;
}
.prbanner {
  display: none;
  position: fixed;
  bottom: 17px;
  right: 17px;
  z-index: 9;
  transition: all 0.5s ease-out;
}
.prbanner.active {
  display: block;
  transition: all 0.5s ease-out;
}
.pr-inner {
  display: block;
  background-color: #6498b6;
  box-shadow: 3px 3px 5px #39393970;
  padding: 3rem 1.5rem 1.5rem 3rem;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease-out;
}
@media screen and (min-width: 768px) {
  .pr-inner {
    padding: 2.5rem 2rem 2rem 5rem;
  }
}
.pr-inner:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease-out;
}
.pr-title {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
}
.pr-title i {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.pr-title span {
  position: absolute;
  background: #ffffff;
  color: #1e709e;
  font-weight: 700;
  font-size: 1.7rem;
  top: 0;
  left: 0;
  padding: 0px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prbanner p {
  color: #fff;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .prbanner {
    width: 85%;
    right: 0;
    bottom: 20px;
  }
  .pr-title {
    font-size: 1.6rem;
  }
}
.sec-pr .inner > div {
  background: #6498b6;
  padding: 2rem;
  position: relative;
  border-radius: 8px;
}
@media screen and (min-width: 600px) {
  .sec-pr .inner > div {
    padding: 4rem;
  }
}
.sec-pr .inner > div h2.pr-contentTtl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
  padding-top: 1rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .sec-pr .inner > div h2.pr-contentTtl {
    font-size: 2.8rem;
  }
}
.sec-pr .inner > div h2.pr-contentTtl > span {
  border-radius: 10px;
  margin-right: 10px;
  color: #1e709e;
  background-color: #ffffff;
  font-size: 2rem;
  top: 4px;
  padding: 0 1rem;
}
@media screen and (min-width: 600px) {
  .sec-pr .inner > div h2.pr-contentTtl > span {
    font-size: 2.4rem;
    top: -6px;
  }
}
.sec-pr .inner > div > div {
  background: #ffffff;
  padding: 2rem;
}
@media screen and (min-width: 1024px) {
  .sec-pr .inner > div > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.sec-pr .inner > div > div div:nth-of-type(2) {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .sec-pr .inner > div > div div:nth-of-type(2) {
    width: calc(100% - 370px);
  }
}
.sec-pr .inner > div > div div:nth-of-type(2) h3 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: solid 2px #6498b6;
  margin-bottom: 1rem;
}
.sec-pr .inner > div > div div:nth-of-type(2) .pr-bottom-cont_txt {
  margin: 1rem 0;
}
.sec-pr .inner > div > div div:nth-of-type(2) .pr-bottom-btn {
  background: #65bff2;
  color: #ffffff;
  position: relative;
  width: 100%;
  padding: 3rem 1rem 2rem;
  margin-top: 2rem;
  border-radius: 100px;
  text-align: center;
  box-shadow: 0 5px 3px #8f8f8f7a;
  transition: 0.2s;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .sec-pr .inner > div > div div:nth-of-type(2) .pr-bottom-btn {
    font-size: 1.6rem;
  }
}
.sec-pr .inner > div > div div:nth-of-type(2) .pr-bottom-btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.sec-pr .inner > div > div div:nth-of-type(2) .pr-bottom-btn span {
  position: absolute;
  background: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e709e;
  border-radius: 20px;
  border: solid 2px #65bff2;
  padding: 0.6rem;
  top: -15px;
  left: 50%;
  width: 80%;
  transform: translateX(-50%);
}
.sec-pr .inner > div > div div:nth-of-type(2) i {
  padding-left: 2rem;
}
.sec-pr .inner > div .pr-img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .sec-pr .inner > div .pr-img {
    height: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .sec-pr .inner > div .pr-img {
    position: relative;
    width: 350px;
    margin-right: 20px;
    height: 350px;
    margin-bottom: 0;
  }
}
.sec-pr .inner > div .pr-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  margin: auto;
  max-width: initial !important;
}
/* PRページここから */
.pr_point {
  padding: 1.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
.pr_point:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, rgba(252, 157, 14, 0.6), rgba(252, 157, 14, 0.6) 3px, #fff 3px, #fff 6px);
  background: repeating-linear-gradient(-45deg, rgba(252, 157, 14, 0.6), rgba(252, 157, 14, 0.6) 3px, #fff 3px, #fff 6px);
}
.pr_point2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem;
  padding: 1rem;
}
.pr-main {
  background: rgba(252, 157, 14, 0.05);
}
.ppt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ppt p {
  width: 46%;
  margin: 2%;
}
@media screen and (max-width: 768px) {
  .ppt p {
    width: 96%;
    order: 2;
  }
}
.ppt .pr_img {
  width: 46%;
  margin: 2%;
}
@media screen and (max-width: 768px) {
  .ppt .pr_img {
    width: 96%;
    order: 1;
  }
}
.pr-page .spacer {
  max-width: 1024px;
}
.pr-page .pr-main .spacer {
  max-width: 800px;
}
.pr-page p {
  margin-bottom: 1.6rem;
}
.pr-page .ppt {
  margin-bottom: 2rem;
}
.pr-title {
  word-break: break-all;
}
.pr + .footer-totop-btn {
  bottom: 20%;
}
/* PRページここまで */
  .mv_sub-ttl strong {
    padding-left:5rem;
    position:relative;
  }

  .mv_sub strong span.pr-tag {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 38px;
    height: 20px;
    padding: 6px 10px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 5px;
    background: #444;
    color: #ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-weight: 700;
    left:0px;
    right: auto;
  }

/*コピー*/
.copy span{
	font-weight:bold;
	background:linear-gradient(transparent 60%, yellow 60%, yellow 100%);
}

.home .toc_list {
	display: none;
}
.home .toc_title {
	margin-bottom: .5rem !important;
}

.home  .toc_toggle {
	text-align: center;
	background: #fc9d0e;
	color: #fff;
	font-size: 14px;
	border-radius: 50px;
	padding: 0.4rem 2rem;
	line-height: 1;
	display: block;
	margin: 0 auto;
}
.home  .toc_toggle:hover {
	background: #f2554d;
    transition: 0.3s;
}


/* 追加 */
/*ボタンへの案内デザイン*/
.pickup-content-comment{
text-align:center;
position:relative;
font-weight:bold;
color:#303030;
margin-top:6rem;
}

.pickup-content-comment div{
position:relative;
display: block;
margin: 0 auto 20px;/*コピーの位置調整*/
}

@media (max-width:480px){
.pickup-content-comment div{
    margin:0 20px 20px;
}
}

.pickup-content-comment div::before,
.pickup-content-comment div::after{
content: '\02f';
position:absolute;
color:#fc9d0e;/*メインカラー*/
font-size:200%;
}

.pickup-content-comment div::before{
top:50%;
transform:translateY(-50%) scale(-1, 2);
-webkit-transform:translateY(-50%) scale(-1, 2);
-ms-transform:translateY(-50%) scale(-1, 2);
left:-10px;
}

.pickup-content-comment div::after{
top:50%;
transform:translateY(-50%) scale(1, 2);
-webkit-transform:translateY(-50%) scale(1, 2);
-ms-transform:translateY(-50%) scale(1, 2);
right:-10px;
}

.pickup-content-comment div .border{
display:block;
text-shadow: 2px 2px 1px white;
}
@media only screen and (max-width:480px){
    .pickup-content-comment div .border{
        font-size:13px;
		padding: 0 1rem;
    }
}

.pickup-content-comment div .border span{
color:#9EA19B;
font-size:150%;
}

.pickup-box{
border:2px solid #fc9d0e;/*メインカラー*/
border-radius:10px;
}

.pickup-box-title{
padding:10px;
background:#fc9d0e;/*メインカラー*/
color:white;
text-align:center;
font-weight:bold;
font-size:130%;
}

.pickup-box-img{
padding:10px;
}

.pickup-box-content{
padding:10px;
}

.pickup-box-btn a{
display:block;
padding:10px;
margin:10px auto;
background:#fa5f2e;/*ボタンカラー*/
color:white;
width: 50%;
border-radius: 5px;
text-align: center;
color:white !important;
border:2px solid #e6562b;/*ボタン枠カラー*/
box-shadow:0px 4px 1px #e6562b;/*ボタンシャドーカラー*/
transition: .5s;
}

.pickup-box-btn a:hover{
transform: translateY(4px);
box-shadow:0px 0px 0px #e6562b;/*ボタンシャドーカラー*/
}

/*ボタンへの案内デザイン↑*/








.pr-inner {
  display: block;
  width: 100%;
  color: #000;
  max-width: 100%;
  padding: 14px 0px 10px 80px;
  box-sizing: border-box;
  border: 2px solid;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
  /* width: 200px; */
  position: relative;
	background:#fff;
}
.pr-inner::before {
  position: absolute;
  content: "";
  background-image: url(https://tokyo-taxidriver.jp/wp-content/uploads/object_02.png);
  top: 16px;
  bottom: 0;
  margin: auto;
  left: 4px;
  width: 70px;
  height: auto;
  background-size: 100%;
  background-repeat: no-repeat;
  z-index: 10000;
}

.pr-banner1 {
  width: 300px;
  margin-left: auto;
	position: fixed;
    bottom: 20px;
    right: 20px;
	  z-index: 70;
}

.pr-banner1 a {
  text-decoration: none;
}

.pr-banner1 .btn-copy {
  position: relative;
  top: 10px;
  display: flex;
  justify-content: center;
  color: #555;
  font-size: 16px;
  background: #f7f9fd;
  text-align: center;
  width: 90%;
  z-index: 1001;
  margin: 0 auto;
  border: 2px solid;
  border-radius: 5px;
  z-index: 5;
}

.btn-copy:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  bottom: -7px;
  border-style: solid;
  border-color: #f7f9fd transparent transparent transparent;
}

.btn_balloon {
  position: absolute;
  display: inline-block;
  top: -40px;
  right: -10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 80%;
  font-weight: bold;
  background: #2196f3;
  color: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  /* transform: rotate(10deg); */
  border: 3px solid #2196f3;
}

.btn_balloon::before {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 6px;
  border: 5px solid transparent;
  border-left: 15px solid #2196f3;
  z-index: 0;
  transform: rotate(-2deg);
  color: #000;
}
.pr-title{
	color:#222;
}
.close-btn {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  background: #ff0000;
  padding: 0 8px;
}


/*********************************
キャンペーン情報
*********************************/

[class*='is-BrSearchContents-style_campaign'] {
    box-sizing: border-box;
    width: 100%;
    max-width: 1000px;
    margin: 25px auto;
    line-height: 1.6;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    color: #333;
    line-height: 1.35;
    margin-bottom: 10px;
    position: relative;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-copy::before, 
[class*='is-BrSearchContents-style_campaign'] .campaign-copy::after {
    content: "";
    display: block;
    width: 3px;
    height: 35px;
    background-color: var(--campaign-primary-color);
}

[class*='is-BrSearchContents-style_campaign'] .campaign-copy::before {
    margin-right: 16px;
    transform: rotate(-27deg);
}

[class*='is-BrSearchContents-style_campaign'] .campaign-copy::after {
    margin-left: 16px;
    transform: rotate(27deg);
}

[class*='is-BrSearchContents-style_campaign'] .campaign-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 3px solid var(--campaign-primary-color);
    background-color: #fff;
    position: relative;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-image {
    width: 35%;
    min-width: 280px;
    margin-right: 20px;
    order: unset;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-image img {
    width: 100%;
    height: auto;
	margin-bottom: 0 !important;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-quote {
    display: block;
    text-align: left;
    font-size: 9px;
    color: #999;
    font-family: none;
    margin: 5px 0 0;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0 .3rem .3rem;
  }

  [class*='is-BrSearchContents-style_campaign'] .campaign-quote::-webkit-scrollbar {
    height: 3px;
  }
  
  [class*='is-BrSearchContents-style_campaign'] .campaign-quote::-webkit-scrollbar-track {
    background-color: #ccc;
  }
  
  [class*='is-BrSearchContents-style_campaign'] .campaign-quote::-webkit-scrollbar-thumb{
    background-color: #999;
  }

[class*='is-BrSearchContents-style_campaign'] .campaign-text {
    width: calc(65% - 20px);
    padding-bottom: 60px;
}
[class*='is-BrSearchContents-style_campaign'] .campaign-title {
    font-size: 22px;
	line-height: 1.4;
    font-weight: 700;
    color: var(--campaign-primary-color);
    margin-bottom: 10px;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-description {
    font-size: 16px;
    text-align: left;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 20px;
}
[class*='is-BrSearchContents-style_campaign'] .campaign-description p {
    font-size: 14.5px;
    margin: 0 !important;
    line-height: 1.4;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-description p + p {
    margin-top: 10px !important;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-button {
    max-width: 300px;
    width: 100%;
    margin-left: auto;
    text-align: center;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-button a {
    display: block;
    font-size: 14.5px;
    line-height: 1.4;
    border: none;
    position: relative;
    color: #fff !important;
    padding: 15px 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    text-decoration: none !important;
    background-color: var(--campaign-button-bg-color);
    border: 2px solid var(--campaign-button-bg-color);
    transition: all .3s;
}

[class*='is-BrSearchContents-style_campaign'] .campaign-button a i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    height: 16px;
    margin: auto;
    transition: all .3s;
}
[class*='is-BrSearchContents-style_campaign'] .campaign-button:hover a  {
    background-color: #fff;
    color: var(--campaign-button-bg-color) !important;
    transition: all .3s;
}
[class*='is-BrSearchContents-style_campaign'] .campaign-button:hover a i {
    right: 12px;
    transition: all .3s;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    [class*='is-BrSearchContents-style_campaign'] {
        width: auto;
    }
    [class*='is-BrSearchContents-style_campaign'] .campaign-content {
        flex-direction: column;
        text-align: center;
    }
    [class*='is-BrSearchContents-style_campaign'] .campaign-image {
        width: 100%;
        min-width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }
    
    [class*='is-BrSearchContents-style_campaign'] .campaign-image img {
        width: 100%;
        height: auto;
    }
    [class*='is-BrSearchContents-style_campaign'] .campaign-text {
        width: auto;
        padding-bottom: 0;
    }
    [class*='is-BrSearchContents-style_campaign'] .campaign-title {
        font-size: 18px;
        text-align: left;
    }
    [class*='is-BrSearchContents-style_campaign'] .campaign-button {
        max-width: 100%;
        margin-left: unset;
        position: static;
        right: unset;
        bottom: unset;
    }
}

/* クライアント専用 */
.is-BrSearchContents-style_campaign-pr .campaign-content::before {
    content: 'PR';
    line-height: 1;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 7px;
    box-sizing: border-box;
    background: var(--campaign-primary-color);
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

:root {
    --campaign-primary-color: #2c3e50;
    --campaign-button-bg-color: #eb6100;
    --campaign-button-shadow-color: #d44114;
}

/*********************************
BUTTON（ボタン）
*********************************/
[class*="is-BrSearchBtn-style_"] {
    margin: 25px 0 ;
}

@media screen and (min-width: 768px) {
    [class*="is-BrSearchBtn-style_"] {
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
}
/* マイクロコピー共通設定 */
[class*="is-BrSearchBtn-style_"] .btn .btn-copy {
    display: flex;
    align-items: center;
    justify-content: center;
}

[class*="is-BrSearchBtn-style_"] .btn + .btn {
    margin-top: 16px !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btn-copy + .btn.btn-copy {
  margin-top: 40px !important;
}
@media screen and (min-width: 768px) {
  [class*="is-BrSearchBtn-style_"] .btn + .btn,
  [class*="is-BrSearchBtn-style_"] .btn.btn-copy + .btn.btn-copy {
      margin: 0 0 0 16px !important;
    }
}

[class*="is-BrSearchBtn-style_"] .btn {
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: visible !important;
    color: unset !important;
    max-width: 420px;
    min-width: 150px;
    text-shadow: none;
}
@media screen and (min-width: 768px) {
    [class*="is-BrSearchBtn-style_"] .btn {
      margin: unset;
    }
}
[class*="is-BrSearchBtn-style_"] .btn .btn-copy {
    display: block;
    text-align: center;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 500;
    transition: 0.3s;
}
[class*="is-BrSearchBtn-style_"] .btn a {
    display: block;
    position: relative;
    text-align: center;
    color: #fff !important;
    box-sizing: border-box;
   /* padding: 20px 70px !important;*/
    border: 2px solid;
    transition: 0.3s;
    width: 100% !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em;
    line-height: 1.4 !important;
    margin: 0 !important;
    text-decoration: none;
    text-shadow: none !important;
    border-radius: unset !important;
    box-shadow: none !important;
    font-size: 16px !important;
}

[class*="is-BrSearchBtn-style_"] .btn a::before,
[class*="is-BrSearchBtn-style_"] .btn a::after {
    display: none;
    visibility: hidden;
}
[class*="is-BrSearchBtn-style_"] .btn a i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    height: 16px;
    margin: auto;
}

  /* 角丸 */
  [class*="is-BrSearchBtn-style_"] .btn.design1 .btn-copy {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  [class*="is-BrSearchBtn-style_"] .btn.design1 .btn-copy::before, 
  [class*="is-BrSearchBtn-style_"] .btn.design1 .btn-copy::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 3px;
    border-radius: 5px;
  }
  [class*="is-BrSearchBtn-style_"] .btn.design1 .btn-copy::before {
    margin-right: 6px;
    -webkit-transform: rotate(50deg);
    transform: rotate(50deg);
  }
  [class*="is-BrSearchBtn-style_"] .btn.design1 .btn-copy::after {
    margin-left: 6px;
    -webkit-transform: rotate(-50deg);
    transform: rotate(-50deg);
  }
  [class*="is-BrSearchBtn-style_"] .btn.design1 a {
    border-radius: 100px !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.design1 a:hover {
    background: #fff !important;
  }

  /* 立体 */
  [class*="is-BrSearchBtn-style_"] .btn.design2 {
    position: relative;
  }
  [class*="is-BrSearchBtn-style_"] .btn.design2 .btn-copy {
    width: 80%;
    padding: 2px 0;
    border: 2px solid;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -70%);
    z-index: 5;
    transition: 0.3s;
  }
[class*="is-BrSearchBtn-style_"] .btn.design2 .btn-copy::before {
	display: none;
}
  [class*="is-BrSearchBtn-style_"] .btn.design2 a {
    display: inline-block;
    line-height: 1.5;
    border: none;
    border-radius: 5px;
    position: relative;
    color: #fff;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s;
  }
  [class*="is-BrSearchBtn-style_"] .btn.design2:hover .btn-copy {
    transform: translate(-50%, calc(-70% + 5px));
    transition: 0.3s;
  }
  [class*="is-BrSearchBtn-style_"] .btn.design2:hover a {
    transform: translateY(5px);
    transition: 0.3s;
  }

  
/* 資料請求 */
[class*="is-BrSearchBtn-style_"] .btn.design3 {
  position: relative;
}
[class*="is-BrSearchBtn-style_"] .btn.design3 a {
position: relative;
border-radius: 5px !important;
display: inline-block;
border: none;
color: #fff;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-align: center;
vertical-align: middle;
transition: all 0.3s;
}

[class*="is-BrSearchBtn-style_"] .btn.design3 .btn-copy {
font-size: 12px;
position: absolute;
top: -12.5px;
left: calc(50% - 150px);
display: block;
width: 300px;
padding: 2px 0;
border-radius: 100vh;
background: #fff;
-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
z-index: 1;
}

[class*="is-BrSearchBtn-style_"] .btn.design3 .btn-copy::before,
[class*="is-BrSearchBtn-style_"] .btn.design3 .btn-copy::after {
position: absolute;
left: calc(50% - 10px);
content: "";
}

[class*="is-BrSearchBtn-style_"] .btn.design3 .btn-copy::before {
bottom: -10px;
border-width: 10px 10px 0 10px;
border-style: solid;
}

[class*="is-BrSearchBtn-style_"] .btn.design3 .btn-copy::after {
bottom: -7px;
border-width: 10px 10px 0 10px;
border-style: solid;
border-color: #fff transparent transparent transparent;
}

[class*="is-BrSearchBtn-style_"] .btn.design3 i {
  margin-right: 10px;
  font-size: 20px;
  left: 24px;
  right: unset;
}

[class*="is-BrSearchBtn-style_"] .btn.design3:hover .btn-copy {
 -webkit-transform: translate(0, 3px);
 transform: translate(0, 3px);
}
[class*="is-BrSearchBtn-style_"] .btn.design3:hover a{
-webkit-transform: translate(0, 3px);
transform: translate(0, 3px);
}

/* 吹き出し */
[class*="is-BrSearchBtn-style_"] .btn.design4 {
  position: relative;
  margin-top: 30px !important;
}

@media screen and (min-width: 768px) {
[class*="is-BrSearchBtn-style_"] .btn + .btn.design4 {
  margin-top: 0 !important;
}
}
[class*="is-BrSearchBtn-style_"] .btn.design4 a {
  position: relative;
  line-height: 1.5;
  padding: 20px 30px 20px 40px !important;
  transition: 0.3s;
  color: #fff;
  border-radius: 5px !important;
}

[class*="is-BrSearchBtn-style_"] .btn.design4 .btn_balloon {
  position: absolute;
  display: inline-block;
  bottom: 26px;
  left: -10px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
  z-index: 2;
}

[class*="is-BrSearchBtn-style_"] .btn.design4 .btn_balloon::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

[class*="is-BrSearchBtn-style_"] .btn.design4 a:hover {
  transform: translate(0, 3px);
}

[class*="is-BrSearchBtn-style_"] .btn.design4:hover .btn_balloon {
    bottom: 22px;
    transition: all .3s;
  }
  
  /* 赤 */
  /* デザイン1 */
 [class*="is-BrSearchBtn-style_"] .btn.btnRed a,
 [class*="is-BrSearchBtn-style_"] .btn.btnRed.design1 .btn-copy::before, 
 [class*="is-BrSearchBtn-style_"] .btn.btnRed.design1 .btn-copy::after {
   background: var(--btnRed-primary-color) !important;
 }
 [class*="is-BrSearchBtn-style_"] .btn.btnRed.design1 a {
   border-color: var(--btnRed-primary-color) !important;
 }
 [class*="is-BrSearchBtn-style_"] .btn.btnRed.design1 a:hover {
   background: #fff !important;
   color: var(--btnRed-primary-color) !important;
 }

  /* デザイン2 */
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design2 .btn-copy {
    color: var(--btnRed-primary-color) !important;
    border: 2px solid var(--btnRed-primary-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design2 a {
    background: var(--btnRed-primary-color) !important;
    -webkit-box-shadow: 0 5px 0 var(--btnRed-shadow-color) !important;
    box-shadow: 0 5px 0 var(--btnRed-shadow-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design2:hover a {
    box-shadow: 0 2px 0 var(--btnRed-shadow-color) !important;
  }
  /* デザイン3 */
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design3 .btn-copy {
    color: var(--btnRed-primary-color);
    border: 2px solid var(--btnRed-primary-color);
    background: #fff;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design3 .btn-copy::before {
    border-color: var(--btnRed-primary-color) transparent transparent transparent;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design3 a {
    background: var(--btnRed-primary-color) !important;
    -webkit-box-shadow: 0 5px 0 var(--btnRed-shadow-color) !important;
    box-shadow: 0 5px 0 var(--btnRed-shadow-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnRed.design3 a:hover {
    background:var(--btnRed-primary-color) !important;
    -webkit-box-shadow: 0 2px 0 var(--btnRed-shadow-color) !important;
    box-shadow: 0 2px 0 var(--btnRed-shadow-color) !important;
  }
  
  /* デザイン4 */
  [class*="is-BrSearchBtn-style_"] .btn.design4.btnRed a {
    background: var(--btnRed-primary-color) !important; 
    box-shadow: 0 5px 0 var(--btnRed-shadow-color) !important; 
    border-color: var(--btnRed-primary-color) !important; 
  }
  [class*="is-BrSearchBtn-style_"] .btn.design4.btnRed .btn_balloon {
    color:var(--btnRed-primary-color);
    border: 3px solid var(--btnRed-primary-color);
  }
  [class*="is-BrSearchBtn-style_"] .btn.design4.btnRed:hover a{
    transform: translate(0, 3px);
    background: var(--btnRed-primary-color) !important; 
    box-shadow: 0 2px 0 var(--btnRed-shadow-color) !important; 
    opacity: 1;
  }

 /* オレンジ */
 /* デザイン1 */
 [class*="is-BrSearchBtn-style_"] .btn.btnOrange a,
 [class*="is-BrSearchBtn-style_"] .btn.btnOrange.design1 .btn-copy::before, 
 [class*="is-BrSearchBtn-style_"] .btn.btnOrange.design1 .btn-copy::after {
   background: var(--btnOrange-primary-color) !important;
 }
 [class*="is-BrSearchBtn-style_"] .btn.btnOrange.design1 a {
   border-color: var(--btnOrange-primary-color) !important;
 }
 [class*="is-BrSearchBtn-style_"] .btn.btnOrange.design1 a:hover {
   background: #fff !important;
   color: var(--btnOrange-primary-color) !important;
 }

 /* デザイン2 */
 [class*="is-BrSearchBtn-style_"] .btn.btnOrange.design2 .btn-copy {
  color: var(--btnOrange-primary-color) !important;
  border: 2px solid var(--btnOrange-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOrange.design2 a {
  background: var(--btnOrange-primary-color) !important;
  -webkit-box-shadow: 0 5px 0 var(--btnOrange-shadow-color) !important;
  box-shadow: 0 5px 0 var(--btnOrange-shadow-color) !important;
}

[class*="is-BrSearchBtn-style_"] .btn.btnOrange.design2:hover a {
  box-shadow: 0 2px 0 var(--btnOrange-shadow-color) !important;
}

/* デザイン3 */
[class*="is-BrSearchBtn-style_"] .btn.btnOrange.design3 .btn-copy {
  color: var(--btnOrange-primary-color);
  border: 2px solid var(--btnOrange-primary-color);
  background: #fff;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOrange.design3 .btn-copy::before {
  border-color: var(--btnOrange-primary-color) transparent transparent transparent;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOrange.design3 a {
  background: var(--btnOrange-primary-color) !important;
  -webkit-box-shadow: 0 5px 0 var(--btnOrange-shadow-color) !important;
  box-shadow: 0 5px 0 var(--btnOrange-shadow-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOrange.design3 a:hover {
  background:var(--btnOrange-primary-color) !important;
  -webkit-box-shadow: 0 2px 0 var(--btnOrange-shadow-color) !important;
  box-shadow: 0 2px 0 var(--btnOrange-shadow-color) !important;
}

/* デザイン4 */
[class*="is-BrSearchBtn-style_"] .btn.design4.btnOrange a {
  background: var(--btnOrange-primary-color) !important; 
  box-shadow: 0 5px 0 var(--btnOrange-shadow-color) !important; 
  border-color: var(--btnOrange-primary-color) !important; 
}
[class*="is-BrSearchBtn-style_"] .btn.design4.btnOrange .btn_balloon {
  color:var(--btnOrange-primary-color);
  border: 3px solid var(--btnOrange-primary-color);
}
[class*="is-BrSearchBtn-style_"] .btn.design4.btnOrange:hover a{
  transform: translate(0, 3px);
  background: var(--btnOrange-primary-color) !important; 
  box-shadow: 0 2px 0 var(--btnOrange-shadow-color) !important; 
  opacity: 1;
}

/* ライトブルー */
/* デザイン1 */
[class*="is-BrSearchBtn-style_"] .btn.btnBlue a,
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design1 .btn-copy::before, 
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design1 .btn-copy::after {
    background: var(--btnBlue-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design1 a {
    border-color: var(--btnBlue-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design1 a:hover {
    background: #fff !important;
    color: var(--btnBlue-primary-color) !important;
}

/* デザイン2 */
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design2 .btn-copy {
    color: var(--btnBlue-primary-color) !important;
    border: 2px solid var(--btnBlue-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design2 a {
    background: var(--btnBlue-primary-color) !important;
    -webkit-box-shadow: 0 5px 0 var(--btnBlue-shadow-color) !important;
    box-shadow: 0 5px 0 var(--btnBlue-shadow-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design2:hover a {
    box-shadow: 0 2px 0 var(--btnBlue-shadow-color) !important;
}

/* デザイン3 */
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design3 .btn-copy {
  color: var(--btnBlue-primary-color);
  border: 2px solid var(--btnBlue-primary-color);
  background: #fff;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design3 .btn-copy::before {
  border-color: var(--btnBlue-primary-color) transparent transparent transparent;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design3 a {
  background: var(--btnBlue-primary-color) !important;
  -webkit-box-shadow: 0 5px 0 var(--btnBlue-shadow-color) !important;
  box-shadow: 0 5px 0 var(--btnBlue-shadow-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnBlue.design3 a:hover {
  background:var(--btnBlue-primary-color) !important;
  -webkit-box-shadow: 0 2px 0 var(--btnBlue-shadow-color) !important;
  box-shadow: 0 2px 0 var(--btnBlue-shadow-color) !important;
}

/* デザイン4 */
[class*="is-BrSearchBtn-style_"] .btn.design4.btnBlue a {
  background: var(--btnBlue-primary-color) !important; 
  box-shadow: 0 5px 0 var(--btnBlue-shadow-color) !important; 
  border-color: var(--btnBlue-primary-color) !important; 
}
[class*="is-BrSearchBtn-style_"] .btn.design4.btnBlue .btn_balloon {
  color:var(--btnBlue-primary-color);
  border: 3px solid var(--btnBlue-primary-color);
}
[class*="is-BrSearchBtn-style_"] .btn.design4.btnBlue:hover a{
  transform: translate(0, 3px);
  background: var(--btnBlue-primary-color) !important; 
  box-shadow: 0 2px 0 var(--btnBlue-shadow-color) !important; 
  opacity: 1;
}

  /* グリーン */
  /* デザイン1 */
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen a,
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design1 .btn-copy::before, 
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design1 .btn-copy::after {
    background: var(--btnGreen-primary-color) !important;
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design1 a {
    border-color: var(--btnGreen-primary-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design1 a:hover {
    background: #fff !important;
    color: var(--btnGreen-primary-color) !important;
  }

  /* デザイン2 */
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design2 .btn-copy {
    color: var(--btnGreen-primary-color) !important;
    border: 2px solid var(--btnGreen-primary-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design2 a {
    background: var(--btnGreen-primary-color) !important;
    -webkit-box-shadow: 0 5px 0 var(--btnGreen-shadow-color) !important;
    box-shadow: 0 5px 0 var(--btnGreen-shadow-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnGreen.design2:hover a {
    box-shadow: 0 2px 0 var(--btnGreen-shadow-color) !important;
  }

/* デザイン3 */
[class*="is-BrSearchBtn-style_"] .btn.btnGreen.design3 .btn-copy {
  color: var(--btnGreen-primary-color);
  border: 2px solid var(--btnGreen-primary-color);
  background: #fff;
}
[class*="is-BrSearchBtn-style_"] .btn.btnGreen.design3 .btn-copy::before {
  border-color: var(--btnGreen-primary-color) transparent transparent transparent;
}
[class*="is-BrSearchBtn-style_"] .btn.btnGreen.design3 a {
  background: var(--btnGreen-primary-color) !important;
  -webkit-box-shadow: 0 5px 0 var(--btnGreen-shadow-color) !important;
  box-shadow: 0 5px 0 var(--btnGreen-shadow-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnGreen.design3 a:hover {
  background:var(--btnGreen-primary-color) !important;
  -webkit-box-shadow: 0 2px 0 var(--btnGreen-shadow-color) !important;
  box-shadow: 0 2px 0 var(--btnGreen-shadow-color) !important;
}

/* デザイン4 */
[class*="is-BrSearchBtn-style_"] .btn.design4.btnGreen a {
  background: var(--btnGreen-primary-color) !important; 
  box-shadow: 0 5px 0 var(--btnGreen-shadow-color) !important; 
  border-color: var(--btnGreen-primary-color) !important; 
}
[class*="is-BrSearchBtn-style_"] .btn.design4.btnGreen .btn_balloon {
  color:var(--btnGreen-primary-color);
  border: 3px solid var(--btnGreen-primary-color);
}
[class*="is-BrSearchBtn-style_"] .btn.design4.btnGreen:hover a{
  transform: translate(0, 3px);
  background: var(--btnGreen-primary-color) !important; 
  box-shadow: 0 2px 0 var(--btnGreen-shadow-color) !important; 
  opacity: 1;
}

  /* オリジナル */
  /* デザイン1 */
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal a,
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design1 .btn-copy::before, 
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design1 .btn-copy::after {
  background: var(--btnOriginal-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design1 a {
  border-color: var(--btnOriginal-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design1 a:hover {
  background: #fff !important;
  color: var(--btnOriginal-primary-color) !important;
}
  
/* デザイン2 */
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design2 .btn-copy {
  color: var(--btnOriginal-primary-color) !important;
  border: 2px solid var(--btnOriginal-primary-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design2 a {
  background: var(--btnOriginal-primary-color) !important;
  -webkit-box-shadow: 0 5px 0 var(--btnOriginal-shadow-color) !important;
  box-shadow: 0 5px 0 var(--btnOriginal-shadow-color) !important;
}
[class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design2:hover a {
  box-shadow: 0 2px 0 var(--btnOriginal-shadow-color) !important;
}

  /* デザイン3 */
  [class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design3 .btn-copy {
    color: var(--btnOriginal-primary-color);
    border: 2px solid var(--btnOriginal-primary-color);
    background: #fff;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design3 .btn-copy::before {
    border-color: var(--btnOriginal-primary-color) transparent transparent transparent;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design3 a {
    background: var(--btnOriginal-primary-color) !important;
    -webkit-box-shadow: 0 5px 0 var(--btnOriginal-shadow-color) !important;
    box-shadow: 0 5px 0 var(--btnOriginal-shadow-color) !important;
  }
  [class*="is-BrSearchBtn-style_"] .btn.btnOriginal.design3 a:hover {
    background:var(--btnOriginal-primary-color) !important;
    -webkit-box-shadow: 0 2px 0 var(--btnOriginal-shadow-color) !important;
    box-shadow: 0 2px 0 var(--btnOriginal-shadow-color) !important;
  }
  
  /* デザイン4 */
  [class*="is-BrSearchBtn-style_"] .btn.design4.btnOriginal a {
    background: var(--btnOriginal-primary-color) !important; 
    box-shadow: 0 5px 0 var(--btnOriginal-shadow-color) !important; 
    border-color: var(--btnOriginal-primary-color) !important; 
  }
  [class*="is-BrSearchBtn-style_"] .btn.design4.btnOriginal .btn_balloon {
    color:var(--btnOriginal-primary-color);
    border: 3px solid var(--btnOriginal-primary-color);
  }
  [class*="is-BrSearchBtn-style_"] .btn.design4.btnOriginal:hover a{
    transform: translate(0, 3px);
    background: var(--btnOriginal-primary-color) !important; 
    box-shadow: 0 2px 0 var(--btnOriginal-shadow-color) !important; 
    opacity: 1;
  }


/* テンプレート7-1 */
.is-BrSearchBtn-style_template-7-1 .btn {
  max-width: 430px;
}

.is-BrSearchBtn-style_template-7-1 .btn a {
  font-size: 16px !important;
  padding: 16px 35px !important;
}
@media screen and (min-width: 768px) {
  .is-BrSearchBtn-style_template-7-1 .btn a {
      font-size: 18px !important;
  }
}

/* テンプレート10 */
.is-BrSearchBtn-style_template-10 .btn {
  max-width: 430px;
}
.is-BrSearchBtn-style_template-10 .btn a {
  font-size: 16px !important;
  font-family: 游明朝 !important;
  padding: 16px 35px !important;
}
.is-BrSearchBtn-style_template-10 .btn .btn-copy {
  font-family: 游明朝 !important;
}
@media screen and (min-width: 768px) {
  .is-BrSearchBtn-style_template-10 .btn a {
      font-size: 18px !important;
  }
}
    
/* テンプレート12 */
.is-BrSearchBtn-style_template-12 .btn {
    max-width: 430px;
}
.is-BrSearchBtn-style_template-12 .btn a {
    font-size: 16px !important;
}
@media screen and (min-width: 768px) {
    .is-BrSearchBtn-style_template-12 .btn a {
        font-size: 18px !important;
    }
 }

/* ワイド */
[class*="is-BrSearchBtn-style_"] .btn.is-style-btn_wide {
    max-width: 550px !important;
}

/* アニメーション各種 */
/* ぽよぽよ */
.btn.anime-poyopoyo  {
    animation: poyopoyo 2s ease-out infinite;
}

  @keyframes poyopoyo {
    0%, 40%, 60%, 80% {
      transform: scale(1.0);
    }
    50%, 70% {
      transform: scale(0.95);
    }
  }

/* ズーム */
.btn.anime-zoomIn {
    animation: zoomIn 1s ease-in-out infinite;
}

  @keyframes zoomIn {
     0% {
        transform: scale(0.95);
      }
    50% {
      transform: scale(1);
    }
    100% {
      transform: scale(0.95);
    }
}

/* キラッと光る*/
[class*="is-BrSearchBtn-style_"] .btn.anime-reflection a {
    overflow: hidden;
}
[class*="is-BrSearchBtn-style_"] .btn.anime-reflection a i{
    -webkit-animation-name: is-trembling;
    -webkit-animation-duration: .8s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -moz-animation-name: is-trembling;
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    animation-name: is-trembling;
    animation-duration: .8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: is-trembling;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
  }
  
/* CVボタン矢印揺れ */
.is-trembling a:before {
  -webkit-animation-name:is-trembling;
  -webkit-animation-duration:.8s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease;
  -moz-animation-name:is-trembling;
  -moz-animation-duration:1s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:ease;
}

@-webkit-keyframes is-trembling {
  0% {-webkit-transform:translate(-10px, 0);}
  100% {-webkit-transform:translate(0, 0);}
}
  @keyframes is-trembling {
    0% {
        -webkit-transform: translate(-10px, 0);
        transform: translate(-10px, 0);
      }
      100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
      }
  }


[class*="is-BrSearchBtn-style_"] .btn.anime-reflection a::before {
  display: block !important;
  visibility: visible !important;
    -moz-animation: is-reflection 4s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -ms-animation: is-reflection 4s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -o-animation: is-reflection 4s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -webkit-animation: is-reflection 4s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    animation: is-reflection 4s ease-in-out infinite;
    background-color: #fff !important;
    content: '';
    width: 30px;
    height: 100%;
    font-size: unset;
    font-family: unset;
    margin: 0;
    opacity: 0;
    position: absolute;
    top: -180px;
    left: 0;
    right: unset;
    transform: rotate(45deg);
  }
  
/* アニメーションを遅延させる */
.is-reflection + .is-reflection a:after {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

@-webkit-keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

@keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); transform: scale(50) rotate(45deg); opacity: 0; }
}


 /* 各色のデザイン */
 :root {
     --btnRed-primary-color: #CC0000;
     --btnRed-shadow-color: #a80202;
     --btnOrange-primary-color: #eb6100;
     --btnOrange-shadow-color: #d44114;
     --btnGreen-primary-color: #289A3A;
     --btnGreen-shadow-color: #2c9d60;
     --btnBlue-primary-color: #67D3FB;
     --btnBlue-shadow-color: #50a9ca;
 }


/*********************************
口コミタブ切り替え専用CODE
*********************************/
.review-type.tab {
  background: #fff;
  padding: 22px;
/*   border-radius: 5px; */
}
 .review-type.tab .tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 10px 8px;
    margin: 0 0 16px !important;
    padding: 0 !important;
  }
 .review-type.tab .tabs li {
    font-size: 14px;
    background: #e1e1e1;
    color: #444;
    padding: 5px 20px !important;
    cursor: pointer;
    list-style: none;
    margin: 0 !important;
    display: block;
    background: #fff;
    border: 1px solid rgba(28, 41, 81, 0.2) !important;
/*     border-radius: 16px; */
    line-height: 1.2 !important;
  }
 .review-type.tab .tabs li.active {
    background: var(--review-tab-primary-color) !important;
    color: #fff;
  }

/* タブの中身 */
  .tab-wrapper .tab-content {
      display: none;
  }
  .tab-wrapper p{
    margin: 0 !important;
  }
  .tab-wrapper .tab-content.active {
      display: block;
  }
  .tab-wrapper .tab-content .tab-item {
    min-width: 100%;
    scroll-snap-align: start;
}
.home .tab-wrapper .tab-content .tab-item {
	min-width: 49%;
	width: 49%;
}
  .tab-wrapper .tab-content .tab-item + .tab-item {
    margin-left: 1rem;
  }
  .tab-wrapper .tab-content .tab-item .tab-inner_review,
  .tab-wrapper .tab-content .tab-item .tab-inner_admin {
    background: var(--review-tab-bg-color);
/*     border-radius: 5px; */
    padding: 12px 16px;
  }

  .tab-wrapper .tab-content .tab-item .title {
    font-size: 16px;
    font-weight: 600 !important;
    margin: 0 0 10px !important;
  }

.tab-wrapper .tab-content .tab-item .tab-inner_review .title,
.tab-wrapper .tab-content .tab-item .tab-inner_admin .title {
    border-bottom: 2px solid var(--review-tab-primary-color) !important;
    padding-bottom: 5px;
  }

  .tab-wrapper .tab-content .tab-item .tab-inner_review .title span {
      display: inline-block;
      margin-left: 6px;
      font-size: 12px;
  }

  .tab-wrapper .tab-content .tab-item blockquote {
    margin: 0 !important;
    font-size: 14px;
  }
  .tab-wrapper .tab-content .tab-item .quote {
      display: block;
      font-size: 10px;
      margin-top:1.25rem;
      text-align: right;
  }
  .tab-wrapper .tab-content .tab-item .quote a {
      color: blue;
      text-decoration: underline;
  }

  .tab-wrapper .tab-content .tab-item .tab-inner_admin {
    margin-top: 16px;
 }
 .tab-wrapper .tab-content .tab-item .tab-inner_admin p {
     font-size: 14px;
 }
 /* スクロール */
  .tab-wrapper .tab-content .exScrollArea {
      display: flex;
      flex-wrap: nowrap;
      padding-bottom: 16px;
      overflow-y: hidden !important;
      scroll-snap-type: x mandatory;
  }

  .tab-wrapper .exScrollArea::after {
      display: none;
  }
  
  .exScrollArea::-webkit-scrollbar {
    height: 10px;
  }
  
  .exScrollArea::-webkit-scrollbar-track {
     background-color: #f5f5f5;
   }
  
  .exScrollArea::-webkit-scrollbar-thumb{
    background-color: #ccc;
    border-radius: 50px;
  }

.home .review-type.tab {
	padding: 0;
}
@media (max-width: 768px) {
  .review-type.tab {
    padding: 16px !important;
  }
	.home .review-type.tab {
	padding: 0 !important;
}
  .tab-wrapper .tab-content .exScrollArea {
    padding-bottom: 5px;
  }
.home .tab-wrapper .tab-content .tab-item {
	min-width: 100%;
	width: 100%;
}
}
 /* カスタムプロパティ（変数） */
:root {
    --review-tab-primary-color: #6498b6;
    --review-tab-bg-color: #f7f7f7;
}


.pr-wrap {
    display: flex;
    justify-content: center; /* 中央配置 */
    flex-wrap: wrap; /* 画面幅が狭くなったら折り返し */
}

.pr-btn10 {
    flex: 1; /* 均等幅にする */
    min-width: 277px; /* 最小幅を設定 */
    text-align: center; /* 中央配置 */
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .pr-wrap {
        flex-direction: column; /* 縦並び */
        align-items: center; /* 中央寄せ */
		gap: 0px; /* スマホ時の間隔をさらに狭くする */
    }

}

.btn9 a:hover {
        background-color: white !important;
        color: #fa5f2e !important;
        border: 1px solid #fa5f2e !important;
    }
.btn9 a {
	background: #fa5f2e !important;
    border-color: #fa5f2e !important;
	}


.tablepress tr td a.image-link {
    all: unset !important;
}


/*recomend-tableのトグル*/
.toggle-button{
	display:block;
	text-align:center;
	border-bottom:2px solid #000;
	padding-right:30px;
	position:relative;
	width:100%;
	margin-top:10px;
	font-weight: bold;
}
.toggle-button::after{
	font-family: "Font Awesome 6 Free";
	font-weight: 900; 
	content: "\f078";
	position: absolute;
	right : 0;
	top:50%;
	transform:translateY(-50%) rotate(0);
	transition: .5s;
}
.toggle-button.active::after{
		transform:translateY(-50%) rotate(-180deg);
}


/*既存ボタンと追加ボタンのサイズ調整*/
.btn-wrap .is-BrSearchBtn-style_ {
	width: 100%;
	margin: 1rem auto;
}
@media screen and (min-width: 480px) {
    .btn-wrap .is-BrSearchBtn-style_ {
        width: 70%;
		margin: 1rem auto;
    }
}
@media screen and (min-width: 768px) {
    .btn-wrap .is-BrSearchBtn-style_{
        width: 31.3%;
        margin: 0;
    }
}

/* 新プラン用FAQ */
.single .faq-wrap {
	display: block;
	margin-bottom: 4rem;
}
.single .faq-wrap .faq-box {
	width: 100% !important;
	/* background-color: #f6f6f6; */
	/* 背景色が白の場合（見ずらい場合、上記のコメントアウトを解除して下さい） */
}

/* ==================================================
   【その他】東京のタクシー会社（投稿タイプ company）
   親：会社紹介 / 子：詳細ページ（survey, voice, data など）
   ================================================== */
/* 子ページ上部：会社紹介へ戻るリンク */
.company-parent-link {
	margin: 0 0 1.5rem;
	font-size: 14px;
}
.company-parent-link a {
	color: #1e1e1e;
	text-decoration: underline;
}
.company-parent-link a:hover {
	opacity: 0.7;
}

/* 親ページ：詳細ページのカード一覧 */
.company-child-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 1rem;
	margin: 0 !important;
	padding: 0;
	list-style: none;
}
@media screen and (min-width: 768px) {
	.company-child-list {
		grid-template-columns: repeat(2, 1fr);
	}
}
.company-child-list li {
	margin: 0;
	padding: 0;
}
/* 上辺にオレンジの太線、左にオレンジの山形アイコン、タイトルのみのカード */
.company-child-list a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.4rem 1.5rem 1.4rem 2.6rem;
	border-top: 4px solid #fc9d0e;
	background-color: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	transition: opacity 0.2s linear;
}
.company-child-list a::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #fc9d0e;
	font-size: 16px;
	line-height: 1;
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
}
.company-child-list a:hover {
	opacity: 0.7;
}
.company-child-title {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.7;
	color: #1e1e1e;
}
.company-child-excerpt {
	display: none;
}

/* 子ページ：会社紹介・兄弟ページのナビ */
.company-subnav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 !important;
	padding: 0;
	list-style: none;
}
.company-subnav li {
	margin: 0;
	padding: 0;
}
.company-subnav a,
.company-subnav span {
	display: inline-block;
	padding: 0.5rem 1.2rem;
	border: 1px solid #ddd;
	border-radius: 999px;
	font-size: 14px;
	background-color: #fff;
}
.company-subnav a:hover {
	opacity: 0.7;
}
.company-subnav li.is-current span {
	background-color: #1e1e1e;
	border-color: #1e1e1e;
	color: #fff;
}

/* サイトマップ：会社の下層ページ */
.sitemap-company ul ul {
	margin-left: 1.5rem;
}

/* サイドメニュー：東京のタクシー会社一覧ウィジェット（下層ページ表示時） */
#sideber_menu .company-side-children {
	margin: 0 !important;
	padding: 0 !important;
}
#sideber_menu .company-side-children .cat-post-item .cat-post-title {
	padding-left: 3rem !important;
	font-size: 13px;
}
#sideber_menu .company-side-children .cat-post-item .cat-post-title:before {
	left: 1.5rem;
}
