
.kkmg {
  background: #f5f5f5;
}
.kkmg header h1 {
  display: block;
  margin: 0;
  line-height: 0;
}
.kkmg header h1 img {
  width: 220px;
}
.kkmg .global-nav__search-button svg {
  width: 17px;
  height: 17px;
}
.menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  position: fixed;
  width: 100%;
  padding: 15px 22px;
  z-index: 1000;
}
.menu-wrapper .pc-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
}
.menu-wrapper .pc-nav ul li {
  padding: 9px 14px;
  list-style: none;
}
.menu-wrapper .pc-nav ul li a {
  color: #3f4b4f;
  font-size: 1rem;
  text-decoration: none;
  transition: all 1s ease-out;
}
.menu-wrapper .pc-nav ul li .global-nav__search-button {
  margin-left: 0;
  border-radius: 50%;
  padding: 10px 13px 11px;
  background: #62C8D3;
  background: -webkit-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: -o-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: linear-gradient(172deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  border: none;
}
.menu-wrapper .pc-nav ul li .global-nav__search-button:hover {
  cursor: pointer;
  transform: scale(1.03);
  filter: brightness(108%);
}
.kkmg .global-nav__search .search-field {
  padding: 1em 3.5em 1em 1em;
}
.kkmg .global-nav__search .search-form {
  border-radius: 7px;
}
.kkmg .global-nav__search .search-form .search-submit{
  background: #62C8D3;
  background: -webkit-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: -o-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: linear-gradient(172deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  transition: background 2s ease-out;
  color: #fff;
  border-radius: 0 7px 7px 0;
  cursor: pointer;
}
.kkmg .search-submit .ys-icon {
  color: #fff;
}
.global-nav__search-close {
  background-color: initial;
  color: #222;
}
.global-nav__search-close:hover {
  box-shadow: none;
}
.global-nav__search-close .ys-icon {
  display: block;
}
.menu-wrapper .pc-nav ul li a:hover, .menu-wrapper .pc-nav ul li.active a{
  color: #6290d3;
}
.spbutton_container {
  position: relative;
  top: 2.5%;
  right: 2%;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
  display: none;
}
.spbutton_container:hover {
  opacity: 0.7;
}
.spbutton_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}
.spbutton_container.active .middle {
  opacity: 0;
  background: #fff;
}
.spbutton_container.active .bottom {
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}
.spbutton_container span {
  border: none;
  height: 5px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
  background: #3775cd;
}
.spbutton_container span:nth-of-type(2) {
  top: 11px;
  background: #59b4e2;
}
.spbutton_container span:nth-of-type(3) {
  top: 22px;
  background: #62c7d2;
}
.sp_overlay {
  position: fixed;
  background: #17263a;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s, height 0.35s;
  overflow: hidden;
}
.sp_overlay.open {
  opacity: 0.9;
  visibility: visible;
  height: 100%;
}
.sp_overlay.open li {
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: 0.35s;
}
.sp_overlay.open li:nth-of-type(2) {
  animation-delay: 0.4s;
}
.sp_overlay.open li:nth-of-type(3) {
  animation-delay: 0.45s;
}
.sp_overlay.open li:nth-of-type(4) {
  animation-delay: 0.5s;
}
.sp_overlay nav {
  position: relative;
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  text-align: center;
}
.sp_overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.sp_overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 7);
  min-height: 50px;
  position: relative;
  opacity: 0;
}
.sp_overlay ul li a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.sp_overlay ul li a:hover:after, .sp_overlay ul li a:focus:after, .sp_overlay ul li a:active:after {
  width: 100%;
}
.sp_overlay ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 3px;
  background: #fff;
  transition: 0.35s;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@media (max-width: 768px) {
  .menu-wrapper .pc-nav {
    display: none;
  }
  .spbutton_container {
    display: block;
  }
}

.shiconare {
  margin-top: 24px;
}
.shiconare ul, .top_search-bar{
  margin: 0 auto;
  justify-content: center;
  width: 100% !important;
  padding-left: 0;
  display: flex;
  gap: 2px;
  flex-wrap: wrap;
}

.shiconare li, .top_search-bar li {
  list-style: none;
  margin-right: 0 ;
  margin-bottom: 0;
  width: 21.5%;
}
.shiconare li:last-child, .top_search-bar li:last-child{
  margin-left: 0;
  width: 13%;
}
.shiconare li:last-child input[type=submit], .top_search-bar li:last-child [type=submit]{
  width: 100%;
  background: #62C8D3;
  background: -webkit-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: -o-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: linear-gradient(172deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  border-radius: 0;
  font-size: 1.175rem;
  letter-spacing: 0.15em;
  transition: all .4s;
  padding-top: 18px;
  padding-bottom: 15px;
  margin: 0;
  border: 0;
  height: 100%;
}
.shiconare li:last-child input[type=submit]:hover, .top_search-bar li:last-child [type=submit]:hover {
  cursor: pointer;
  letter-spacing: 0.15em;
  filter: brightness(108%);
}
.searchandfilter li {
  padding-right: 1px !important;
}
.mastkv button, .mastkv input, .mastkv select, .mastkv textarea {
  border-radius: 0;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, .2);
  padding: 1.15rem 16px 1rem;
  font-size: 1.175rem;
}
.top-about .top-about-wrapper .top-about-description p.top-about-text {
  font-size: 1.15rem;
  line-height: 2;
}
.search_cat #kensaku {
  max-width: 100%;
  margin-top: 5.625rem
}
.pro-badgers {
  grid-row-gap: 2vw;
  grid-column-gap: 1.8vw;
  -ms-grid-columns: 3fr 2.1875vw 3fr 2.1875vw 3fr 2.1875vw;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 3fr 3fr 3fr;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
}
.search_cat .kensaku-column {
  justify-content: space-between;
  gap: 4vw;
	align-items:flex-start;
}
.search_cat .kensaku-left {
  width: 52%;
	    display: flex;
    flex-direction: column;
	align-items: center;
}


.search_cat .kensaku-left #k-map {
    width: 75%;
	margin-bottom: 40px;
}


#blog-data-inner h1, #blog-data-inner h2{
	color: #6290d3;
}


#blog-data-inner h2.blog-h {
    margin-top: 50px !important;
    margin-bottom: 30px !important;
    background-color: #8fcaf6;
    padding: 12px 10px;
    color: #fff;
}

.category-blog .entry-content{
	    margin-top:3em;
}

.search_cat .kensaku-right {
  width: 45%;
}
.top_pickup {
  background: #fff;
}
.top-consultation {
  background-color: #eceff5;
  padding-bottom: 7rem;
}
.main_title {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.main_title h2:before {
  width: 30px;
  height: 24px;
  content: "";
  background-image: url(../assets/images/img-maintitle.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin-bottom: 10px;
}
.main_title h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-size: 2.25em;
  font-weight: 600;
}
.main_title p {
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  margin-top: 12px;
}
.top-consultation .main_title {
  margin-bottom: 4.5rem;
}
.top-consultation .main_title h2:before {
  background-image: url(../assets/images/consultation_title_icon.png);
  width: 85px;
  height: 85px;
  margin-top: -2.5rem;
  margin-bottom: 2rem;
  ;
}
.pro-badgers li {
  width: 100%;
  margin: 0;
  padding: 0
}
.pro-badgers li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all .3s;
  height: 100%;
}
.pro-badgers li a:hover {
  transform: scale(1.1);
}
.pro-badgers li a .tag {
  width: 100%;
  padding: 2px 4px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.pro-badgers .img-text {
  position: relative;
  width: 100%;
  text-align: center;
  color: #444;
  padding: 10px;
  height: 100%;
  display: grid;
  align-items: center;
}
.pro-badgers .img-text img {
  width: 100%;
}
.pro-badgers .img-text p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 1.15rem;
  width: 80%;
}
.top_pickup .top_pickup-list .top_pickup-item .pro_tag, .latest_pro .top_pickup-list .top_pickup-item .pro_tag {
  margin-bottom: 22px;
}
.top_pickup-list {
  padding-left: 0;
}
.archive__main .pro_list .top_pickup-list {
  grid-row-gap: 3vw;
}
.pro_list .top_pickup-list .top_pickup-item .pro_details {
  margin: -80px 15px 10px;
  background-color: #fff;
  position: relative;
  z-index: 10;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  border-bottom: solid 1px #d6d6d6;
}
.top_pickup-item .expert_area ul {
  display: flex;
  gap: .315rem 1rem;
  padding-left: 0;
  margin-top: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.top_pickup-item .expert_area ul li {
  display: flex;
  align-items: center;
}
.top_pickup-item .expert_area ul li .bullet {
  width: 14px;
  height: 14px;
  margin-right: 6px;
}
.top_pickup-item .expert_area ul li .bullet::before {
  width: 14px;
  height: 14px;
}
.pro_details .pro_contact_details .address, .pro_details .pro_contact_details .web {
  display: flex;
  font-size: 14px;
}
.pro_details .pro_contact_details .web {
  align-items: center;
  margin-top: 5px;
}
.pro_details .pro_contact_details .web a {
  color: var(--font-color) !important;
}
.pro_details .pro_contact_details .address:before {
  content: "";
  width: 23px;
  background-image: url(../assets/images/icon-address.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 23px;
  margin-right: 5px;
}
.pro_details .pro_contact_details .web:before {
  content: "";
  width: 23px;
  background-image: url(../assets/images/icon-web.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 23px;
  margin-right: 5px;
}
.pro_list .top_pickup-list .top_pickup-item .pro_tag {
  display: flex;
  justify-content: space-between;
}
.pro_list .intro-tag {
  margin-top: 0;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 0 10px 10px;
}

.pro_list .top_pickup-list .top_pickup-item .pro_tag .profile_pro_tags{
    display: grid;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: flex-end;
}


.pro_list .intro-tag a {
  text-decoration: none;
  padding: 3px 15px;
  background-color: #fff;
  color: #6290d3;
  margin-right: 0;
  border-radius: 50px;
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
  border: #6290d3 solid 1px;
  font-weight: 500;
}
/*----------士業名のタグ----------*/
.id-shigyou-bengo {
  width: 100%;
}
.id-shigyou-bengo p, .bd-bengo, .shigyo_mark.attorney{
  background-color: #faa5a6;
}
.id-shigyou-tyusyo p, .bd-tyusyo, .shigyo_mark.rmc{
  background-color: #84db9d;
}
.id-shigyou-zeiri p, .bd-zeiri, .shigyo_mark.tax-accountant{
  background-color: #91cce9;
}
.id-shigyou-syarou p, .bd-syarou, .shigyo_mark.sr{
  background-color: #f7acc4;
}
.id-shigyou-gyousei p, .bd-gyousei, .shigyo_mark.administrative-scrivener {
  background-color: #9ea7eb;
}
.id-shigyou-shihou p, .bd-shihou, .shigyo_mark.judicial-scrivener{
  background-color: #f6a4e7;
}
.id-shigyou-kaikei p, .bd-kaikei, .shigyo_mark.cpa{
  background-color: #c59bef;
}
.id-shigyou-benri p, .bd-benri, .shigyo_mark.patent-agent{
  background-color: #8adacb;
}
.id-shigyou-fudo p, .bd-fudo, .shigyo_mark.lrea{
  background-color: #a3d379;
}

.shigyo_mark{
  padding: 7px 15px 8px;
  margin-bottom: 0 !important;
  line-height: 1;
  font-weight: 600;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  min-width: max-content;
  font-size: 14px;
}

.id-shigyou-bengo p, .id-shigyou-tyusyo p, .id-shigyou-zeiri p, .id-shigyou-syarou p, .id-shigyou-gyousei p, .id-shigyou-shihou p, .id-shigyou-kaikei p, .id-shigyou-benri p, .id-shigyou-fudo p {
  padding: 7px 15px;
  margin-bottom: 0 !important;
  line-height: 1;
  font-weight: 600;
  border-radius: 0 !important;
  color: #fff;
  text-align: center;
  width: 100%;
  min-width: max-content;
  font-size: 14px;
}




.top_pickup-list .profile_pro_tags {
	display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.top_pickup-list .id-shigyoumei{
  width: fit-content;
  overflow: hidden;
  border-radius: 50px;
  margin-bottom: 12px;
}
.top_pickup-list .id-shigyou-gyousei {
  width: 100%;
  margin-bottom: 0 !important;
}
.top_pickup-list .acf-office {
  font-size: 1rem;
  color: #616161;
}
.top_pickup-list .acf-charge {
  font-size: 1.35rem;
  font-weight: 600;
  color: #616161;
}
.top_pickup-list .useful-info {
  padding: .6em .8em;
  /*background: #eceff5;*/
  background: rgba(236, 239, 245, .9);
  color: #1e1e1e;
  font-size: .875rem;
  line-height: 1.4;
  display: block;
}
.top_pickup-list .useful-info-wrap {
  z-index: 1;
  position: relative;
  display: block;
  margin: -48px 10px 30px;
}
.latest_pro {
  background-color: #f5f5f5;
}
.top-about {
  background-color: #17263a;
       position: relative;
}
.top-about .top-about-wrapper {
  display: flex;
 justify-content: center;
  color: #fff;
  align-items: center;

        position: relative;

}

.top-about:before{
    content: "";
    background: url(../assets/images/about-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    width:70%;
    position: absolute;
    opacity: .3;
    height: 95%;
    left: 5%;
    top: 5%;
	background-position: bottom left;
}



.top-about .top-about-wrapper .top-about-description {
  leading-trim: both;
  text-edge: cap;
  color: #fff;
  flex-shrink: 1.5;
  font-weight: 500;
}
.top-about .top-about-wrapper .top-about-title {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.85rem;
  font-weight: 600;
/*  margin-right: 3.75rem;*/
    min-width: 28%;
}
.top-consultation .most_viewed ul {
  grid-row-gap: .5vw;
  grid-column-gap: .5vw;
  display: flex;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
  max-width: 42%;
  margin: 0 auto .5vw;
}
.top-consultation .most_viewed ul li {
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-radius: 5px;
}
.top-consultation .consultaion_category_list ul li {
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  border-radius: 5px;
  min-width: 14%;
}
.top-consultation .consultaion_category_list ul {
  display: grid;
  /*  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));*/
  grid-template-columns: repeat(9, 1fr);
  gap: .5vw;
  ;
  padding-left: 0;
  justify-items: center;
}
.top-consultation .most_viewed ul li a {
  display: flex;
  flex-direction: column;
}
.top-consultation .most_viewed ul li a img {
  width: 358px;
  filter: brightness(0) invert(1);
}
.top-consultation .most_viewed ul li p {
  background: #fff;
  color: #858585;
  margin: 0 8px 8px;
  padding: 10px 2px;
  font-size: 1.35rem;
  border-radius: 0 0 5px 5px;
  font-weight: 600;
text-align: center;
}
.top-consultation .most_viewed ul li a, .top-consultation .consultaion_category_list ul li a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  transition: all .5s;
}
.top-consultation .most_viewed ul li a:hover, .top-consultation .consultaion_category_list ul li a:hover {
  filter: brightness(112%);
}
.top-consultation .consultaion_category_list ul li p {
  color: #858585;
  text-align: center;
  font-weight: 600;
  background-color: #fff;
  margin: 0 8px 8px;
  padding: 10px 2px;
  font-size: 1.125rem;
  border-radius: 0 0 5px 5px;
}
.top-consultation .consultaion_category_list ul li img {
  filter: brightness(0) invert(1);
}
.top_articles {
  background-color: #f5f5f5;
  padding-top: 6rem;
  padding-bottom: 5.5rem;
}
.top_articles .top_articles-list {
  grid-column-gap: 1.10vw;
  -ms-grid-columns: 1fr 2.1875vw 1fr 2.1875vw 1fr 2.1875vw 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
  margin-bottom: 5rem;
}
.blog_page .top_articles-list {
  grid-column-gap: 1.25vw;
  grid-row-gap: 1.25vw;
  -ms-grid-columns: 1fr 2.1875vw 1fr 2.1875vw 1fr 2.1875vw 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
  margin-bottom: 5rem;
}
.top_articles .top_articles-list .top_articles-item, .blog_page .top_articles-list .top_articles-item {
  width: 100%;
}
.top_articles .top_articles-list a, .blog_page .top_articles-list a {
  padding: 10px;
  border-radius: 0.5rem;
  background-color: #fff;
  display: block;
height:100%;
}
.articles-card-thumb {
  order-radius: 0.5rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 2.3;
}
.articles-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_articles-list .title_box {
  display: flex;
  justify-content: space-between;
  padding: 10px 5px 3px;
  align-items: center;
}
.top_articles-list .title_box p {
  font-size: 1rem;
  font-weight: 600;
  color: #222222;
}
.top_articles-list .title_box span {
  border-radius: 50%;
  padding: 13px 11px 11px;
  background: #fff;
  position: relative;
  width: 35px;
  height: 35px;
  min-width: 35px;
display:none;
}
.top_articles-list .title_box span:after {
  content: "";
  background-image: url(../assets/images/arrow-right.png);
  background-repeat: no-repeat;
  min-width: 16px;
  height: 10px;
  background-size: contain;
  width: 16px;
  filter: brightness(0) saturate(100%) invert(50%) sepia(15%) saturate(0%) hue-rotate(164deg) brightness(92%) contrast(98%);
  position: absolute;
}
.top_articles-list a:hover .title_box span:after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(4%) saturate(0%) hue-rotate(188deg) brightness(103%) contrast(104%);
}
.top_articles-list a:hover .title_box span {
  background: #62C8D3;
  background: -webkit-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: -o-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: linear-gradient(172deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
}
.more-button {
  display: flex;
  justify-content: center;
  width: 100%;
}
.top_articles .more-button .more-button-wrapper {
  width: 14rem;
}
.bttn_wrapper {
  margin: 0 auto;
}

.submit-btn p {
    text-align: center;
	display: flex;
	justify-content: center;
	column-gap: 20px;
}

.button, #contact input[type=submit], .publish-btn a, #publish-form input[type=submit], .btn-confirm, .submit-btn .btn-submit, .submit-btn .btn{
 	background: #2b324d;
	background: -webkit-linear-gradient(left, rgba(28, 74, 138, 1) 0%, rgba(6, 44, 89, 97) 100%);
	background: -o-linear-gradient(left, rgba(28, 74, 138, 1) 0%, rgba(6, 44, 89, 97) 100%);
	background: linear-gradient(to right, rgba(28, 74, 138, 1) 0%, rgba(6, 44, 89, 97) 100%);
    color: #fff;
    border-radius: 1.875rem !important;
    border: none;
    font-size: 1rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-weight: 500;
    min-width: 180px;
    line-height: 1;
    padding: .7rem 1rem;
    display: block;
    text-align: center;
}
.button:hover, input[type=submit]:hover, .publish-btn a:hover, #publish-form input[type=submit]:hover, #publish-form .btn-confirm:hover, .submit-btn .btn-submit:hover, .submit-btn .btn:hover{
  color: #fff;
    filter: brightness(178%);
}


.join_kaiketsu .button{
	background: linear-gradient(142deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
}

.join_kaiketsu .button:hover{
 filter: brightness(108%);
	background: linear-gradient(142deg, rgba(74, 99, 169, 1) 0%, rgba(98, 144, 211, 1) 100%);
}

.submit-btn .prev_btn{
	border-radius: 1.875rem !important;
  font-size: 1rem;
  padding: .7rem 1rem;
  transition: all .4s;
  align-items: center;
  background: linear-gradient(142deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  color: #fff;
  display: inline-block;
  display: flex;
  justify-content: center;
  /*margin: 0 auto;*/
  overflow: hidden;
  position: relative;
  font-weight: 500;
	border:none;
	cursor: pointer;
	width: 150px;
		line-height: 1;
}

.submit-btn .btn{
	background: #2b324d;
	background: -webkit-linear-gradient(left, rgba(43, 50, 77, 1) 0%, rgba(89, 89, 89, 1) 100%);
	background: -o-linear-gradient(left, rgba(43, 50, 77, 1) 0%, rgba(89, 89, 89, 1) 100%);
	background: linear-gradient(to right, rgba(43, 50, 77, 1) 0%, rgba(89, 89, 89, 1) 100%);
}

.submit-btn .btns{
    display: flex;
    gap: 10px;
}


.join_kaiketsu {
  background: #17263a;
  padding-top: 6.25rem;
  padding-bottom: 6rem;
}
.join_kaiketsu-wrapper {
  margin: 0 4.375rem 0;
}
.join_kaiketsu .cover-image, #publish .cover-image {
  justify-content: center;
  display: flex;
  width: 100%;
  background-color: #fff;
  border-radius: 230px;
  padding-top: 50px;
}
#publish .cover-image {
  margin-bottom: 60px;
}
.join_kaiketsu .cover-image img, #publish .cover-image img {
  width: 50%;
}
.join_kaiketsu .join_intro {
  text-align: center;
  color: #fff;
  margin-bottom: 3rem;
}
.join_kaiketsu h4 {
  margin: 2.2rem 0;
  font-size: 1.75rem;
}
.join_kaiketsu .join_intro p {
  font-size: 1.75rem;
  font-family: "Noto Serif JP", serif;
}
.join_kaiketsu .topbenifits {
  display: flex;
  gap: 3rem;
  justify-content: center;
  color: #fff;
  margin-bottom: 3rem;
  padding-left: 0;
}
.join_kaiketsu .topbenifits li {
  border: solid 1px #fff;
  border-radius: 3px;
  padding: 10px 20px;
  font-weight: 1.25rem;
  font-weight: 600;
}
.join_kaiketsu .more-button {
  flex-direction: column;
  align-items: center;
}
.join_kaiketsu .more-button .caption {
  color: #ff0800;
  font-family: "Noto Serif JP", serif;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.join_kaiketsu .more-button .more-button-wrapper {
  width: 15.5rem;
}




.search_cat {
  background: #fff;
}
.top_testimonials {
  padding-top: 6rem;
  padding-bottom: 5.5rem;
  background-color: #f5f5f5;
}
.top_testimonials .testimonials_list .image_box {
  width: 45%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  max-width: 225px;
}
.top_testimonials .testimonials_list .image_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_testimonials .testimonials_list .testimonials_list_content {
  min-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.top_testimonials .testimonials_list {
  grid-column-gap: 2.1875vw;
  -ms-grid-columns: 1fr 2.1875vw 1fr 2.1875vw 1fr 2.1875vw 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
}
.top_testimonials .testimonials_list_item {
  display: flex;
  border: solid 1px #eeeeee;
  padding: 1rem 0.75rem 1rem 1rem;
  border-radius: .75rem;
  gap: 1.25rem;
  position: relative;
  background: #fff;
}
.top_testimonials .bttn_right {
  display: flex;
  justify-content: flex-end;
}
.top_testimonials .testimonials_list_item .title {
  margin-top: .25rem;
  margin-bottom: .75rem;
}
.top_testimonials .testimonials_list_item a {
  color: #222222;
}
.top_testimonials .testimonials_list_item .testimonail_text_box {
  display: flex;
  justify-content:
}
.top_testimonials .testimonials_list_item .testimonail_text {
  margin-right: .5rem;
}
.top_testimonials .testimonials_list_content a.morebttn {
  border-radius: 50%;
  padding: 13px 11px 11px;
  background: #62C8D3;
  background: -webkit-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: -o-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: linear-gradient(172deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  width: 35px;
  height: 35px;
  min-width: 35px;
  position: relative;
  display: inline-flex;
  align-self: flex-end;
  transition: all .3s;
}
.top_testimonials .testimonials_list_content a.morebttn:after {
  content: "";
  background-image: url(../assets/images/arrow-right.png);
  background-repeat: no-repeat;
  min-width: 16px;
  height: 10px;
  background-size: contain;
  width: 16px;
  position: absolute;
  filter: invert(100%);
}
.top_testimonials .testimonials_list_content a.morebttn:hover {
  cursor: pointer;
  transform: scale(1.03);
  filter: brightness(108%);
}

.pro_list {
  background-color: #f5f5f5;
}
.pro_contact_details {
  margin-top: 8px;
}
.top-consultation .consult_category_list {
  display: flex;
  justify-content: center;
}
.pro-cat_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 3rem;
}
.consult-cat_list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 3rem;
  justify-content: center;
}
.top-consultation .consult-cat_list .consult-cat_list_item {
  display: flex;
}
.top-consultation .consult-cat_list .consult-cat_list_item a span {
  color: #fff !important;
  font-size: 16px;
}
.top-consultation .consult-cat_list .consult-cat_list_item a {
  padding: 5px 22px;
  min-width: 100px;
  align-items: center;
  border-radius: 50px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}
.pro-cat_list .pro-cat_list_item a {
  display: flex;
  background-color: #fff;
  align-items: center;
  border: solid 1px;
  padding: 5px 15px 5px 5px;
  border-radius: 50px;
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
}
.pro_list .top_pickup-list .top_pickup-item {
  background-color: #fff;
  border-radius: 1rem;
}
.pro-cat_list .pro-cat_list_item a img {
  margin-right: 12px;
  width: 40px;
  height: 40px;
  filter: brightness(0.65);
}
.pro-card-thumb {
  border-radius: 1rem;
  width: 100%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3.8;
}
.pro-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro-cat_list .pro-cat_list_item a.bd-bengo {
  border-color: #faa5a6;
  color: #faa5a6;
}
.pro-cat_list .pro-cat_list_item a:hover img {
  filter: brightness(0.85);
}
.pro-cat_list .pro-cat_list_item a.bd-tyusyo {
  border-color: #84db9d;
  color: #84db9d;
}
.pro-cat_list .pro-cat_list_item a.bd-zeiri {
  border-color: #91cce9;
  color: #91cce9;
}
.pro-cat_list .pro-cat_list_item a.bd-syarou {
  border-color: #f7acc4;
  color: #f7acc4;
}
.pro-cat_list .pro-cat_list_item a.bd-gyousei {
  border-color: #9ea7eb;
  color: #9ea7eb;
}
.pro-cat_list .pro-cat_list_item a.bd-shihou {
  border-color: #f6a4e7;
  color: #f6a4e7;
}
.pro-cat_list .pro-cat_list_item a.bd-kaikei {
  border-color: #c59bef;
  color: #c59bef;
}
.pro-cat_list .pro-cat_list_item a.bd-benri {
  border-color: #8adacb;
  color: #8adacb;
}
.pro-cat_list .pro-cat_list_item a.bd-fudo {
  border-color: #a3d379;
  color: #a3d379;
}
.single_profile {
  background: #f5f5f5;
}
.single_profile .profile_introduction {
  margin-top: 1rem!important;
}
.profile_introduction {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
.profile_introduction .profile_image {
  max-width: 28%;
}
.profile_introduction .profile_image img {
  border-radius: 1rem;
}
.profile_introduction .profile_intro_right {
  display: flex;
  justify-content: space-between;
  width: 72%;
  gap: 2rem;
}
.profile_introduction .profile_intro_text {
  width: 65%;
}
.profile_intro_tags {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}


.profile_intro_tags .profile_pro_tags{
	display:flex;
	gap: 5px;
}

.profile_intro_tags .id-number {
  width: auto;
  margin-left: 1.25rem;
	min-width: 125px;
}
.profile_introduction .id-shigyoumei {
  width: fit-content;
  overflow: hidden;
  border-radius: 50px;
}
.profile_introduction .id-number span {
  border: solid 1px #17263a;
  padding: 3px 15px 3px;
  border-radius: 50px;
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  color: #1a4989;
  max-width: fit-content;
}
.profile_introduction .acf-charge {
  font-size: 2rem;
  font-weight: 600;
}
.profile_introduction .address {
  display: flex;
  font-size: 16px;
}
.profile_introduction .address:before {
  content: "";
  width: 30px;
  background-image: url(../assets/images/icon-address.png);
  background-size: 20px;
  background-repeat: no-repeat;
  height: 38px;
  margin-right: 10px;
  background-position: center;
  margin-top: 8px;
}
.profile_introduction .expert_area {
  display: block;
  margin: 12px 5px 0;
}
.profile_details_tab .expert_area ul {
  display: flex;
  gap: 10px 60px;
}
.profile_introduction .expert_area ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  grid-template-rows: repeat(3, auto); /* 3 rows */
  gap: 2px 10px;
}
.profile_introduction .expert_area ul li:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.profile_introduction .expert_area ul li:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.profile_introduction .expert_area ul li:nth-child(3) {
  grid-column: 1;
  grid-row: 3;
}
.profile_introduction .expert_area ul li:nth-child(4) {
  grid-column: 2;
  grid-row: 1;
}
.profile_introduction .expert_area ul li:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
}
.profile_introduction .expert_area ul li:nth-child(6) {
  grid-column: 2;
  grid-row: 3;
}
.profile_introduction .expert_area ul li, .profile_details_tab .expert_area ul li {
  display: flex;
  width: auto;
  position: relative;
  padding-left: 0;
}

.profile_details_tab .related-posts h2{
    margin-bottom: 30px;
    margin-top: 0;
}



.related-posts ul{
	padding-left: 0;

}

.related-posts ul li{
	padding-bottom: 8px;
	border-bottom: 1px solid #f5f5f5;
}


.expert_area ul li .bullet {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
  width: 18px;
  height: 18px;
  margin-right: 18px;
}
.expert_area ul li .bullet::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  background-color: #62c8d3;
  border-radius: 50%;
  margin-right: 30px;
}
.expert_area ul li .bullet::after {
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.pro_contact_mail {
  display: flex;
  background: #17263a;
  padding: 12px 22px 12px 12px;
  border-radius: 10px;
}
.pro_contact_mail:hover {
  background: #1d447c;
}
.pro_contact_tel {
  margin: 1rem 0;
}
.pro_contact_tel .caption {
  font-size: 14px;
  color: #d50101;
}
.pro_contact_mail .ico_mail_btn {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;
}
.pro_contact_mail .text_subt {
  font-size: 14px;
  color: #fff;
}
.pro_contact_mail .text_main {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
.pro_contact_mail .ico_mail_btn img {
  width: 25px;
}
.pro_contact_mail .btn_text {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
  line-height: 1.2;
}




.category-unregistered .pro_contact_mail{
	cursor: default;
	pointer-events: none;
}


.add_line a {
  background-color: #04ba05;
  padding: 16px 22px 16px 12px;
  display: flex;
  align-items: center;
  width: auto;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
}
.add_line a:before {
  background-image: url(../assets/images/icon-line.png);
  content: "";
  margin-right: 20px;
  width: 27px;
  height: 25px;
  background-size: cover;
}
.add_line span {
  color: #fff;
  font-weight: 500;
}
.add_line {
  margin-bottom: 5px;
}
.profile_details_tab {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 1rem;
  margin-top: 0;
}
.profile_details_tab #introduction-tab {
  margin-top: 0;
}

.profile_details_tab #introduction-tab h2{
    margin-bottom: 30px;
    margin-top: 0;
}

.profile_details_tab .tab-group {
  margin: 0;
  width: 100%;
}
.profile_details_tab .tab-button {
  border: 1px solid #e2e2e2;
  background-color: #eff9fa;
  border-radius: 12px;
}
.profile_details_tab .tab-button li {
  padding: 4px 9px 4px 4px;
  margin: 5px;
  border-right: 1px solid #e2e2e2;
  color: #0075af;
}
.profile_details_tab .tab-button li:last-child {
  border-right: none;
}
.profile_details_tab .tab-button li::before {
  display: none;
}
.profile_details_tab .tab-button li span {
  border-radius: 10px;
  width: 100%;
  display: flex;
  padding: 10px;
  font-weight: 500;
  justify-content: center;
  position: relative;
  transition: all .4s;
}
.profile_details_tab .tab-button li span::before {
  position: absolute;
  left: 5px;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.profile_details_tab .tab-button li.tab-01 span::before {
  background-image: url("../assets/images/icon_profile.png");
}
.profile_details_tab .tab-button li.tab-02 span::before {
  background-image: url("../assets/images/icon_area.png");
}
.profile_details_tab .tab-button li.tab-03 span::before {
  background-image: url("../assets/images/icon_access.png");
}
.profile_details_tab .tab-button li.tab-04 span::before {
  background-image: url("../assets/images/icon_access.png");
}
.profile_details_tab .tab-button li:hover span {
  background-color: rgba(255, 255, 255, 0.95);
}
.profile_details_tab .tab-button .is-active {
  background-color: #eff9fa;
}
.profile_details_tab .tab-button .is-active span {
  background: #ffffff;
  box-shadow: 0px 0px 3px #e2e2e2;
  color: #61c6d2;
}
.profile_details_tab .content.is-display {
  display: block;
  height: 100%;
  padding: 32px 20px 20px;
}
.profile_details_tab .tab {
  width: calc(100% / 2);
  border-bottom: none;
}
.profile_career_details {
  margin: 0
}
.profile_career_details dl {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
.profile_career_details dt {
  margin: 0;
  padding: 0 20px 0 10px;
  width: 10%;
  text-align: left;
  font-size: 1.2em;
  font-weight: 500;
}
.profile_career_details dd {
  margin: 0;
  padding: 0 40px;
  width: 90%;
  border-left: 2px solid #61c6d2;
}


.post-taxonomy__items{
	display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.post-taxonomy__items .post-taxonomy__item:after{
display:none;
}

.post-taxonomy__items .post-taxonomy__link{
    text-decoration: none;
    padding: 3px 15px;
    background-color: #fff;
    color: #6290d3;
    margin-right: 0;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    line-height: 1.5;
    border: #6290d3 solid 1px;
    font-weight: 500;
}





.unreg .inactive, .unreg .inactive span {
  cursor: default;
  pointer-events: none;
}
.unreg .pro_contact_mail.inactive {
  background: #969799;
}
.unreg .pro_contact_mail.inactive .ico_mail_btn img {
  filter: brightness(0) saturate(100%) invert(67%) sepia(0%) saturate(258%) hue-rotate(31deg) brightness(95%) contrast(94%);
}
.profile_details_tab .tab-button li.inactive span {
  filter: brightness(0) saturate(100%) invert(67%) sepia(0%) saturate(258%) hue-rotate(31deg) brightness(95%) contrast(94%);
}
.profile_details_tab .tab-button {
  cursor: default;
}
.profile_details_tab .tab-button li {
  cursor: pointer;
}
.kkmg #post-flex-sigyou, .kkmg #post-flex-consul {
  flex-direction: column;
  justify-content: center;
}
.kkmg #post-flex-sigyou img {
  max-width: 100px;
}
.kkmg .post-title h1 {
  margin: 0;
  padding-left: 0;
  padding-top: 30px;
}
.kkmg #post-flex-consul .post-title h1 {
  padding-top: 16px;
}
.blog_page, .kaiketsu-news {
  padding: 1rem 0 5rem 0;
}

.kaiketsu-news .top_articles-list {
  grid-column-gap: 1.25vw;
  grid-row-gap: 1.25vw;
  -ms-grid-columns: 1fr 2.1875vw 1fr 2.1875vw 1fr 2.1875vw 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: center;
  justify-items: center;
  padding-left: 0;
  margin-bottom: 0;
}
.kaiketsu-news .top_articles-list li {
  width: 100%;
}
.kaiketsu-news .top_articles-list a .textbox_area p {
  color: #222;
}
.top_articles-list .textbox_area .title_box {
  justify-content: right;
}
.kaiketsu-news .top_articles-list a {
  padding: 10px;
  border-radius: 0.5rem;
  background-color: #fff;
  display: block;
}
.kkmg .single_content_area {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  margin: 1rem 0;
}


.news_article h1{
margin-top:0!important;
}

.blog-h {
  border-radius: .8rem;
}


h3.blog-h{
    border-bottom: solid 1px #3f7aa6;
    color: #3f7aa6;
    background-color: transparent;
    border-radius: 0;
}

#blog-article ul li b::after{
    content: "";
    width: 100%;
    position: absolute;
    height: 45%;
    background-color: #c7e7ff;
    left: 0;
    z-index: -1;
    bottom: 0;
}


#blog-article ul li b{
    position: relative;
    z-index: 10;
    padding: 0 5px;
}


.kkmg .contact-container {
  background: #17263a;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 1rem;
  width: 80%;
  max-width: 1400px;
  height: 100%;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
}
.contact-container dl {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.contact-container dt {
  margin-top: 0;
  align-items: center;
  display: flex;
  padding-left: 10px;
}
.contact-container dt p {
  color: #fff;
}
.contact-container dd {
  width: 100%;
  border-radius: 0.4rem;
  margin-left: 0;
}
.contact-container dd input, .contact-container dd select, .contact-container dd textarea, #publish-form dd input,  #publish-form dd select,  #publish-form dd textarea{
  padding: .85rem;
  border-radius: .4rem;
  border: none;
	width: 100%;

}
.contact-radiobtn {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
.contact-radiobtn p {
  text-align: center;
  color: #ffff;
}
.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 1.5em 1em;
  border: 2px solid #00a0d2;
  text-align: center;
  border-radius: .5rem;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450; /* Green */
  background-color: #46b450;
  color: #fff;
}
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232; /* Red */
  background: #dc3232;
  color: #fff;
}
.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28; /* Orange */
  background: #f56e28;
  color: #fff;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900; /* Yellow */
  background: #ffb900;
}
.campaign-text {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  color: #17263a;
}
/*.campaign-text p::before {
	content: "＼＼";
	color: #8fcaf6;
	font-size: 50px;
	position: absolute;
	top: -20px;
	left: 0;
}
.campaign-text p::after {
	content: "／／";
	color: #8fcaf6;
	font-size: 50px;
	position: absolute;
	top: -20px;
	right: 10px;
}

*/
#publish h2 {
  text-align: center;
  color: #17263a;
  padding-bottom: 16px;
  position: relative;
  margin-top: 2rem;
  margin-bottom: .25rem;
}
/*#publish h2::before {
	content: url("http://kaiketsu-madoguchi.com/wp-content/uploads/2024/07/publish-icon-box.png");
	position: absolute;
	top: -20px;
	left: -550px;
	right: 0;
}
#publish h2::after{
	content: url("http://kaiketsu-madoguchi.com/wp-content/uploads/2024/07/publish-icon-box.png");
	position: absolute;
	top: -20px;
	left: 0;
	right: -550px;
}*/
.publish-container {
  width: 100%;
  max-width: 1400px;
  height: 1200px;
  background-color: #17263a;
  border-radius: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.publish-inner {
  width: 80%;
  height: 80%;
  background-color: #fff;
  border-radius: 2%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5%;
}
.publish-container h3 {
  text-align: center;
  padding-top: 50px;
  font-size: 2rem;
  color: #fff;
}
/*----------よくある質問----------*/
#question {
  width: 100%;
  /*max-width: 1400px;*/
  margin-left: auto;
  margin-right: auto;
}
/*.question-h1-bg h1 {
	text-align: center;
	padding-top: 135px;
	color: #fff;
	margin: 0;
}
.question-h1-bg {
	background-image: url(http://kaiketsu-madoguchi.com/wp-content/uploads/2025/03/qa-pageh1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
}*/
/**----------アコーディオンメニュー*----------*/
.qa-base *, .qa-base *:after, .qa-base *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.qa-base {
  /*margin-top: 60px;*/
  width: 80%;
  max-width: 1200px;
  margin:4.5rem auto;
}
.qa-base .qa-actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1px;
  color: #1b2538;
}
.qa-base .qa-actab input {
  position: absolute;
  opacity: 0;
}
.qa-base .qa-actab label {
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 30px 2em 30px 1rem;
  cursor: pointer;
  border: 2px solid #17263a;
  border-radius: 20px;
}
.qa-base .qa-actab label:hover {
  color: #00838F;
}
/* 答え */
.qa-base .qa-actab .qa-actab-content {
  overflow: hidden;
  max-height: 0;
  transition: 1.5s;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  color: #ffffff;
  background: #17263a;
  border-radius: 20px;
}
.qa-actab label::before {
  content: "Q";
  padding-right: 20px;
  font-size: 24px;
  color: #17263a;
  font-weight: 600;
}
.qa-base .qa-actab .qa-actab-content p {
  margin: 1em 1em 1.4em;
}
.qa-actab-content p::before {
  content: "A";
  padding-right: 20px;
  font-size: 24px;
  font-weight: 600;
}
/* --答えの高さ */
.qa-base .qa-actab input:checked ~ .qa-actab-content {
  max-height: 40em;
  min-height: 60px;
}
#shigyou-about .top-consultation .consultaion_category_list ul {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}
#shigyou-about .top-consultation .consultaion_category_list ul li {
  width: 14%;
}

#shigyou-about .hudousan-9  .top-consultation{
	padding-bottom: 0;
}


#shigyou-about .top-consultation {
  background-color: transparent;
  width: 100%;
  padding-bottom: 7rem;
}
#shigyou-about .consultaion_category_list ul li span {
  color: #858585;
  text-align: center;
  font-weight: 600;
  background-color: #fff;
  margin: 0 5px 5px;
  padding: 5px 2px;
  font-size: 1rem;
  border-radius: 0 0 5px 5px;
}
#shigyou-about .sigyou-category h3 {
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  justify-content: center;
  border-radius: 25px;
  border: 2px solid #faa5a5;
  padding: 3px 35px 5px;
  font-size: 18px;
  background: #fff;
}
#shigyou-about .sigyou-category .bengo-1 h3 {
  border: 2px solid #faa5a5;
}
#shigyou-about .sigyou-category .syarou-2 h3 {
  border: 2px solid #f7acc4;
}
#shigyou-about .sigyou-category .shihou-3 h3 {
  border: 2px solid #f6a4e7;
}
#shigyou-about .sigyou-category .kaikei-4 h3 {
  border: 2px solid #c59bef;
}
#shigyou-about .sigyou-category .gyousei-5 h3 {
  border: 2px solid #9ea7eb;
}
#shigyou-about .sigyou-category .zeiri-6 h3 {
  border: 2px solid #91cce9;
}
#shigyou-about .sigyou-category .benri-7 h3 {
  border: 2px solid #8adacb;
}
#shigyou-about .sigyou-category .tyusyou-8 h3 {
  border: 2px solid #84db9d;
}
#shigyou-about .sigyou-category .hudousan-9 h3 {
  border: 2px solid #a3d379;
}
.badge {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.badge img {
  display: block;
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}
.badge p {
  text-align: center;
  padding-top: 1rem;
}
/*----------各士業について----------*/
#shigyou-about {
  /*width: 100%;
	max-width: 1400px;*/
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 3rem;
	padding-top: 2rem;
}

.shigyou-about-h1 h1 {
  text-align: center;
  padding-top: 135px;
}
#shigyou-about h2 {
  text-align: center;
  padding-bottom: 30px;
}
/*#shigyou-about h2::after {
	display: block;
	content: "";
	height: 2px;
	width: 150px;
	background-color: #62c8d3;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}*/
.shigyou-caption p {
  text-align: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #444;
}
.shigyou-caption {
  /*background-color: #8fcaf6;*/
  height: 100%;
  padding-bottom: 30px;
}
.sigyou-category {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
}
.arrwdwn {
  margin-top: 40px;
}
.publish-price {
  margin-top: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.publish-price p {
  text-align: left !important;
  padding-bottom: 0 !important;
}
.publish-price::before {
  content: "";
  width: 64px;
  height: 64px;
  background-size: contain;
  /*content: url("http://kaiketsu-madoguchi.com/wp-content/uploads/2024/07/publish-icon-en.png");*/
  background-image: url("../assets/images/publish-icon-en.png");
  margin-right: 16px;
}
#contact {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.contact-checkbox p {
  text-align: center;
  padding-bottom: 20px;
}
.contact-btn p {
  text-align: center;
}



#publish {
	width: 100%;
	/*max-width: 1400px;*/
	margin-left: auto;
	margin-right: auto;
}

p.publish-pbig {
	text-align: center;
	font-size: 1.5rem;
	padding-bottom: 20px;
	padding-top: 100px;
}
.publish-h1 h1 {
	text-align: center;
	font-size: 1.5rem;
	padding-bottom: 20px;
	padding-top: 135px;
	margin-top: 0;
}
#publish p {
	text-align: center;
	padding-bottom: 30px;
}

#publish .renwl_campaign p{
	padding-bottom: 0;
}
.publish-main img {
	display: block;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 80px;
}
.publish-main {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.campaign-text p {
	font-weight: 400;
	font-size: 30px;
}

.publish-dl {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 50px;
}
.publish-dl dt {
	text-align: center;
	font-size: 20px;
}
.publish-dl dd {
	text-align: center;
	font-size: 20px;
	padding-top: 15px;
}
.publish-bottom {
	width: 90%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: 60px;
	margin-left: auto;
	margin-right: auto;
}
.publish-bottom p {
	width: 47%;
}
.publish-bottom a {
	color: #f78806;
}
.publish-bottom img {
	display: block;
	width: 100%;
}


.publish-btn {
	width: 270px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}

#publish-form.confirm-form .form-container dl{
	flex-direction: row;
}

.confirm-form dt {
    margin-top: 0;
    align-items: center;
    display: flex;
    padding-left: 4px;
    width: 30%;
	min-width: 30%;
}

.confirm-form .form-container dd{
	border-bottom: solid 1px #fff;
    color: #fff;
    width: 70%;
}
.confirm-form .form-container .address-area{
    width: 70%;
    display: flex;
    flex-direction: column;

}

.confirm-form .form-container .address-area dd{
    width: 100%;
}


.mw_wp_form .error {
    color: #ee4847!important;
}


.pagination {
clear:both;
padding:20px 0;
position:relative;
font-size:11px;
line-height:13px;
}

.pagination a.pagination__item {

    margin: 3px;
    padding: 5px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
    color: #fff;
      background: #62C8D3;
  background: -webkit-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: -o-linear-gradient(82deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
  background: linear-gradient(172deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
    font-size: 14px;
}

.pagination span.pagination__item {
margin: 3px;
/*padding:5px  10px;*/
	height: 32px;
text-align: center;
line-height: 20px;
    width: 32px;
text-decoration:none;
color:#424242;
	    font-size: 14px;
}

.pagination .is-current{
margin: 3px;
padding: 5px;
    width: 32px;
    height: 32px;
text-align: center;
line-height: 22px;
background-color: transparent;
color:#424242;
	border-radius: 50%;
	border:#62C8D3 1px solid;
}



.pagination__item::after{
	display:none!important;
}

.no-results{
	background: #fff;
	border-radius: 1rem;
	padding: 1rem;
	margin-bottom: 1rem;
	margin-top: 2.5rem;
}
.kkmg header .left_header{
    display: flex;
    align-items: center;
    gap: 20px;
}

.kkmg header h1{
    display: flex;
    align-items: center;
    gap: 20px;
}

.kkmg .about_km h1{
    font-size: 2.15rem;
    margin-top: 2.4rem;
	justify-content: center;
}


.kkmg header .site-description{
    font-size: 15px;
    font-weight: 500;
}

.archive_pg{
	padding-top: 6rem;
}
.kkmg .archive_pg .post-title h1
{
    padding-bottom: 3rem;
	    padding-top: 0;
}

.archive_pg .pro_list {
        padding-top: 0;
        padding-bottom: 5.5rem;

}

.blog_list_item li{
    list-style: disc;

}
.blog_list_item{
    padding-left: 1.7em;
}


.area-shigyou-list{
	padding-left: 0;
}

.area-shigyou-list li{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: .25em;
}


.area-shigyou-list li span {
    min-width: 14%;
}

.area-shigyou-list li span a{
	min-width: 100%;
	display: block;
}


.area-shigyou-list li ul.consultation-list{
    width: 80%;
    gap: .25em .5em;
    display: flex;
    flex-wrap: wrap;
}


.area-shigyou-list li ul.consultation-list li a{
    text-decoration: none;
    padding: 3px 15px;
    background-color: #fff;
    color: #6290d3;
    margin-right: 0;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    line-height: 1.5;
    border: #6290d3 solid 1px;
    font-weight: 500;
}
.kkmg .archive_pg.area_pg .post-title h1{
	 padding-bottom: 1rem;
}
.kkmg .archive_pg.area_pg .post-title{
	 padding-bottom: 2rem;
}

.kkmg .archive_pg.area_pg h2{
	 margin: 0 0 .75em;

}

.area-shigyou-list{
	margin-bottom: 2rem;
}


.privacy_policy h2{
    color: #6290d3;
}


.privacy_policy h3{
    color: #14386b;
}

.privacy_policy ul{
margin-bottom:10px;
}

.privacy_policy ul li{
    list-style: disc;
}

.breadcrumbs{
    background-color: #eaeaea;
    padding: 7px;
    text-align: left;
}

.aioseo-breadcrumbs{
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 6px;
}


.aioseo-breadcrumb-separator{
    padding: 0 2px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.professionals_entry{
	background-color: #fff;

}


.professionals_entry section {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.professionals_entry section div.container {
  transition: all 0.3s ease;
}
.professionals_entry section div.container h1 {
  margin: 15px 0 0 0;
}
.professionals_entry section div.container h3 {
  margin: 0 0 25px 0;
}
@media (max-width: 992px) {
  .professionals_entry section {
    padding: 0 20px 0 20px;
  }
}
.professionals_entry section.slide-option {
  margin: 0 0 50px 0;
}
.professionals_entry section.slide-option .no-marg {
  margin: 0 0 0 0;
}
.professionals_entry section.slide-option.inner{
	padding-top: 70px;
}

.professionals_entry div.highway-slider {
  display: flex;
  justify-content: center;
  width: 100%;
    margin-top: 90px;

}
.professionals_entry div.highway-slider div.highway-barrier {
  overflow: hidden;
  position: relative;
}
.professionals_entry div.highway-slider ul.highway-lane {
  display: flex;
  height: 100%;
}
.professionals_entry div.highway-slider ul.highway-lane li.highway-car {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@-webkit-keyframes translatestf {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-500%);
  }
}
@keyframes translatestf {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-500%);
  }
}
#stffull div.highway-barrier ul.highway-lane {
  width: 500%;
}
#stffull div.highway-barrier ul.highway-lane li.highway-car {
  -webkit-animation: translatestf 30s linear infinite;
          animation: translatestf 30s linear infinite;
}

@keyframes translateinfinite {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%); /* Move exactly 8 items (100%) */
  }
}



#infinite div.highway-barrier ul.highway-lane {
  display: flex;
  width: calc(200%);
  animation: translateinfinite 30s linear infinite;
}


#infinite div.highway-barrier ul.highway-lane li.highway-car {
  flex: 0 0 12.5%; /* 100% / 8 items = 12.5% */
  padding: 0 35px;
  box-sizing: border-box;
}
#infinite div.highway-barrier ul.highway-lane li.highway-car:nth-child(even){
margin-top:110px;
}

#infinite div.highway-barrier ul.highway-lane li.highway-car img{
border-radius:15px;
}

#infinite div.highway-barrier {
  overflow: hidden;
  width: 100%;
}

.professionals_entry .section_intro{
		color:#1c4a8a;
	text-align: center;
	margin: 100px 0;
}

.professionals_entry .section_intro .intro_title{
	font-size: 36px;
	font-family: "Noto Serif JP", serif;
	color:#1c4a8a;
	    margin: 12px 0;
}


.professionals_entry .section_intro p{
	font-size: 20px;
}

.professionals_entry .section_intro .pro_btn{
	background-color:#1c4a8a;
	border-radius: 9999px;
	line-height: 1;
        padding: 10px 30px 13px;
	position: relative;
 	display: inline-block;
	    margin-top: 25px;

}

.professionals_entry #publish-form input[type=submit]{
	min-width: auto;
	    width: 150px;
}


.professionals_entry .section_intro .pro_btn span{
		color:#fff;
	font-size:16px;
	line-height: 1;
		font-weight: 600;
	    z-index: 2;
    letter-spacing: 0;
	position: relative;
	border-bottom: none;
}

.professionals_entry .section_intro .pro_btn::after{
	background: linear-gradient(142deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	border-radius: 9999px;
	z-index: 1;
	opacity: 0;
	    transition: all .3s;
}

.professionals_entry .section_intro .pro_btn:hover::after{
	opacity: 1;
}


.professionals_entry .menu-wrapper nav ul{
	padding: 0;
}

.professionals_entry .menu-wrapper nav ul a{
	background-color:#1c4a8a;
	border-radius: 9999px;
	line-height: 1;
    padding: 14px 30px;
	position: relative;
	display: block;
}

.professionals_entry .menu-wrapper nav ul a span{
		color:#fff;
	font-size:16px;
	line-height: 1;
		font-weight: 600;
	    z-index: 2;
    letter-spacing: 0;
	position: relative;
}


.professionals_entry .menu-wrapper nav ul a::after{
	background: linear-gradient(142deg, rgba(98, 200, 211, 1) 0%, rgba(98, 144, 211, 1) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	border-radius: 9999px;
	z-index: 1;
	opacity: 0;
	    transition: all .3s;
}

.professionals_entry .menu-wrapper nav ul a:hover::after{
	opacity: 1;
}


.about_intro{
	background-color:#1c4a8a;
	padding: 120px 0;
}

.about_intro_flex{
        display: flex;
        justify-content: space-between;
}

.about_intro_text {
    width: 55%;
	color:#fff;
}

.about_intro_text ul li{
	list-style:disc;
}

.about_intro_img {
    position: relative;
    width: 40%;
}

.about_intro_img img {
    border-radius: 20px;
    margin-right: 72px;
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
}


.about_intro_img:after {
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 40px;
    top: 40px;
    content: "";
    border-radius: 20px;
    z-index: 1;
    height: var(--bg-height, 100%);
}



.pro_higlighits{
	display: flex;
	justify-content:space-around;
	margin-top:120px;
	padding: 0;
}

.pro_higlighits li{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.pro_higlighits li img {
	width: 71px;
}

.pro_higlighits li p{
	color: #fff;
	text-align: center;
	font-size: 18px;
	line-height: 1.25;
}

.pro_higlighits li p span{
	font-size: 30px;
}

.pro_higlighits li .img_cntn{
    border-radius: 50%;
    border: solid 2px #fff;
    width: 140px;
    height: 140px;
    justify-content: center;
    display: flex;
    align-items: center;
	margin-bottom: 20px;
}

.pro_flow{
	background: #fff;
	padding: 120px 0;
}

.pro_flow_contain{
    display: grid;
    column-gap: 60px;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr 1fr;
}

.pro_flow h2{
	 font-size: 36px;
    font-family: "Noto Serif JP", serif;
    color: #1c4a8a;
    margin: 0 0 50px;
	text-align: center;

}

.professionals_entry .section_intro.innerttl{
	 margin: 60px 0;
}


.flow_step{
    border: solid 2px #1c4a8a;
    padding: 25px 25px;
    border-radius: 20px;
    position: relative;

}

.flow_step .step_no_tag{
background: #e4e4e4;
    border: solid 1px #1c4a8a;
    padding: 3px 20px;
    color: #1c4a8a;
    display: inline;
    border-radius: 9999px;
	margin-bottom: 15px;
}


.flow_step .step_no{
    color: #1c4a8a;
    font-size: 190px;
    opacity: .2;
    position: absolute;
    right: 10%;
    bottom: 5%;
    font-weight: 700;
    font-family: "Noto Serif JP", serif;
    line-height: 1;
}

.professionals_entry section div.container .flow_step h3{
	color: #1c4a8a;
	margin: 10px 0;
}

.flow_step a{
	display: flex;
	align-items: center;
	column-gap: 10px;
	margin-top: 60px;
}

.flow_step a span{
    background-color: #1c4a8a;
    border-radius: 50%;
    padding: 10px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.flow_step a img{
width: 14px;
}

.pro_flow .dtls_prointro{
    text-align: center;
    margin-top: 50px;
}


.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}

.faq-checkbox:checked ~ .faq-content {
  max-height: 1000px;
}

.faq-checkbox:checked ~ .faq-label .faq-arrow {
  transform: rotate(180deg);
}

.faq-checkbox:focus ~ .faq-label {
  outline: 2px solid #3b82f6;
  border-radius: 0.25rem;
}



.faq-arrow{
	width: 20px;
	    transition-property: transform;
	 transition-duration: .2s;
}

.pro_faq{
	background: #f9f9f9;
	padding: 120px 0;
}


.pro_faq h2 {
    font-size: 36px;
    font-family: "Noto Serif JP", serif;
    color: #1c4a8a;
    margin: 0 0 50px;
    text-align: center;
}

.pro_faq .faq_cntnr{
	background: #fff;
	margin-bottom: 20px;
	border-radius: 25px;
	    max-width: 800px;

}

.pro_faq .faq_cntnr .faq-label{
    border: solid 1px #1c4a8a;
    padding: 15px 20px;
    border-radius: 999px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
	 color: #1c4a8a;
	background: #fff;
}

.pro_faq .faq_cntnr .txt_ansr{
	padding: 25px;
}


.pro_footer{
	padding: 80px 0;
	background: #001e4a;

}

.pro_footer .container{
	max-width: 800px;
}
.pro_footer .footer_block{
	background: #fff;
	border-radius: 25px;
	padding: 40px;
	max-width: 1200px;
    width: 100%;
}


.pro_footer .footer_block .btn_area{
	display: flex;
	justify-content: center;
	padding: 0;
	margin-top: 15px;
	gap:20px;
}

.pro_footer .footer_block .btn_area .btn_contact{
	color:#1c4a8a;
	border:solid 1px #1c4a8a;
	background: #fff;
}

.pro_footer .footer_block .btn_area .btn_contact span{
		color:#1c4a8a;
	}

.pro_footer .footer_block .btn_area .btn_contact:hover span{
	color:#fff;
}


.professionals_entry .right_header ul{
	display: flex;
	gap: 20px;
}

.professionals_entry .right_header .pro_btn{
	margin-top: 0;
    color: #1c4a8a;
    border: solid 1px #1c4a8a;
    background: #fff;
}

.professionals_entry .right_header .pro_btn span{
	 color: #1c4a8a;
}

.professionals_entry .right_header .pro_btn::hover{
	 color: #fff;
}

.professionals_entry .section_intro p span{
    border-bottom: solid 2px;
}



.professionals_entry .publish-form p{
	color: #1c4a8a;
}

.professionals_entry .instruction p{
	text-align: center;
	font-size: 18px;
	color: #1c4a8a;
	margin-top: 40px;
}

.professionals_entry .publish-form .publish-form-hissu p{
	 color: #ff0200;
}

.bd-bengo-inner
.container {
	max-width: 100%;
	margin-top: 0;
}
.site-header__content {
	padding: 0 30px;
}
.site-content {
	margin-bottom: 0 !important;
}
.entry-content {
	margin-top: 0;
}
#content {
	margin-top: 0;
}
h1 {
	margin-top: 0;
}

/*ヘッダーh1*/
header h1{
	display: none;
}
p {
	margin: 0;
}
.footer-poweredby {
	display: none;
}
.footer-logo {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5px;
}
.footer-logo img {
  display: block;
	width: 250px;
	margin-left: auto;
	margin-right: auto;
}
.site-info {
	margin-top: 0;
	margin-bottom: 20px;
}
.singular-header {
		display: none;
	}
.footer-main {
	width: 100% !important;
	max-width: 100%;
}
.km-purapori {
	text-align: center;
	margin-top: 30px;
}
@media screen and (max-width: 768px){
	.site-branding {
		width: 50%;
	}
.vkfs__label-name	{
		margin-top: -20px !important;
	}
	.vkfs__keyword {
		padding-bottom: 30px;
	}
.wp-block-vk-filter-search-filter-search .vk-filter-search .vkfs form {
		margin-bottom: 0 !important;
	}
	.sidebar {
		display: none;
	}
.post-taxonomy {
		display: none;
	}
	.singular-header {
		display: none;
	}
}
/*----------フッターカテゴリ----------*/
#footer-category-tag {
	height: 300px;
	margin-right: -80px;
	background: #5da2d3;
	width: 100%;
}
#footer-category-tag ul {
	display: flex;
	flex-wrap: wrap;
	/*padding-top: 20px;*/
	width: 100%;
	padding-left: 90px;
	/*width: 90%;
	margin-left: auto;
	margin-right: auto;*/
}
#footer-category-tag li {
    list-style: none;
    width: 15%;
    margin-right: auto;
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-size: 1vw;
}
img.ft-icon {
    display: block;
    width: 15%;
    margin-right: 15px;
}
#footer-category-tag a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
}
/*----------フッターカテゴリレスポンシブ----------*/
@media screen and (max-width: 768px){

#footer-category-tag li {
		width: 33%;
	margin-right: 0;
	font-size: 14px;
 }
	#footer-category-tag {
		height: 100%;
		margin-right: 0;
	}
}
#breadcrumbs {
	display: none;
}
/*----------投稿データページサイドバー----------*/
.sidebar>:first-child {
	margin-top: 150px;
}
/*----------トップページ----------*/
#top-index {
	width: 100%;
	/*max-width: 1400px;*/
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
}
/*----------検索フォーム----------*/
.vkfs:where(:not(.vkfs__layout--min)) .vkfs__outer-wrap {
	margin-bottom: 0;
}
.vkfs:where(:not(.vkfs__layout--min)) .btn[type=submit] {
	width: 100%;
	margin-top: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.vkfs .btn[type=submit] {
	font-size: 1.2rem;
}
#k-form {
	margin-top: 30px;
}
@media screen and (max-width: 768px){
	.vkfs .btn[type=submit] {
		margin-top: -20px !important;
		width: 100%;
	}
	.entry-content p:empty {
		display: none;
	}
	.vkfs__labels {
		width: 100%;
		display: flex !important;
	}
	.vkfs__outer-wrap {
		width: 50%;
	}
/*.level-0 {
		width: 200px !important;
	}*/
}
/*----------日本地図----------*/
      .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9, .cls-10 {
        stroke-width: 0px;
      }
/*----------都道府県ごとに指定----------*/
.hokkai {
	fill: #5eacbe;
}
.hokkai:hover {
	filter: opacity(80%);
}
/*----------東北----------*/
.aomori {
	fill: #619cc0;
}
.aomori:hover {
	filter: opacity(75%);
}
.akita {
	fill: #619cc0;
}
.akita:hover {
	filter: opacity(75%);
}
.iwate {
	fill: #619cc0;
}
.iwate:hover {
	filter: opacity(75%);
}
.yamagata {
	fill: #619cc0;
}
.yamagata:hover {
	filter: opacity(75%);
}
.miyagi {
	fill: #619cc0;
}
.miyagi:hover {
	filter: opacity(75%);
}
.hukushima {
	fill: #619cc0;
}
.hukushima:hover {
	filter: opacity(75%);
}
/*----------甲信越地方----------*/
.niigata {
	fill: #8f90bc;
}
.niigata:hover {
	filter: opacity(75%);
}
.toyama {
	fill: #8f90bc;
}
.toyama:hover {
	filter: opacity(75%);
}
.ishikawa {
	fill: #8f90bc;
}
.ishikawa:hover {
	filter: opacity(75%);
}
.hukui {
	fill: #8f90bc;
}
.hukui:hover {
	filter: opacity(75%);
}
.nagano {
	fill: #8f90bc;
}
.nagano:hover {
	filter: opacity(75%);
}
.yamanashi {
	fill: #8f90bc;
}
.yamanashi:hover {
	filter: opacity(75%);
}
/*----------関東地方----------*/
.ibaraki {
	fill: #6893c8;
}
.ibaraki:hover {
	filter: opacity(75%);
}
.chiba {
	fill: #6893c8;
}
.chiba:hover {
	filter: opacity(75%);
}
.tochigi {
	fill: #6893c8;
}
.tochigi:hover {
	filter: opacity(75%);
}
.gunma {
	fill: #6893c8;
}
.gunma:hover {
	filter: opacity(75%);
}
.saitama {
	fill: #6893c8;
}
.saitama:hover {
	filter: opacity(75%);
}
.tokyo {
	fill: #6893c8;
}
.tokyo:hover {
	filter: opacity(75%);
}
.kanagawa {
	fill: #6893c8;
}
.kanagawa:hover {
	filter: opacity(75%);
}
/*----------中部地方----------*/
.shizuoka {
	fill: #ad7399;
}
.shizuoka:hover {
	filter: opacity(75%);
}
.aichi {
	fill: #ad7399;
}
.aichi:hover {
	filter: opacity(75%);
}
.gihu {
	fill: #ad7399;
}
.gihu:hover {
	filter: opacity(75%);
}
.mie {
	fill: #ad7399;
}
.mie:hover {
	filter: opacity(75%);
}
/*----------近畿地方----------*/
.shiga {
	fill: #d76e7c;
}
.shiga:hover {
	filter: opacity(75%);
}
.kyoto {
	fill: #d76e7c;
}
.kyoto:hover {
	filter: opacity(75%);
}
.nara {
	fill: #d76e7c;
}
.nara:hover {
	filter: opacity(75%);
}
.osaka {
	fill: #d76e7c;
}
.osaka:hover {
	filter: opacity(75%);
}
.wakayama {
	fill: #d76e7c;
}
.wakayama:hover {
	filter: opacity(75%);
}
.hyogo {
	fill: #d76e7c;
}
.hyogo:hover {
	filter: opacity(75%);
}
/*----------中国地方----------*/
.tottori {
	fill: #dc953e;
}
.tottori:hover {
	filter: opacity(75%);
}
.okayama {
	fill: #dc953e;
}
.okayama:hover {
	filter: opacity(75%);
}
.shimane {
	fill: #dc953e;
}
.shimane:hover {
	filter: opacity(75%);
}
.hiroshima {
	fill: #dc953e;
}
.hiroshima:hover {
	filter: opacity(75%);
}
.yamaguchi {
	fill: #dc953e;
}
.yamaguchi:hover {
	filter: opacity(75%);
}
/*----------四国地方----------*/
.kagawa {
	fill: #e9ad33;
}
.kagawa:hover {
	filter: opacity(75%);
}
.ehime {
	fill: #e9ad33;
}
.ehime:hover {
	filter: opacity(75%);
}
.tokushima {
	fill: #e9ad33;
}
.tokushima:hover {
	filter: opacity(75%);
}
.kochi {
	fill: #e9ad33;
}
.kochi:hover {
	filter: opacity(75%);
}
/*----------九州地方----------*/
.hukuoka {
	fill: #afbe63;
}
.hukuoka:hover {
	filter: opacity(75%);
}
.oita {
	fill: #afbe63;
}
.oita:hover {
	filter: opacity(75%);
}
.miyazaki {
	fill: #afbe63;
}
.miyazaki:hover {
	filter: opacity(75%);
}
.kumamoto {
	fill: #afbe63;
}
.kumamoto:hover {
	filter: opacity(75%);
}
.kagoshima {
	fill: #afbe63;
}
.kagoshima:hover {
	filter: opacity(75%);
}
.saga {
	fill: #afbe63;
}
.saga:hover {
	filter: opacity(75%);
}
.nagasaki {
	fill: #afbe63;
}
.nagasaki:hover {
	filter: opacity(75%);
}
/*----------沖縄----------*/
.okinawa {
	fill: #77aa5b;
}
.okinawa:hover {
	filter: opacity(75%);
}
/*----------マップの指定----------*/
#kensaku {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
#k-map {
	width: 100%;
		float: left;
	margin-top: 50px;
}
.kensaku-left {
 width: 45%;
}
/*----------マップのレスポンシブ----------*/
@media screen and (max-width: 768px){
	.kensaku-left {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
	}
#k-map {
		margin-top: -60px !important;
	}
}
/*----------バッジブロック----------*/
.bd-bengo-inner a{
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/弁護-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 35px;
	color: #444;
}
.bd-bengo-inner a:hover {
	transform: scale(1.1);
}
.bd-bengo-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-bengo-inner p {
	text-align: center;
}
.bd-sharou-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/社労-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 35px;
	color: #444;
}
.bd-sharou-inner a:hover {
	transform: scale(1.1);
}
.bd-sharou-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-sharou-inner p {
	text-align: center;
}
.bd-shihou-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/司法-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 35px;
	color: #444;
}
.bd-shihou-inner a:hover {
	transform: scale(1.1);
}
.bd-shihou-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-shihou-inner p {
	text-align: center;
}
.bd-kaikei-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/会計-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 50px;
	color: #444;
}
.bd-kaikei-inner a:hover {
	transform: scale(1.1);
}
.bd-kaikei-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-kaikei-inner p {
	text-align: center;
}
.bd-gyousei-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/行政-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 45px;
	color: #444;
}
.bd-gyousei-inner a:hover {
	transform: scale(1.1);
}
.bd-gyousei-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-gyousei-inner p {
	text-align: center;
}
.bd-zeiri-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/税理-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 45px;
	color: #444;
}
.bd-zeiri-inner a:hover {
	transform: scale(1.1);
}
.bd-zeiri-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-zeiri-inner p {
	text-align: center;
}
.bd-benri-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/弁理-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 45px;
	color: #444;
}
.bd-benri-inner a:hover {
	transform: scale(1.1);
}
.bd-benri-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-benri-inner p {
	text-align: center;
}
.bd-tyusyo-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/中小-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 45px;
	color: #444;
}
.bd-tyusyo-inner a:hover {
	transform: scale(1.1);
}
.bd-tyusyo-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-tyusyo-inner p {
	text-align: center;
}
.bd-hudo-inner a {
	display: inline-block;
	text-decoration: none;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/08/不動-明.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 150px;
	height: 150px;
	text-align: center;
	padding-top: 50px;
	color: #444;
}
.bd-hudo-inner a:hover {
	transform: scale(1.1);
}
.bd-hudo-inner {
	margin-left: auto;
	margin-right: auto;
	width: 30%;
}
.bd-hudo-inner p {
	text-align: center;
}
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #9ea7eb;
	margin: 10px;
}
.bd-gyousei {
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.bd-zeiri {
	/*width: 150px;*/
	width: auto;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #91cce9;
	margin: 10px;
}
.bd-zeiri p {
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.bd-benri {
	/*width: 150px;*/
	width: auto;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #8adacb;
	margin: 10px;
}
.bd-benri p {
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.bd-tyusyo {
	/*width: 150px;*/
	width: auto;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #84db9d;
	margin: 10px;
}
.bd-tyusyo p {
	color: #fff;
	text-align: center;
	font-weight: bold;
}
.bd-hudo {
	/*width: 150px;*/
	width: auto;
	padding-top: 2px;
	padding-bottom: 2px;
	background-color: #a3d379;
	margin: 10px;
}
.bd-hudo p {
	color: #fff;
	text-align: center;
	font-weight: bold;
}
@media (max-width: 1149px) {
	.bd-bengo {
		font-size: 1.2vw;
	}
	.bd-bengo-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-sharou {
		font-size: 1.2vw;
	}
	.bd-sharou-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-shihou {
		font-size: 1.2vw;
	}
	.bd-shihou-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-kaikei {
		font-size: 1.2vw;
	}
	.bd-kaikei-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-gyousei {
		font-size: 1.2vw;
	}
	.bd-gyousei-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-zeiri {
		font-size: 1.2vw;
	}
	.bd-zeiri-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-benri {
		font-size: 1.2vw;
	}
	.bd-benri-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-tyusyo {
		font-size: 1.2vw;
	}
	.bd-tyusyo-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
	.bd-hudo {
		font-size: 1.2vw;
	}
	.bd-hudo-inner a {
		width: 130px;
    	height: 130px;
		padding-top: 30px;
		font-size: 1.2vw;
	}
}
/*----------バッジブロック----------*/
.k-badge {
	display: flex;
	width: 50%;
	flex-wrap: wrap;
	justify-content: space-around;
	float: none;
	padding-left: 15px;
	margin-left: auto;
}
/*----------バッジレスポンシブ----------*/
@media screen and (max-width: 768px){
	.k-badge {
		margin-left: 0;
		padding-left: 0;
		width: 100%;
		padding-top: 20px !important;
	}
}
/*----------検索レスポンシブ----------*/
@media screen and (max-width: 768px){
	#kensaku {
	display: flex;
	flex-direction: column-reverse;
}
}
/*----------投稿データについて----------*/
.element_1724138753337 a {
	font-size: 1.2rem !important;
	font-weight: bold;
}
.layout-3080{
	border: solid 1px;
}
.element_1724138226005 {
	display: block;
	width: 50%;
}
.element_1724138226005 a {
	width: 100%;
}
.element_1724138753337 {
	width: 50%;
}
.post-data-title {
	float: right;
	margin-top: -45%;;
}
.element_1724138249944 {
	width: 50%;
}
.post-data-tag {
	float: right;
	margin-top: -15%;
}
.post-data-thumbnail img {
	display: block;
	width: 90%;
}
.post-data-taitle a {
	display: inline-block;
	width: 30%;
	float: right;
}
/*----------士業の投稿データ----------*/
#post-grid-3126 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3126 .item {
	width: 100% !important;
}
#post-grid-3166 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3166 .item {
	width: 100% !important;
}
#post-grid-3177 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3177 .item {
	width: 100% !important;
}
#post-grid-3182 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3182 .item {
	width: 100% !important;
}
#post-grid-3187 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3187 .item {
	width: 100% !important;
}
#post-grid-3192 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3192 .item {
	width: 100% !important;
}
#post-grid-3197 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3197 .item {
	width: 100% !important;
}
#post-grid-3208 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3208 .item {
	width: 100% !important;
}
#post-grid-3213 .grid-items {
	row-gap: 50px !important;
	place-content: center;
}
#post-grid-3213 .item {
	width: 100% !important;
}
/*----------相談内容の投稿データ----------*/
/*----------タグのデザイン----------*/
.layout-3080 .element_1724138249944 a {
	display: inline-block;
	padding: 5px 10px;
	background-color: #62c8d3;
	color: #fff;
	margin-top: 10px;
	margin-right: 10px;
	border-radius: 5px;
}
/*----------トピックブロック----------*/
#top-topic {
	background-color: #a8dcff;
	padding-top: 50px;
	padding-bottom: 50px;
	margin-top: 50px;
	float: none;
}
#toptopi-container {
	display: flex;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
.pickup h2 {
	background-color: #fff;
	width: 30%;
	/*font-size: 2.5rem;*/
	font-size: 2.25rem;
	font-weight: lighter;
	text-align: center;
	border-radius: 15px;
	letter-spacing: -5px;
	padding: 32px 15px;
	/*padding: 30px; 20px;*/
	margin-top: 0;
	margin-bottom: 0;
	/*margin-right: 30px;*/
	margin-right: 30px;
}
.pickup h2 br {
	display: block;
	content: "";
	margin: -20px;
}
.pickup {
 display: flex;
	align-items: flex-start;
	width: 45%;
	margin-left: auto;
	margin-right: auto;
}
.pickup-inner {
	margin-right: -100px;
}
.pickup-container {
	display: flex;
	width: 70%;
}
.layer-wrapper {
	background-color: transparent !important;
}
.post-grid a {
	display: inline-block;
	text-decoration: none;
	color: #444;
	font-size: 1rem;
	position: relative;
}
.post-grid a:hover {
	color: #888;
}
.element_1 {
	padding: 0 10px !important;
}
.element_2 {
	display: none !important;
}
.grid-items {
	justify-content: space-around;
}
.item {
	padding: 0 !important;
	width: 50% !important;
}
.post_date {
	width: 40% !important;
	padding-top: 20px;
}
@media only screen and (min-width: 1024px){
	#post-grid-3021 .item {
		width: 50% !important;
   flex: 50% !important;
   max-width: 100% !important;
   height: auto;
	}
}
.post-grid .layer-wrapper:before {
    display: none !important;
}
/*.pickup img {
	display: block;
	width: 55%;
}
.pickup-text p {
	color: #444;
}*/
.new-shigyou h2 {
	background-color: #fff;
	width: 30%;
	font-size: 2.25rem;
	/*font-size: 2.5rem;*/
	font-weight: lighter;
	text-align: center;
	border-radius: 15px;
	letter-spacing: -5px;
	padding: 32px; 15px;
	/*padding: 30px; 20px;*/
	margin-top: 0;
	margin-bottom: 0;
	/*margin-right: 30px;*/
	margin-right: 30px;
}
.new-shigyou h2 br {
	display: block;
	content: "";
	margin: -20px;
}
.new-shigyou {
	display: flex;
	align-items: flex-start;
	width: 45%;
	margin-left: auto;
	margin-right: auto;
}
.new-inner {
	margin-right: -100px;
}
.new-container {
	display: flex;
	width: 70%;
}
@media only screen and (min-width: 1024px){
	#post-grid-3052 .item {
		width: 50% !important;
   flex: 50% !important;
   max-width: 100% !important;
   height: auto;
	}
}
/*.new-shigyou img {
	display: block;
	width: 55%;
}
.new-text p {
	color: #444;
}
.name-text {
	padding-top: 20px;
}*/
/*----------トピックレスポンシブ----------*/
@media screen and (max-width: 768px){
	#top-topic {
		flex-direction: column;
		margin-top: 40px !important;
	}
	.pickup {
		flex-direction: column;
		width: 100%;
	}
	.pickup h2 {
		width: 100%;
		display: flex;
		justify-content: space-around;
		letter-spacing: 0;
		border-radius: 0;
		font-size: 2.2rem;
	}
.pickup h2 br {
		margin: -140px;
	}
	.pickup-container {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 30px;
	}
	.layer-content {
		margin-bottom: 30px;
	}
	.pickup-inner {
	 margin-left: auto;
		margin-right: auto;
	}
	.pickup img {
		width: 100%;
		padding-left: 10px;
	}
	.pickup-text {
		padding-left: 10%;
		margin-bottom: 40px;
		font-size: 12px;
		padding-top: 5px;
	}
	.name-text {
		padding-top: 5px;
		font-size: 13px;
	}
	.new-shigyou {
		flex-direction: column;
		width: 100%;
	}
	.new-shigyou h2 {
		width: 100%;
		display: flex;
		justify-content: space-around;
		letter-spacing: 0;
		border-radius: 0;
		font-size: 2.2rem;
	}
	.new-shigyou h2 br {
		margin: -140px;
	}
	.new-container {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-top: 30px;
	}
	.new-inner {
		margin-left: auto;
		margin-right: auto;
	}
	.new-shigyou img {
		width: 100%;
		padding-left: 10px;
	}
	.new-text {
		padding-top: 5px;
		padding-left: 10%;
		font-size: 12px;
	}
}
/*----------ブログブロック----------*/
#top-blog {
    margin-top: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto;
}
#post-grid-3084 h2 {
	margin-top: 0;
}
#post-grid-3084 .grid-items {
	justify-content: space-between;
}
#post-grid-3084 .layer-wrapper {
	margin-left: auto;
	margin-right: auto;
	width: 70%;
}
.layout-3088 .element_1724141277383 a {
	font-size: 1.5rem;
	border-bottom: solid 1.5px;
	margin-bottom: 15px;
}
#blog-data-inner {
	width: 100% !important;
}
/*.layout-3088 .content {
	height: 100px !important;
}*/
.layout-3088 .element_1724141280483 {
	color: #777;
	border-bottom: solid 1px;
	width: 28%;
	margin-top: 15px;
}
/*#top-blog img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 320px;
}
.blog-h {
	width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.blog-h a {
	font-size: 1.2rem;
	color: #444;
}
.blog-o {
	width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.blog-o a {
	text-decoration: none;
	color: #444;
}
.blog-date {
	width: 320px;
	margin-left: auto;
	margin-right: auto;
}
.blog-date time {
	display: inline;
	color: #888;
	border-bottom: solid 1px #666;
}*/
/*----------ブログレスポンシブ----------*/
@media screen and (max-width: 768px){
	#top-blog {
		flex-direction: column;
	}
	.blog-1 {
		margin-bottom: 20px;
	}
	.blog-2 {
		margin-bottom: 20px;
	}
}
/*----------相談内容ブロック----------*/
#top-consultation {
    margin-top: 20px;
    margin-bottom: 80px;
    width: 100%;
    max-width: 1400px;
    margin: 20px auto 80px auto;
}
#top-consultation h3 {
	font-size: 2rem;
	font-weight: normal;
	padding-left: 30px;
	position: relative;
	margin: 0;
	color: #444;
}
#top-consultation h3::after {
	display: block;
	content: "";
	width: 250px;
	height: 12px;
	background-color: #ffffff;
	border-top: solid 3px #8fcaf6;
	border-bottom: solid 3px #8fcaf6;
	position: absolute;
	top: 50px;
	left: 10px;
}
/*----------相談内容トップ部分----------*/
.consul-text p {
	display: inline-block;
	padding-top: 25px;
	/*font-weight: lighter;*/
	width: 270px;
	text-align: center;
	color: #8e8e8e;
	font-size: 14px;
}
.consul-big01 {
	width: 33%;
	margin-left: 50px;
}
.consul-big01 p {
	text-align: center;
	margin-top: -50px;
	color: #444;
}
.consul-big01 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.consul-big02 {
	width: 33%;
}
.consul-big02 p {
	text-align: center;
	margin-top: -50px;
	color: #444;
}
.consul-big02 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.consul-big03 {
	width: 33%;
}
.consul-big03 p {
	text-align: center;
	margin-top: -50px;
	color: #444;
}
.consul-big03 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.consul-top {
	display: flex;
	align-items: center;
	margin-left: 50px;
}
/*----------相談内容メイン部分----------*/
.consul-00 {
	width: 15%;
	margin: 20px 10px;
}
.consul-00 p {
	text-align: center;
	margin-top: -40px;
	color: #444;
}
.consul-00 img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.consul-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
/*----------登録士業一覧ボタン----------*/
.consul-btn a {
	font-size: 2rem;
	font-weight: normal;
	padding-left: 30px;
	padding-right: 37px;
	position: relative;
	margin: 0;
}
.consul-btn a::after {
	display: block;
	content: "";
	width: 250px;
	height: 12px;
	background-color: #ffffff;
	border-top: solid 3px #8fcaf6;
	border-bottom: solid 3px #8fcaf6;
	position: absolute;
	top: 50px;
	left: 10px;
}
.consul-btn a {
	display: inline-block;
	text-decoration: none;
	color: #444;
	background-image: url("https://soudannavi.com/wp-content/uploads/2024/07/btn-img.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right;
}
.consul-btn {
	width: 31%;
	margin-top: 50px;
	margin-left: auto;
}
/*----------相談内容レスポンシブ----------*/
@media screen and (max-width: 768px){
	.consul-top {
		flex-direction: column;
		margin-left: 0;
	}
	.consul-big01 {
		margin-left: 0;
		width: 100%;
		margin-top: 20px;
	}
	.consul-big02 {
		width: 100%;
		margin-top: 40px;
	}
	.consul-big03 {
		width: 100%;
		margin-top: 40px;
	}
	.consul-00 {
		width: 151px !important;
	}
	.consul-btn {
		width: 100% !important;
		margin-left: 10%;
	}
}

/*----------掲載希望ブロック----------*/
#top-publish {
	margin-top: 80px;
	margin-bottom: 80px;
}
#top-publish h5 {
	font-size: 1.5rem;
	font-weight: normal;
	color: #444;
	margin: 0;
	text-align: center;
	position: relative;
}
#top-publish h5::before {
	content: "＼＼";
	color: #8fcaf6;
	position: absolute;
	left: 30%;
}
#top-publish h5::after {
	content: "／／";
	color: #8fcaf6;
	position: absolute;
	left: 65%;
}
/*----------キャッチコピー----------*/
.pb-cc {
	width: 70%;
	background-color: #8fcaf6;
	padding: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	border-radius: 5px;
	position: relative;
}
.pb-cc::after {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/yobikomi.png");
	position: absolute;
	top: -42px;
	right: -2px;
}
.pb-cc p {
	text-align: center;
	font-weight: 300;
  color: #222;
	font-size: 1.5rem;
	text-shadow:
    2px 3px 2px #fff,
    -2px 3px 2px #fff,
    -3px -3px 2px #fff,
    3px -2px 2px #fff;
}
/*----------PRテキスト----------*/
.pb-pr {
	display: flex;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.pb-pr p {
	display: inline-block;
	width: 50%;
 text-align: center;
	font-size: 1.2rem;
	color: #444;
	position: relative;
	/*border-bottom: solid 2px #8fcaf6;*/
}
.pb-pr p::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/キラキラアイコン.png");
	position: absolute;
	left: -10px;
	top: -10px;
}
/*----------申込導線----------*/
.pb-sale {
	margin-top: 60px;
}
.pb-sale p {
	color: #ee4847;
	font-size: 1.4rem;
	text-align: center;
}
/*----------申込ボタン----------*/
.pb-btn a {
	display: inline-block;
	text-decoration: none;
	text-align: center;
	background-color: #f4be83;
	color: #fff;
	padding: 25px 40px;
	border-radius: 10px;
	font-size: 1.2rem;
	width: 400px;
	margin-left: auto;
	margin-right: auto;
}
.pb-btn a:hover {
	letter-spacing: 0.15em;
}
.pb-btn {
	width: 400px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}

/*----------掲載トップレスポンシブ----------*/
@media screen and (max-width: 768px){
	.pb-cc {
		width: 100% !important;
		margin-top: 20px !important;
	}
	.pb-cc p {
		font-size: 1.1rem !important;
	}
	.pb-cc::after {
		display: none;
	}
	.pb-pr {
		flex-direction: column;
		width: 100% !important;
	}
	.pb-pr p {
		width: 100% !important;
		font-size: 14px !important;
		padding-left: 30px;
	}
.pb-pr p::before {
		left: 5px !important;
	}
.pb-sale {
		font-size: 18px !important;
	margin-top: 40px !important;
	}
	.pb-review {
		flex-direction: column;
		margin-top: 20px;
	}
	.review01 {
		flex-direction: column;
		width: 100% !important;
	}
	.review-name {
		margin: 0;
	}
	.review-left {
		width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.review-left img {
		width: 100%;
	}
	.review-name {
		width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.review-name p {
		width: 30%;
		font-size: 16px;
	}
	.review-right {
		width: 100%;
		margin-top: 10px;
		text-align: center;
		margin-bottom: 20px;
	}
	.pb-btn {
		width: 100% !important;
	}
	.pb-btn a {
		width: 100% !important;
	}
	#top-publish {
		margin-bottom: 20px;
		margin-top: 20px;
	}
	#top-publish h5::before {
		left: 0 !important;
	}
	#top-publish h5::after {
		right: -20% !important;
	}
}
/*----------掲載希望のレスポンシブ----------*/

/*----------申し込みフォーム----------*/


.CF7_req {
	color: #ee4847;
	padding-left: 5px;
}
/*----------送信ボタン----------*/
input[type=submit] {
	display: inline-block;
	background-color: #f4be83;
	border: none;
	width: 150px;
	height: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	color: #fff;
}

.wpcf7-spinner {
	display: none;
}
.submit-btn  {
	margin-top: 30px;
}
.submit-btn p {
	text-align: center;
}
.submit-text p {
	text-align: center;
}


/*----------よくある質問ポンシブ----------*/
@media screen and (max-width: 768px){
	.qa-base {
	margin-top: 30px;
}
}

/*----------士業紹介ページ----------*/
#introduction {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
.introduction-top {
	display: flex;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-around;
	align-items: center;
}
/*.introduction-top {
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    align-items: center;
}*/
/*------2025.0520追記------*/
.id-face {
    width: 30%;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.id-face {
    width: 100%;
    margin: 0 auto;
}

	.acf-office {
    font-size: 1rem !important;
}
}
/*----------紹介dlについて----------*/
.id-dl {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	/*margin-top: 50px;*/
}
.id-dl dl {
	display: flex;
	margin: 0;
}
.id-dl dt {
	margin: 0;
	border: solid 3px #8fcaf6;
	padding: 20px 40px;
	margin-left: auto;
	margin-right: auto;
	width: 20%;
	text-align: center;
}
.dl-nth2 dt {
	border-top: none;
	border-bottom: none;
}
.id-dl dd {
	margin: 0;
	border-top: solid 3px #8fcaf6;
	border-bottom: solid 3px #8fcaf6;
	border-right: solid 3px #8fcaf6;
	padding: 20px 40px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.dl-nth2 dd {
	border-top: none;
	border-bottom: none;
}
/*----------タブメニュー----------*/
/*tabの形状*/
#introduction-tab {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
}
.tab{
	width: 85%;
	max-width: 1400px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
}
.tab li {
	list-style: none;
	width: 25%;
}
.tab li a{
	display: block;
	background: #fff;
	margin:0 2px;
	padding-top:10px;
	padding-bottom: 10px;
	padding-left: 110px;
	text-decoration: none;
	text-align: center;
	font-size: 1.1rem;
}
/*未登録のリスト*/
.mitouroku {
	display: none;
}
.li-mitouroku a {
	pointer-events: none;
	color: #888;
}
/*メニューが開いた時のリストの表示*/
.area.is-active li {
	list-style: none;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background: #8fcaf6;
	color: #fff;
}
.tab li.active:first-child::before{
	filter: brightness(1000%);
}
.tab li.active:nth-child(2)::before{
	filter: brightness(1000%);
}
.tab li.active:nth-child(3)::before{
	filter: brightness(1000%);
}
.tab li.active:last-child::before{
	filter: brightness(1000%);
}
/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	background: #fff;
	padding:50px 50px;
}
/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
	  width: 80%;
	  margin-left: auto;
	  margin-right: auto;
	  height: 100%;
}
/*それぞれの項目デザイン*/
.tokui-li {
	width: 1400px;
}
.tokui-li ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1400px;
}
.tokui-li img {
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.tokui-li p {
	text-align: center;
	margin-top: -40px;
}
/*項目リストのレイアウト*/
.tab li:first-child {
	position: relative;
}
.tab li:first-child::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-introduction.png");
	position: absolute;
	top: 5px;
	left: 10px;
}
.tab li:nth-child(2) {
	position: relative;
}
.tab li:nth-child(2)::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-area.png");
	position: absolute;
	top: 5px;
	left: 10px;
}
.tab li:nth-child(3) {
	position: relative;
}
.tab li:nth-child(3)::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-category.png");
	position: absolute;
	top: 5px;
	left: 10px;
}
.tab li:last-child {
	position: relative;
}
.tab li:last-child::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-access.png");
	position: absolute;
	top: 5px;
	left: 10px;
}
/*map*/
.wp-embed-responsive .wp-has-aspect-ratio iframe {
	height: 400px;
}
.wp-embed-aspect-4-3 wp-has-aspect-ratio {
	height: 400px;
}
.wp-embed-responsive .wp-embed-aspect-4-3 .wp-block-embed__wrapper:before {
	padding-top: 400px;
}
.acf-comment iframe {
	width: 100%;
}
@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.ys-toc {
	display: none;
}
/*----------紹介お問い合わせ----------*/
.id-contact {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
}
.id-contact h3 {
	font-size: 1.5rem;
	position: relative;
	padding-bottom: 20px;
}
.id-contact h3::after {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/hukidasi.png");
	position: absolute;
	top: -10px;
	left: 170px;
}
.id-contact-container {
	height: 100%;
	background-color: #8fcaf6;
	border-radius: 20px;
}
.id-contact-inner1 {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-around;
	height: 230px;
	padding-top: 50px
}
.id-mail {
	background-color: #fff;
	width: 100%;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.id-tel  {
	background-color: #fff;
	width: 100%;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}
.id-mail p {
	text-align: center;
	padding-left: 22%;
	padding-top: 10%;
}
.id-tel p {
	text-align: center;
	padding-left: 22%;
	padding-top: 10%;
}
.id-mail-btn {
	position: relative;
}
.id-mail-btn-mitouroku {
	position: relative;
}
.id-mail-btn::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/mail-icon-1.png");
	position: absolute;
	left: 20px;
	top: -10px;
}
.id-mail-btn-mitouroku::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/mail-icon-1.png");
	position: absolute;
	left: 20px;
	top: -10px;
}
.id-mail-btn-mitouroku a {
	pointer-events: none;
	text-decoration: none;
	display: inline-block;
	width: 200px;
	height: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	background-color: #d5d5d5;
	color: #fff;
	border-radius: 100px;
	margin-left: 35%;
	margin-top: 10px;
}
.id-mail-btn a {
	text-decoration: none;
	display: inline-block;
	width: 200px;
	height: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	background-color: #62c8d3;
	color: #fff;
	border-radius: 100px;
	margin-left: 35%;
	margin-top: 10px;
}
.id-tel-btn {
	position: relative;
}
.id-tel-btn::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tel-icon-1.png");
	position: absolute;
	left: 20px;
	top: -10px;
}
.id-tel-btn a {
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
	color: #62c8d3;
	margin-left: 35%;
	margin-top: 10px;
}
.tel-hissu p {
	font-size: 12px;
	color: #ee4847;
	padding: 0;
}
.tel-hissu {
	padding-left: 18%;
}
.id-tel-btn a[href^="tel:"]{
    pointer-events: none;
  }
.id-contact-inner2 {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	padding-bottom: 50px;
}
/*------2025.0520追記------コメントアウトが元------*/
.id-contact-inner2 dl {
    display: flex;
    /* color: #fff; */
    border-radius: 5px;
    background-color: #fff;
    padding: 5px 0;
}
/*.id-contact-inner2 dl {
	display: flex;
	color: #fff;
	border-radius: 5px;
}*/
.id-contact-inner2 dt {
    margin: 0;
    width: 20%;
    padding-left: 20px;
    color: #8fcaf6;
    border-right: solid 1.7px #8fcaf6;
}
/*.id-contact-inner2 dt {
	margin: 0;
	width: 20%;
	padding-left: 20px;
}*/
.id-contact-inner2 dd {
    width: 65%;
    /* margin-right: 20% !important; */
    margin-left: 5% !important;
    color: #8fcaf6;
    font-weight: bold;
}
/*.id-contact-inner2 dd {
	width: 65%;
}*/
.dl-bg-white {
	background-color: #fff;
	color: #8fcaf6 !important;
	padding-top: 15px;
	padding-bottom: 15px;
}
.dl-bg-white dt {
	padding-left: 20px;
}
.hp-yes a {
	text-decoration: none;
	color: #fff;
}
.hp-mitouroku a {
	text-decoration: none;
	pointer-events: none;
	color: #fff;
}
/*----------士業紹介のレスポンシブ----------*/
@media screen and (max-width: 768px){
	.introduction-top {
		flex-direction: column;
	}
	.id-face img {
		margin-left: auto;
		margin-right: auto;
	}
	.id-text {
		width: 100%;
		padding-left: 0;
	}
	.id-shigyou {
		margin-top: 20px;
		width: 100%;
	}
	.id-text h1 {
		padding-top: 20px;
	}
	.id-line {
		width: 100%;
		display: flex;
		align-items: center;
		padding-right: 0;
		margin-top: 20px;
	}
	.id-line p {
		padding-top: 0;
	}
	.id-line img {
		margin-left: -15px;
		width: 100%;
	}
	/*----------タブメニュー----------*/
	.tab {
		width: 100%;
	}
	.area.is-active {
		width: 100%;
	}
	.tab li a {
		padding-left: 0;
		font-size: 1rem;
	}
	ul.tab {
		padding: 0;
	}
	.tab li:first-child::before {
		filter: opacity(25%);
	}
	.tab li:nth-child(2)::before {
		filter: opacity(25%);
	}
	.tab li:nth-child(3)::before {
		filter: opacity(25%);
	}
	.tab li:last-child::before {
		filter: opacity(25%);
	}
	.tab li.active:first-child::before {
		filter: opacity(0%);
	}
	.tab li.active:nth-child(2)::before {
		filter: opacity(0%);
	}
	.tab li.active:nth-child(3)::before {
		filter: opacity(0%);
	}
	.tab li.active:last-child::before {
		filter: opacity(0%);
	}
	.area {
		padding: 20px 10px;
	}
	.tokui-li ul {
		width: 30%;
	}
	.area.is-active li {
		padding-top: 40px;
	}
	.area.is-active h2 {
		margin-top: 20px;
	}
	.id-dl {
		margin-top: 20px;
		width: 100%;
	}
	.id-dl dt {
		width: 40%;
	}
	.id-contact  {
		width: 100%;
	}
	.id-contact h3 {
		margin-top: 30px;
	}
	.id-contact-container {
		height: 100%;
	}
	.id-contact-inner1 {
		flex-direction: column;
		padding-top: 300px !important;
	}
	.id-mail {
		border-bottom-left-radius: 0;
		border-top-right-radius: 5px;
		padding-bottom: 30px;
	}
	.id-mail p {
		padding-left: 0;
	}
	.id-mail-btn {
		width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
	.id-mail-btn-mitouroku {
		width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
	.id-mail-btn a {
		margin-left: auto;
		margin-right: auto;
		margin-top: 120px;
	}
	.id-mail-btn-mitouroku a {
		margin-left: auto;
		margin-right: auto;
		margin-top: 120px;
	}
	.id-mail-btn::before {
		top: 10px;
		left: 50px;
	}
	.id-mail-btn-mitouroku::before {
		top: 10px;
		left: 50px;
	}
	.id-tel {
		padding-bottom: 30px;
		border-top-right-radius: 0;
		border-bottom-left-radius: 5px;
	}
	.id-tel p {
		padding-left: 0;
		padding-top: 0;
	}
	.id-tel-btn {
		width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
	.id-tel-btn a {
		display: inline-block;
		width: 200px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		margin-top: 100px;
	}
	.id-tel-btn::before {
		top: 10px;
		left: 50px;
	}
	.id-tel-btn a[href^="tel:"]{
    pointer-events: auto;
  }
	.id-contact-inner2 {
		margin-top: 280px;
		width: 100%;
		padding-bottom: 20px;
	}
	.id-contact-inner2 dl {
		flex-direction: column;
	}
	.id-contact-inner2 dt {
		width: 100%;
		padding-left: 0;
		text-align: center;
	}
	.id-contact-inner2 dd {
		width: 100%;
		margin: 0;
		text-align: center;
	}
	.tel-hissu {
		padding-left: 0;
	}
}
@media screen and (max-width: 768px) {
    .id-contact-inner2 dl {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .id-contact-inner2 dt {
        border-right: none;
        border-bottom: solid 1.7px #8fcaf6;
    }
}

@media screen and (max-width: 768px) {
    .id-contact-inner2 dd {
        margin-left: 0 !important;
        padding-top: 5px;
    }
}
/*----------士業リストページ----------*/
#sigyo-list {
	width: 100%;
	/*max-width: 1400px;*/
	margin-left: auto;
	margin-right: auto;
}
#sigyo-list-container {
	width: 80%;
	max-width: 1400px;
	margin: 30px auto 10px auto;
}
.list-flex {
	display: flex;
	align-items: center;
	/*margin-bottom: 40px;*/
	width: 80%;
	max-width: 1400px;
	margin: 80px auto 40px auto;
}
.list-flex img {
	display: block;
}
.list-flex h2 {
	font-size: 2rem;
	margin: 0;
	padding-left: 30px
}
.list-code {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
.list-code a {
	text-decoration: none;
	color: #444;
}
.list-code a:hover {
	color: #8fcaf6;
}
.list-h1 h1 {
	text-align: center;
	font-size: 2rem;
}
/*----------士業リストレスポンシブ----------*/
@media screen and (max-width: 768px){
	.list-flex h2 {
		display: inline-block;
	font-size: 1.5rem;
	margin: 0;
		width: 100%;
		padding-left: 0;
		text-align: center;
}
#sigyo-list {
		margin-top: -30px !important;
	}
}
/*----------各投稿見出し指定----------*/
.post-title h1 {
	margin: 0;
	padding-left: 30px;
	font-size: 2rem;
	color: #444;
}
#post-flex-sigyou {
	display: flex;
	align-items: center;
}
#post-flex-sigyou img {
	display: block;
	width: 12%;
}
#post-flex-consul {
	display: flex;
	align-items: center;
}
#post-flex-areaar img {
	display: block;
	width: 10%;
}
#post-flex-areaar {
	display: flex;
	align-items: center;
}
/*----------投稿データの指定----------*/
.layout-3088 .content {
	height: 70px;
}
/*----------ブログ投稿の指定----------*/
#blog-data-inner {
	width: 80%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
#blog-data-inner h1 {
	margin: 0 !important;
}
.blog-h {
	margin-top: 50px !important;
	margin-bottom: 30px !important;
	background-color: #8fcaf6;
	padding: 12px 10px;
	color: #fff;
}
#blog-article p {
	padding-top: 15px;
}
#blog-article dl {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 5px 0;
	padding-left: 30px;
	padding-right: 30px;
}
#blog-article dt {
	margin-top: 0;
	width: 20%;
}
#blog-article dd {
	width: 80%;
}
/*----------投稿データAFCに追加指定----------*/
.id-text-flex {
	display: flex;
	margin-bottom: 20px;
}
.id-shigyoumei {
	width: 30%;
}
.id-number {
	width: 30%;
	text-align: center;
}
.id-line-sp {
	display: none;
}
/*----------士業名のタグ----------*/
.id-shigyou-bengo {
	width: 100%;
}
.id-shigyou-bengo p {
	color: #fff;
	text-align: center;
	background-color: #faa5a6;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-tyusyo {
	width: 100%;
}
.id-shigyou-tyusyo p {
	color: #fff;
	text-align: center;
	background-color: #84db9d;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-zeiri {
	width: 100%;
}
.id-shigyou-zeiri p {
	color: #fff;
	text-align: center;
	background-color: #91cce9;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-syarou {
	width: 100%;
}
.id-shigyou-syarou p {
	color: #fff;
	text-align: center;
	background-color: #f7acc4;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-gyousei {
	width: 100%;
	margin-bottom: 20px;
}
.id-shigyou-gyousei p {
	color: #fff;
	text-align: center;
	background-color: #9ea7eb;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-shihou {
	width: 100%;
}
.id-shigyou-shihou p {
	color: #fff;
	text-align: center;
	background-color: #f6a4e7;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-kaikei {
	width: 100%;
}
.id-shigyou-kaikei p {
	color: #fff;
	text-align: center;
	background-color: #c59bef;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-benri {
	width: 100%;
}
.id-shigyou-benri p {
	color: #fff;
	text-align: center;
	background-color: #8adacb;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
.id-shigyou-fudo {
	width: 100%;
}
.id-shigyou-fudo p {
	color: #fff;
	text-align: center;
	background-color: #a3d379;
	width: 	100%;
	border-radius: 3px;
	margin-bottom: 5px;
}
/*----------会計、弁理、不動の士業タグをページ完成後に追加----------*/
.id-line {
	width: 25%;
	margin-left: auto;
	margin-right: auto;
	padding-right: 50px;
}
.id-line img {
	display: block;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}
.id-line p {
	text-align: center;
	padding-top: 30px;
}
/*----------ACFテキストの追加指定----------*/
.acf-charge {
	font-size: 2rem;
}
.acf-office {
	font-size: 1.5rem;
}
/*----------投稿データページの新規指定----------*/
.su-posts-default-loop .su-post-thumbnail {
	width: 300px !important;
	height: 300px !important;
}
.su-post-thumbnail img {
	max-width: 300px!important;
	max-height: 300px!important;
}
#post-intro {
	display: flex;
	justify-content: space-between;
}
.intro-office a {
	text-decoration: none;
	color: #444;
	font-weight: bold;
	font-size: 1.2rem;
}
.intro-charge a {
	text-decoration: none;
	color: #444;
	font-weight: bold;
	font-size: 1.5rem;
}
.acfdl1-intro dt {
	display: none;
	font-weight: normal;
}
.intro-mark {
	display: block;
	width: 50%;
}
.intro-access {
	width: 100%;
}
.intro-inner {
	width: 90%;
}
.intro-tag a {
	text-decoration: none;
	padding: 5px 10px;
	background-color: #62c8d3;
	color: #fff;
	margin-right: 10px;
	border-radius: 5px;
}
.intro-tag {
	margin-top: 20px;
	margin-left: 20px;
}
/*----------投稿データレスポンシブ----------*/
@media screen and (max-width: 768px){
	#post-intro {
		flex-direction: column;
	}
	.su-posts-default-loop .su-post-thumbnail {
		float: none !important;
		margin-left: auto;
		margin-right: auto !important;
	}
	.intro-inner {
		margin-left: auto;
		margin-right: auto;
	}
	.intro-mark {
		margin-left: auto !important;
		margin-right: auto !important;
		width: 100% !important;
	}
	.acfdl1-intro dd {
		margin: 0 !important;
	}
	.intro-charge {
		padding-top: -300px !important;
	}
	.intro-tag {
		margin-top: -30px !important;
		margin-left: 10px; !important;
	}
	.intro-tag a {
		margin-right: 10px;
		white-space: nowrap;
		line-height: 35px;
	}
}
/*----------投稿ACFレスポンシブ----------*/
@media screen and (max-width: 768px){
	.introduction-top {
		width: 100% !important;
	}
	.id-line {
		width: 100% !important;
		margin-top: 0 !important;
	}
	.id-text-flex {
		margin-left: 0 !important;
		/*margin-top: 30px;*/
		margin-top: 10px;
		flex-direction: column;
	}
	#introduction-tab {
		margin-top: 20px !important;
	}
	.id-shigyoumei {
		width: 100% !important;
	}
	.id-number {
		width: 100% !important;
		text-align: start;
	}
	.su-posts-default-loop {
		margin-top: -30px !important;
	}
	.su-post {
		margin-bottom: 0 !important;
	}
	.id-shigyou-bengo p {
	padding: 5px 0;
	}

	.id-shigyou-tyusyo p {
		padding: 5px 0;
	}

	.id-shigyou-zeiri p {
		padding: 5px 0;
	}

	.id-shigyou-syarou p {
		padding: 5px 0;
	}

	.id-shigyou-gyousei p {
		padding: 5px 0;
	}

	.id-shigyou-shihou p {
		padding: 5px 0;
	}

	.id-shigyou-kaikei p {
		padding: 5px 0;
	}

	.id-shigyou-benri p {
		padding: 5px 0;
	}

	.id-shigyou-fudo p {
		padding: 5px 0;
	}
}
/*----------トップのブログレイアウト----------*/
@media screen and (max-width: 768px) {
	#post-grid-3084 .item {
	margin-bottom: 35px;
}
}
/*----------ブログACFレスポンシブ----------*/
@media screen and (max-width: 768px) {
	#blog-article dl {
		flex-direction: column;
		padding-left: 10px !important;
		padding-right: 10px !important;
		align-items: normal;
	}
	#blog-article dt {
		width: 100% !important;
	}
}
/*----------士業の声ポストグリッド----------*/
.layout-3366 {
	display: flex;
	height: 280px;
}
.layout-3366 h2 {
	display: none;
}
.voice-title {
	display: none;
}
.voice-img a {
	width: 100% !important;
}
.voice-next a {
	padding-top: 100px;
}
.layout-3366 .element_1725487692041 {
	position: absolute;
	bottom: -5px;
	right: 5%;
}
#post-grid-3367 .content {
	display: block !important;
}
#post-grid-3367 .grid-items {
	display: flex !important;
	flex-direction: column !important;
}
@media only screen and (min-width: 1024px){
	#post-grid-3367 .item {
	 width: 100% !important;
   flex: 100% !important;
   max-width: 100% !important;
   height: auto;
		margin-left: 20px;
		margin-bottom: 50px;
	}
	}
@media only screen and (min-width: 1024px) {
	.layout-3366 .element_1725430459760 {
		display: block;
		width: 30% !important;
		height: 100% !important;
	}
	.voice-content {
		width: 100% !important;
	}
	}
.pb-review {
    /* margin-top: 80px; */
    max-width: 1400px;
    margin: 80px auto 0 auto;
}
.layout-3366 .element_1725445727961 {
    /*overflow: hidden;*/
    width: 32% !important;
}
  .element_1725445735213{
		height: 250px;
		overflow: hidden;
}
.element_1725445735213 p {
	padding-left: 30px !important;
	width: 95%;
}
#post-grid-3367 h1 {
	background: linear-gradient(to right, #90caf6 0%, #8adacb 100%);
	padding-bottom: 10px !important;
	padding-top: 10px !important;
	padding-left: 20px;
	margin-bottom: 27px !important;
}
/*----------掲載士業の声レスポンシブ----------*/
@media screen and (max-width: 768px) {
	.layout-3366 {
		flex-direction: column;
		height: auto;
	}
	#post-grid-3367 .item {
		width: 100% !important;
	}
	.layout-3366 .element_1725445727961 {
		display: none;
		width: 100% !important;
	}
	.item-4055 {
		margin-top: 60px !important;
	}
	.layout-3366 .element_1725487692041 {
		bottom: -5px !important;
	}
	.layout-3366 {
		height: 300px !important;
	}
	.pb-review {
		margin-top: 30px !important;
	}
}
/*----------検索窓新規----------*/
.shiconare {

}
.shiconare ul {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
}
.shiconare li {
	list-style: none;
	width: 45%;
	margin-right: 5%;
	margin-bottom: 5%;
}
.shiconare h4 {
	margin-top: 25px;
	display: none;
}
.shiconare li:first-child {
	color: #444;
}
.shiconare li:nth-child(2) {
	color: #444;
}
.shiconare li:nth-child(3) {
	color: #444;
}
.shiconare li:nth-child(4) {
	color: #444;
}
.shiconare li:last-child {
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
}
/*----------検索窓新規----------*/
.kensaku-right {
	width: 50%;
}
.k-badge {
	width: 100% !important;
}
.kensaku-column {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
#k-map {
	width: 90%;
	margin-top: 0;
	margin-bottom: 50px;
}
/*----------検索窓新規レスポンシブ----------*/
@media screen and (max-width: 768px) {
	.kensaku-column {
		flex-direction: column;
	}
	.kensaku-right {
	 width: 100%;
}
	#k-map {
		width: 100%;
		padding-top: 50px;
	}
	.shiconare ul {
	justify-content: space-between;
	width: 100%;
	padding: 0 !important;
}
	.shiconare li {
		width: 48%;
		margin-right: 0;
	}
	.kensaku-left {
		display: flex;
		flex-direction: column-reverse;
	}
}
@media screen and (max-width: 768px){
	.id-line {
		display: none;
	}
	.id-line-sp {
		display: block;
		margin-top: 20px;
	}
}
/*----------newtab----------*/
#introduction-tab {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
}
.tab-group {
    margin-top: 20px;
    /* タブ全体の幅 */
    width: 80%;
    list-style: none;
	margin-left: auto;
	margin-right: auto;
}
.tab-button {
    display: flex;
    justify-content: space-between;
	  width: 100% !important;
    list-style: none;
    /* カーソル形状を指先にする */
    cursor: pointer;
	padding: 0 !important;
}
.tab-button li {
	display: inline-block;
	text-align: center;
	font-size: 16px;
	padding-top: 12px;
	padding-bottom: 12px;
}
.tab-button .is-active {
    background: #90caf6;
	color: #fff;
	font-weight: bold;
}
.tab {
    width: calc(100% / 4);
    padding: 8px;
    border-bottom: none;
	  color: #0075af;
}
.tab-contents {
    border-top: none;
    background: #fff;
}
.tab-contents h2 {
	margin-bottom: 30px;
	margin-top: 0;
}
.content {
    display: none;
    text-align: left;
}
.content.is-display {
    display: block;
    height: 100%;
	  padding-bottom: 60px;
	  padding-left: 50px;
	  padding-right: 50px;
	  padding-top: 60px;
}
/*----------liのアイコン指示----------*/
.tab-button li:first-child {
	position: relative;
}
.tab-button li:first-child::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-introduction.png");
	position: absolute;
	top: 5px;
	left: 15px;
}
.tab-button li:nth-child(2) {
	position: relative;
}
.tab-button li:nth-child(2)::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-area.png");
	position: absolute;
	top: 5px;
	left: 15px;
}
.tab-button li:nth-child(3) {
	position: relative;
}
.tab-button li:nth-child(3)::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-category.png");
	position: absolute;
	top: 5px;
	left: 15px;
}
.tab-button li:last-child {
	position: relative;
}
.tab-button li:last-child::before {
	content: url("https://soudannavi.com/wp-content/uploads/2024/07/tab-access.png");
	position: absolute;
	top: 5px;
	left: 15px;
}
/*----------liのアイコンのアクティブ指示----------*/
.tab-button li.is-active:first-child::before{
	filter: brightness(1000%);
}
.tab-button li.is-active:nth-child(2)::before{
	filter: brightness(1000%);
}
.tab-button li.is-active:nth-child(3)::before{
	filter: brightness(1000%);
}
.tab-button li.is-active:last-child::before{
	filter: brightness(1000%);
}
/*----------未登録のli指定----------*/
.mitouroku {
	display: none;
}
.li-mitouroku {
	pointer-events: none !important;
	color: #888;
}
/*----------tabレスポンシブ指定----------*/
@media screen and (max-width: 768px) {
	.tab-group {
		width: 100%;
		margin-top: 40px;
	}
	.tab-button li {
		display: inline-block;
		text-align: right;
		padding-left: 0 !important;
	}
	.tab-button li:first-child::before {
		left: 5px !important;
		opacity: 0.5;
	}
	.tab-button li:nth-child(2)::before {
		left: 5px !important;
		opacity: 0.5;
	}
	.tab-button li:nth-child(3)::before {
		left: 5px !important;
		opacity: 0.5;
	}
	.tab-button li:last-child::before {
		left: 5px !important;
		opacity: 0.5;
	}
	.tab-contents iframe {
		height: 300px !important;
	}
	.content.is-display {
		padding: 20px 10px !important;
	}
	.tab-contents h2 {
		margin-bottom: 10px;
	}
}
/*----------タブの追加レイアウト指定----------*/
.mark-sikaku-container {
	display: flex;
}
.mark-sikaku {
	display: block;
	width: 15%;
	position: relative;
}
.mark-sikaku::before {
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background-color: #5da2d3;
	position: absolute;
	top: 6px;
	left: -30px;
}
/*----------タブの追加レイアウトレスポンシブ----------*/
@media screen and (max-width: 768px){
	.mark-sikaku-container {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		justify-content: space-around;
		flex-wrap: wrap;
		padding: 20px 10px;
	}
	.mark-sikaku {
		width: 30%;
	}
}
/*----------投稿一覧で表示されるタブの追加レイアウト----------*/
.intro-field .mark-sikaku-container {
	flex-wrap: wrap;
	padding-left: 9%;
}
.intro-field .mark-sikaku {
	width: 40%;
}
/*----------投稿一覧で表示されるタブの追加レイアウト----------*/
@media screen and (max-width: 768px){
	.intro-field .mark-sikaku-container {
		padding: 0;
		justify-content: start;
		width: 80%;
	}
	.intro-field .mark-sikaku {
		width: 50%;
	}
}
/*20250214追加お知らせページ*/
h2.knews-title {
	margin: 0;
}
.knewspage-h1 {
	background-image: url(https://soudannavi.com/wp-content/uploads/2025/03/newspage-h1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    width: 100%;
}
.knewspage-h1 h1 {
	text-align: center;
	padding-top: 135px;
	color: #fff;
	margin: 0;
}
#kaiketsu-news p {
	padding: 15px 0 0 0;
}
#kaiketsu-news .su-posts-default-loop {
	display: flex;
	flex-wrap: wrap;
	margin: 50px 0 0 0;
	justify-content: space-around;
}
#kaiketsu-news .su-posts.su-posts-default-loop .su-post {
	width: 48% !important;
	border: solid 1.5px #90caf6;
	background-color: #90caf6;
	/*padding: 0 20px;*/
	min-width: 535px;
}
#kaiketsu-news .su-posts.su-posts-default-loop .su-post .su-post-thumbnail {
	/*margin-right: 0 !important;*/
	/*margin-right: 15px;
	margin-left: -15px;*/
	/*width: 50% !important;*/
}
#kaiketsu-news .su-posts-default-loop h2.su-post-title {
	margin-top: 40px;
}
.su-post-title a {
	color: #fff;
	text-decoration: none;
}
#kaiketsu-news .su-posts-default-loop .su-post-excerpt {
	margin-right: 10px;
	margin-top: 15px;
	height: 155px;
	overflow: hidden;
}
#kaiketsu-news .su-posts-default-loop .su-post-meta {
	display: none;
}
@media screen and (max-width: 768px) {
	#kaiketsu-news .su-posts-default-loop {
		flex-direction: column;
	}
	#kaiketsu-news .su-posts.su-posts-default-loop .su-post {
		min-width: 0;
		/*width: 325px !important;*/
		width: auto !important;
		margin-bottom: 30px !important;
	}
	#kaiketsu-news .su-posts.su-posts-default-loop .su-post .su-post-thumbnail {
    margin-top: 30px;
}
	#kaiketsu-news .su-posts-default-loop h2.su-post-title {
		width: 95%;
		margin: 30px auto 0 auto;
		text-align: center;
	}
	#kaiketsu-news .su-posts-default-loop .su-post-excerpt {
		width: 95%;
		margin: 0 auto 0 auto !important;
		text-align: center;
	}
	.knews-h-box {
		padding-bottom: 50px;
	}
}
/*0313レイアウト追記*/
.shigyou-about-h1 h1 {
	margin-top: 0 !important;
}
/*士業リスト一覧サイドバー追記*/
.s-list-con-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

aside#secondary.sigyolist-side {
    width: 100% !important;
}
.s-list-main {
    width: 70%;
}
/*フッター下部追記*/
#footer-category-tag {
    height: auto;
    /*margin-right: -80px;
    background: #5da2d3;
    width: 100%;*/
    padding: 50px 0;
}
.footer-logo {
    width: 12%;
    margin-left: auto;
    margin-right: auto;
    /* margin-bottom: 5px; */
}
.footer-main {
    padding: 20px 0 0;
}
p#footer-copy {
    font-size: 0.6rem;
}
.km-purapori {
    margin-top: 0px;
    font-size: 0.7rem;
}

@media screen and (min-width: 1501px) {
	#footer-category-tag li {
    font-size: 1rem;
}
}
@media screen and (max-width: 768px) {

	#footer-category-tag li {
		width: 50% !important;
		justify-content: space-between;
	}
	.footer-logo {
		width: 35%;
	}
}

/*hpリンク0527*/
.hp-yes a {
    text-decoration: none;
    color: #8fcaf6;
}
#introduction {
    margin-top: 50px;
}
#post-flex-sigyou {
    margin-top: 50px;
}
#post-flex-consul {
		margin-top: 50px;
}
